body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    color: #e0e0e0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

header {
    position: relative;
    text-align: center;
    padding: 60px 30px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow:
        0 0 50px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 165, 0, 0.05));
    border-radius: inherit;
    z-index: -1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px;
    }
}

@media (max-width: 640px) {
    .logo-icon {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 2.8em;
    }

    header {
        padding: 30px 20px;
    }

    header p {
        font-size: 1.2em;
    }

    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        padding: 20px;
    }

    .product {
        padding: 15px;
    }

    .product-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .product a {
        font-size: 0.85em;
        line-height: 1.3;
    }

    .review {
        font-size: 0.7em;
        margin: 6px 0;
    }

    .pros-cons {
        margin: 8px 0;
        padding: 4px 0;
    }

    .pros, .cons {
        font-size: 0.65em;
        margin: 2px 0;
    }

    .why-buy {
        font-size: 0.7em;
        padding: 4px 8px;
        margin: 6px 0;
    }

    .deal-score {
        font-size: 0.7em;
        padding: 3px 6px;
        margin: 4px 0;
    }

    .editor-pick {
        font-size: 0.6em;
        padding: 3px 8px;
        margin-top: 6px;
    }

    /* Hide extra content on mobile for cleaner look */
    .review,
    .pros-cons,
    .why-buy,
    .deal-score,
    .editor-pick {
        display: none !important;
    }

    .hot-categories {
        padding: 40px 20px;
        margin: 40px 20px;
    }

    .hot-categories h2 {
        font-size: 2.2em;
    }

    .categories-grid {
        gap: 15px;
    }

    .category {
        padding: 14px 20px;
        font-size: 0.95em;
    }

    .category-header {
        padding: 30px 20px;
        margin: 20px;
    }

    .category-header h2 {
        font-size: 2.2em;
    }

    .navigation {
        min-width: 220px;
        padding: 8px;
    }

    .navigation a {
        font-size: 0.95em;
        padding: 10px 14px;
    }
}

h1 {
    margin: 0;
    font-size: 4em;
    font-weight: 300;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 107, 53, 0.5),
        0 0 20px rgba(255, 165, 0, 0.3),
        0 0 30px rgba(255, 69, 0, 0.2);
    letter-spacing: 0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #ffe0b3 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 10px rgba(255, 107, 53, 0.5), 0 0 20px rgba(255, 165, 0, 0.3), 0 0 30px rgba(255, 69, 0, 0.2); }
    to { text-shadow: 0 0 15px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 165, 0, 0.5), 0 0 45px rgba(255, 69, 0, 0.3); }
}

header p {
    font-size: 1.4em;
    margin: 20px 0 0 0;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    background: linear-gradient(135deg, #ffff00 0%, #ff8c00 50%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 140, 0, 0.6),
        0 0 30px rgba(255, 255, 0, 0.4);
}

.menu-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10000;
}

.menu-button {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 15px;
    font-size: 2.2em;
    color: #ffffff;
    cursor: pointer;
    padding: 12px 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.2);
    transform: perspective(500px) rotateX(0deg);
}

.menu-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
    z-index: -1;
}

.menu-button:hover::before {
    opacity: 1;
}

.menu-button:hover {
    transform: perspective(500px) rotateX(-5deg) translateY(-3px) scale(1.05);
    box-shadow:
        0 0 30px rgba(255, 107, 53, 0.6),
        0 8px 25px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #ff6b35;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 30px;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px) perspective(1000px) rotateX(0deg);
    backdrop-filter: blur(10px);
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 50%);
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
}

.product::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: rotate 8s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product:nth-child(1) { animation-delay: 0.1s; }
.product:nth-child(2) { animation-delay: 0.2s; }
.product:nth-child(3) { animation-delay: 0.3s; }
.product:nth-child(4) { animation-delay: 0.4s; }
.product:nth-child(5) { animation-delay: 0.5s; }
.product:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product:hover .product-image {
    transform: scale(1.05);
}

.product:hover {
    transform: translateY(-12px) perspective(1000px) rotateX(-2deg) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.product:hover::after {
    opacity: 1;
}

.product a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.1em;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.product-price {
    font-weight: bold;
    font-size: 1.2em;
    color: #ff6b35;
    margin: 5px 0;
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.5);
}

.product a:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.additional-images {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    justify-content: center;
}

.thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.review {
    font-size: 0.9em;
    color: #b8c5d6;
    margin: 10px 0;
    line-height: 1.4;
    font-style: italic;
    text-shadow: 0 0 3px rgba(184, 197, 214, 0.3);
    position: relative;
    z-index: 2;
}

.pros-cons {
    margin: 12px 0;
    padding: 8px 0;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    z-index: 2;
}

.pros, .cons {
    font-size: 0.85em;
    margin: 4px 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.pros {
    color: #2ecc71;
    text-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
}

.cons {
    color: #e74c3c;
    text-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}

.why-buy {
    font-size: 0.9em;
    color: #ffffff;
    margin: 10px 0;
    font-weight: 600;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.deal-score {
    font-size: 0.9em;
    color: #f39c12;
    margin: 8px 0;
    font-weight: 700;
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    display: inline-block;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 3px rgba(243, 156, 18, 0.3);
}

.editor-pick {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    display: inline-block;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.hot-categories {
    text-align: center;
    padding: 60px 40px;
    background: rgba(26, 26, 46, 0.8);
    margin: 60px auto;
    max-width: 1400px;
    border-radius: 30px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
}

.hot-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 165, 0, 0.05));
    border-radius: inherit;
    z-index: -1;
}

.hot-categories h2 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-shadow:
        0 0 10px rgba(102, 126, 234, 0.5),
        0 0 20px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
}

.category {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 165, 0, 0.1));
    padding: 18px 28px;
    border-radius: 40px;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-weight: 500;
    font-size: 1em;
    color: #ffffff;
    cursor: pointer;
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    transform: perspective(500px) rotateX(0deg);
}

.category::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
    z-index: -1;
}

.category:hover::before {
    opacity: 1;
}

.category:hover {
    transform: perspective(500px) rotateX(-3deg) translateY(-5px) scale(1.05);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #ff6b35;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 46, 0.95);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 9999;
    min-width: 280px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-top: 15px;
    backdrop-filter: blur(15px);
}

.navigation.show {
    display: block;
}

.navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
    font-size: 1em;
    margin: 6px 8px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.navigation a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 165, 0, 0.3));
    color: white;
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.category-link {
    text-decoration: none;
}

.category-header {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    margin: 20px auto;
    max-width: 1400px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.category-header h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.back-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    color: #b8c5d6;
    margin-top: 80px;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow:
        0 0 30px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 165, 0, 0.05));
    z-index: -1;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.product-back-link {
    font-size: 0.8em;
    text-align: center;
    margin-top: 10px;
}

.product-back-link a {
    color: #b8c5d6;
    text-decoration: none;
}

.product-back-link a:hover {
    color: #ff6b35;
}

footer p {
    margin: 0;
    font-size: 0.9em;
    font-weight: 300;
    text-shadow: 0 0 5px rgba(184, 197, 214, 0.3);
}