* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-black: #000000;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-red: #dc2626;
    --accent-yellow: #fbbf24;
    --accent-purple: #9333ea;
    --accent-pink: #ec4899;
    --border-color: #1a1a1a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Page Layout for Footer/Sidebar */
.page-layout {
    display: block;
    min-height: auto;
    margin-top: 0;
    background: var(--bg-black);
    padding: 0;
    position: relative;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 3rem;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logo a:hover .logo-image {
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(251, 191, 36, 0.3));
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-yellow);
    background: rgba(251, 191, 36, 0.1);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--accent-yellow);
    background: rgba(251, 191, 36, 0.15);
}

.nav-link.active::after {
    width: 80%;
}

/* Featured Navigation Links - Official Servers & Private Servers */
.nav-link-featured {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(251, 191, 36, 0.15) 100%);
    border: 1px solid rgba(147, 51, 234, 0.4);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3), 0 0 30px rgba(251, 191, 36, 0.2);
    animation: featuredLinkGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-link-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
    z-index: -1;
    pointer-events: none;
}

/* Official Servers Link */
.official-servers-link {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(147, 51, 234, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(147, 51, 234, 0.3);
    color: #93c5fd;
    text-shadow: 0 0 10px rgba(147, 197, 253, 0.5);
}

.official-servers-link::after {
    background: linear-gradient(90deg, #3b82f6, #9333ea, #fbbf24);
    height: 3px;
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
}

/* Private Servers Link */
.private-servers-link {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(251, 191, 36, 0.2) 100%);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4), 0 0 40px rgba(251, 191, 36, 0.3);
    color: #fbbf6d;
    text-shadow: 0 0 10px rgba(251, 191, 109, 0.5);
}

.private-servers-link::after {
    background: linear-gradient(90deg, #ec4899, #fbbf24, #9333ea);
    height: 3px;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.6);
}

.nav-link-featured:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.5), 0 0 50px rgba(251, 191, 36, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(147, 51, 234, 0.7);
}

.official-servers-link:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 60px rgba(147, 51, 234, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #dbeafe;
}

.private-servers-link:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6), 0 0 60px rgba(251, 191, 36, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #fde68a;
}

.nav-link-featured.active {
    animation: featuredLinkActive 2s ease-in-out infinite;
}

.official-servers-link.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35) 0%, rgba(147, 51, 234, 0.3) 100%);
    border-color: rgba(59, 130, 246, 0.7);
    color: #dbeafe;
}

.private-servers-link.active {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35) 0%, rgba(251, 191, 36, 0.3) 100%);
    border-color: rgba(236, 72, 153, 0.7);
    color: #fde68a;
}

/* Animations for Featured Links */
@keyframes featuredLinkGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(147, 51, 234, 0.3), 0 0 30px rgba(251, 191, 36, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(147, 51, 234, 0.5), 0 0 50px rgba(251, 191, 36, 0.4);
    }
}

@keyframes featuredLinkActive {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(147, 51, 234, 0.4), 0 0 40px rgba(251, 191, 36, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(147, 51, 234, 0.6), 0 0 60px rgba(251, 191, 36, 0.5);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Left Sidebar */
.left-sidebar {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 2rem 1rem;
    z-index: 100;
    border-right: none;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.sidebar-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.sidebar-discord-section {
    width: 100%;
    margin-bottom: 0.5rem;
}

.sidebar-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.discord-icon-small {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--text-white);
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.sidebar-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-links li {
    margin: 0;
}

.sidebar-links a {
    color: #7dd3fc;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.3;
}

.sidebar-links a:hover {
    color: #bae6fd;
    transform: translateX(5px);
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.payment-method-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.payment-method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* VISA Logo */
.visa-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
}

.visa-logo {
    position: relative;
}

.visa-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1434a4;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
}

/* Mastercard Logo */
.mastercard-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
}

.mastercard-logo {
    flex-direction: column;
    gap: 0.35rem;
    align-items: center;
}

.mastercard-circles {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 22px;
    height: 22px;
    background: #eb001b;
    left: -2px;
    z-index: 1;
}

.circle-2 {
    width: 22px;
    height: 22px;
    background: #ff5f00;
    right: -2px;
    z-index: 2;
}

.mastercard-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: lowercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* PayPal Logo */
.paypal-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
}

.paypal-logo {
    position: relative;
}

.paypal-double-p {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -0.3em;
}

.paypal-p {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.paypal-p-left {
    color: #003087;
    transform: translateX(2px);
    z-index: 2;
}

.paypal-p-right {
    color: #009cde;
    transform: translateX(-2px);
    z-index: 1;
    opacity: 0.9;
}

/* Bitcoin Logo */
.bitcoin-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
}

.bitcoin-logo {
    position: relative;
}

.bitcoin-circle {
    width: 32px;
    height: 32px;
    background: #f7931a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bitcoin-symbol {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'Arial', sans-serif;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Skrill Logo */
.skrill-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
}

.skrill-logo {
    position: relative;
}

.skrill-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #8e35ef;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

/* Paysafecard Logo */
.paysafecard-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
}

.paysafecard-logo {
    position: relative;
}

.paysafecard-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #009cde;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    text-transform: lowercase;
}

.payment-security-text {
    font-size: 0.7rem;
    color: var(--text-white);
    margin-top: 1rem;
    line-height: 1.4;
    text-align: center;
    font-weight: 400;
    opacity: 0.9;
}

.sidebar-footer {
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.sidebar-copyright {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Popular Products Section */
.popular-products {
    position: relative;
    width: 100%;
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    backdrop-filter: blur(1px);
}

.popular-products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.popular-products-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.products-section {
    margin-bottom: 5rem;
}

.section-header-products {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
}

.section-icon {
    width: 2rem;
    height: 2rem;
    color: #fbbf24;
}

.section-heading-products {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.badge-stock {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.badge-discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.product-logo-wrapper {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.product-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.official-logo {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.private-logo {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--bg-black);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.origins2-logo {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.ashura-logo {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.rubinum-logo {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.nihor2-logo {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    font-size: 0.95rem;
}

.classic-logo {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    font-size: 0.9rem;
}

.dragon-logo {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    font-size: 0.9rem;
}

.shadow-logo {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    font-size: 0.9rem;
}

.eternal-logo {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    font-size: 0.9rem;
}

.product-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
}

.product-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 2;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.quantity-icon {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.product-quantity span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.product-buttons {
    display: flex;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.product-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.product-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-view {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--bg-black);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.btn-cart {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.product-btn span {
    position: relative;
    z-index: 1;
}

/* Products Actions */
.products-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.action-btn:hover::before {
    width: 400px;
    height: 400px;
}

.action-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    z-index: 1;
}

.action-btn span {
    position: relative;
    z-index: 1;
}

.btn-view-all {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-refresh {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-refresh:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    width: 100%;
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    backdrop-filter: blur(1px);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 4rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.feature-icon-circle {
    width: 4rem;
    height: 4rem;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: var(--text-white);
    stroke-width: 2.5;
}

.feature-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Main Content - Hero Section */
.main-content {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 90px);
    padding-top: 90px;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 120%;
    height: 200vh;
    min-width: 100vw;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    filter: brightness(0.4) contrast(1.2);
    image-rendering: high-quality;
    -webkit-image-rendering: high-quality;
    will-change: auto;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-container {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 30%, #e8e8e8 70%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.6), 0 0 80px rgba(251, 191, 36, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
    line-height: 1.1;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 40px rgba(251, 191, 36, 0.6), 0 0 80px rgba(251, 191, 36, 0.4);
    }
    50% {
        text-shadow: 0 0 50px rgba(251, 191, 36, 0.8), 0 0 100px rgba(251, 191, 36, 0.6);
    }
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5), 0 0 60px rgba(251, 191, 36, 0.3);
    animation: glowPulseTagline 2.5s ease-in-out infinite;
}

@keyframes glowPulseTagline {
    0%, 100% {
        text-shadow: 0 0 30px rgba(251, 191, 36, 0.5), 0 0 60px rgba(251, 191, 36, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(251, 191, 36, 0.7), 0 0 80px rgba(251, 191, 36, 0.5);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.2);
    animation: glowPulseDescription 3s ease-in-out infinite;
}

@keyframes glowPulseDescription {
    0%, 100% {
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.2);
    }
    50% {
        text-shadow: 0 0 30px rgba(251, 191, 36, 0.6), 0 0 60px rgba(251, 191, 36, 0.4);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid;
    cursor: pointer;
}

.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--bg-black);
    border-color: var(--accent-yellow);
}

.btn-primary:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.2);
}

/* Hero Stats Counter */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5), 0 0 60px rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Sidebar Scrollbar */
.left-sidebar::-webkit-scrollbar {
    width: 6px;
}

.left-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.left-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.left-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Spark Effects */
.sparks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.spark {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 
        0 0 8px var(--accent-red),
        0 0 16px var(--accent-red),
        0 0 24px rgba(220, 38, 38, 0.8);
    animation: sparkFloat 3s ease-out infinite;
    opacity: 0;
}

/* Sparks distributed across the entire page */
.spark-1 { left: 10%; top: 15%; animation-delay: 0s; animation-duration: 2.5s; }
.spark-2 { left: 25%; top: 20%; animation-delay: 0.1s; animation-duration: 2.8s; }
.spark-3 { left: 40%; top: 25%; animation-delay: 0.2s; animation-duration: 2.3s; }
.spark-4 { left: 55%; top: 18%; animation-delay: 0.3s; animation-duration: 2.6s; }
.spark-5 { left: 70%; top: 22%; animation-delay: 0.4s; animation-duration: 2.7s; }
.spark-6 { left: 85%; top: 16%; animation-delay: 0.5s; animation-duration: 2.4s; }
.spark-7 { left: 15%; top: 30%; animation-delay: 0.6s; animation-duration: 2.9s; }
.spark-8 { left: 30%; top: 35%; animation-delay: 0.7s; animation-duration: 2.5s; }
.spark-9 { left: 45%; top: 40%; animation-delay: 0.8s; animation-duration: 2.6s; }
.spark-10 { left: 60%; top: 38%; animation-delay: 0.9s; animation-duration: 2.7s; }
.spark-11 { left: 75%; top: 32%; animation-delay: 1s; animation-duration: 3s; }
.spark-12 { left: 90%; top: 28%; animation-delay: 1.1s; animation-duration: 2.8s; }
.spark-13 { left: 5%; top: 45%; animation-delay: 1.2s; animation-duration: 2.9s; }
.spark-14 { left: 20%; top: 50%; animation-delay: 1.3s; animation-duration: 3.1s; }
.spark-15 { left: 35%; top: 55%; animation-delay: 1.4s; animation-duration: 3s; }
.spark-16 { left: 50%; top: 52%; animation-delay: 1.5s; animation-duration: 2.4s; }
.spark-17 { left: 65%; top: 48%; animation-delay: 1.6s; animation-duration: 2.6s; }
.spark-18 { left: 80%; top: 45%; animation-delay: 1.7s; animation-duration: 2.8s; }
.spark-19 { left: 95%; top: 42%; animation-delay: 1.8s; animation-duration: 2.5s; }
.spark-20 { left: 12%; top: 60%; animation-delay: 1.9s; animation-duration: 2.7s; }
.spark-21 { left: 28%; top: 65%; animation-delay: 2s; animation-duration: 2.9s; }
.spark-22 { left: 42%; top: 62%; animation-delay: 2.1s; animation-duration: 3s; }
.spark-23 { left: 58%; top: 58%; animation-delay: 2.2s; animation-duration: 2.6s; }
.spark-24 { left: 72%; top: 55%; animation-delay: 2.3s; animation-duration: 2.8s; }
.spark-25 { left: 88%; top: 60%; animation-delay: 2.4s; animation-duration: 2.5s; }
.spark-26 { left: 8%; top: 75%; animation-delay: 2.5s; animation-duration: 2.7s; }
.spark-27 { left: 22%; top: 78%; animation-delay: 2.6s; animation-duration: 2.9s; }
.spark-28 { left: 38%; top: 72%; animation-delay: 2.7s; animation-duration: 3.1s; }
.spark-29 { left: 52%; top: 70%; animation-delay: 2.8s; animation-duration: 2.4s; }
.spark-30 { left: 68%; top: 68%; animation-delay: 2.9s; animation-duration: 2.6s; }
.spark-31 { left: 82%; top: 75%; animation-delay: 3s; animation-duration: 2.8s; }
.spark-32 { left: 18%; top: 12%; animation-delay: 3.1s; animation-duration: 2.5s; }
.spark-33 { left: 48%; top: 8%; animation-delay: 3.2s; animation-duration: 2.7s; }
.spark-34 { left: 78%; top: 10%; animation-delay: 3.3s; animation-duration: 2.9s; }
.spark-35 { left: 35%; top: 85%; animation-delay: 3.4s; animation-duration: 3s; }

@keyframes sparkFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(calc(var(--spark-x, 50px) * var(--spark-direction-x, 1)), calc(var(--spark-y, -100px) * var(--spark-direction-y, 1))) scale(1.5);
    }
}

/* Individual spark trajectories - random directions across the page */
.spark-1 { --spark-x: 40px; --spark-y: -120px; --spark-direction-x: 0.8; --spark-direction-y: 1; }
.spark-2 { --spark-x: 60px; --spark-y: -100px; --spark-direction-x: 1.2; --spark-direction-y: 1; }
.spark-3 { --spark-x: 30px; --spark-y: -110px; --spark-direction-x: -0.5; --spark-direction-y: 1; }
.spark-4 { --spark-x: 70px; --spark-y: -130px; --spark-direction-x: 1.1; --spark-direction-y: 1; }
.spark-5 { --spark-x: 50px; --spark-y: -105px; --spark-direction-x: 0.9; --spark-direction-y: 1; }
.spark-6 { --spark-x: 55px; --spark-y: -115px; --spark-direction-x: 1.3; --spark-direction-y: 1; }
.spark-7 { --spark-x: 35px; --spark-y: -95px; --spark-direction-x: -0.3; --spark-direction-y: 1; }
.spark-8 { --spark-x: 65px; --spark-y: -125px; --spark-direction-x: 1.2; --spark-direction-y: 1; }
.spark-9 { --spark-x: 45px; --spark-y: -110px; --spark-direction-x: 0.6; --spark-direction-y: 1; }
.spark-10 { --spark-x: 58px; --spark-y: -98px; --spark-direction-x: 1.1; --spark-direction-y: 1; }
.spark-11 { --spark-x: -40px; --spark-y: -80px; --spark-direction-x: -1.2; --spark-direction-y: 1; }
.spark-12 { --spark-x: 80px; --spark-y: -100px; --spark-direction-x: 1.4; --spark-direction-y: 1; }
.spark-13 { --spark-x: 25px; --spark-y: -140px; --spark-direction-x: 0.4; --spark-direction-y: 1; }
.spark-14 { --spark-x: 75px; --spark-y: -110px; --spark-direction-x: 1.3; --spark-direction-y: 1; }
.spark-15 { --spark-x: -30px; --spark-y: -95px; --spark-direction-x: -0.9; --spark-direction-y: 1; }
.spark-16 { --spark-x: 42px; --spark-y: -108px; --spark-direction-x: 0.7; --spark-direction-y: 1; }
.spark-17 { --spark-x: 68px; --spark-y: -102px; --spark-direction-x: 1.1; --spark-direction-y: 1; }
.spark-18 { --spark-x: 38px; --spark-y: -118px; --spark-direction-x: -0.2; --spark-direction-y: 1; }
.spark-19 { --spark-x: 72px; --spark-y: -112px; --spark-direction-x: 1.5; --spark-direction-y: 1; }
.spark-20 { --spark-x: 28px; --spark-y: -92px; --spark-direction-x: -0.6; --spark-direction-y: 1; }
.spark-21 { --spark-x: 62px; --spark-y: -106px; --spark-direction-x: 1.0; --spark-direction-y: 1; }
.spark-22 { --spark-x: 48px; --spark-y: -114px; --spark-direction-x: 0.5; --spark-direction-y: 1; }
.spark-23 { --spark-x: 66px; --spark-y: -98px; --spark-direction-x: 1.2; --spark-direction-y: 1; }
.spark-24 { --spark-x: 34px; --spark-y: -104px; --spark-direction-x: -0.4; --spark-direction-y: 1; }
.spark-25 { --spark-x: 74px; --spark-y: -116px; --spark-direction-x: 1.3; --spark-direction-y: 1; }
.spark-26 { --spark-x: 22px; --spark-y: -88px; --spark-direction-x: -0.7; --spark-direction-y: 1; }
.spark-27 { --spark-x: 56px; --spark-y: -122px; --spark-direction-x: 0.9; --spark-direction-y: 1; }
.spark-28 { --spark-x: 46px; --spark-y: -96px; --spark-direction-x: 0.3; --spark-direction-y: 1; }
.spark-29 { --spark-x: 64px; --spark-y: -108px; --spark-direction-x: 1.1; --spark-direction-y: 1; }
.spark-30 { --spark-x: 40px; --spark-y: -100px; --spark-direction-x: -0.1; --spark-direction-y: 1; }
.spark-31 { --spark-x: 70px; --spark-y: -114px; --spark-direction-x: 1.4; --spark-direction-y: 1; }
.spark-32 { --spark-x: 32px; --spark-y: -90px; --spark-direction-x: -0.5; --spark-direction-y: 1; }
.spark-33 { --spark-x: 52px; --spark-y: -120px; --spark-direction-x: 0.8; --spark-direction-y: 1; }
.spark-34 { --spark-x: 76px; --spark-y: -94px; --spark-direction-x: 1.6; --spark-direction-y: 1; }
.spark-35 { --spark-x: 36px; --spark-y: -112px; --spark-direction-x: -0.3; --spark-direction-y: 1; }

/* Get in Touch Section */
/* FAQ Section */
.faq-section {
    position: relative;
    width: 100%;
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    backdrop-filter: blur(1px);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: all 0.3s ease;
    color: var(--text-white);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-question {
    background: rgba(251, 191, 36, 0.05);
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.3px;
    flex: 1;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s;
    padding: 0 2rem;
    opacity: 0;
    display: block;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem 2rem;
    opacity: 1;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
    display: block;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

.get-in-touch {
    position: relative;
    width: 100%;
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    z-index: 10;
    overflow: hidden;
}

.get-in-touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.get-in-touch-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out both;
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.whatsapp-card .contact-card-background {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.discord-card .contact-card-background {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.support-card .contact-card-background {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(147, 51, 234, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-card:hover .contact-card-background {
    opacity: 1;
}

.contact-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-icon-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.contact-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.contact-card:hover .contact-icon-wrapper::before {
    width: 120%;
    height: 120%;
}

.whatsapp-icon-wrapper {
    background: linear-gradient(135deg, #25d366 0%, #10b981 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.discord-icon-wrapper {
    background: linear-gradient(135deg, #5865f2 0%, #6366f1 100%);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.support-icon-wrapper {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--text-white);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
}

.contact-card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-phone,
.contact-id,
.contact-availability {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-white);
}

.contact-info-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    z-index: 1;
}

.contact-btn span {
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #10b981 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.discord-btn {
    background: linear-gradient(135deg, #5865f2 0%, #6366f1 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.support-btn {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-white);
}

.support-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
    flex-shrink: 0;
}

/* Support Benefits Section */
.support-benefits {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.support-benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.support-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.support-benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    transition: all 0.4s ease;
}

.support-benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.support-benefit-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 1rem;
    color: #a855f7;
    transition: all 0.4s ease;
}

.support-benefit-card:hover .support-benefit-icon {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-color: rgba(147, 51, 234, 0.5);
    transform: scale(1.1);
}

.support-benefit-icon svg {
    width: 100%;
    height: 100%;
}

.support-benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
}

.support-benefit-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 1.25rem 2rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .sidebar-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sidebar-section {
        min-width: 100%;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .payment-method-card {
        min-height: 40px;
        padding: 0.4rem;
    }

    .hero-bg-image {
        width: 150%;
        height: 150%;
    }

    .get-in-touch {
        padding: 5rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .contact-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .support-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

    .popular-products {
        padding: 5rem 2rem;
    }

    .popular-products-title {
        font-size: 2.5rem;
        margin-bottom: 3.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .products-section {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .logo-image {
        height: 50px;
    }

    .nav-menu {
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.875rem;
        padding: 0.4rem 0.75rem;
    }
    
    .nav-link-featured {
        box-shadow: 0 0 12px rgba(147, 51, 234, 0.25), 0 0 25px rgba(251, 191, 36, 0.15);
    }
    
    .official-servers-link {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.3), 0 0 30px rgba(147, 51, 234, 0.25);
    }
    
    .private-servers-link {
        box-shadow: 0 0 15px rgba(236, 72, 153, 0.3), 0 0 30px rgba(251, 191, 36, 0.25);
    }

    .why-choose-us {
        padding: 3rem 1.5rem;
    }

    .why-choose-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon-circle {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1.25rem;
    }

    .feature-icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    .feature-heading {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .why-choose-us {
        padding: 3rem 1.5rem;
    }

    .why-choose-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon-circle {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1.25rem;
    }

    .feature-icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    .feature-heading {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-title {
        font-size: 2.25rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .get-in-touch {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon-wrapper {
        width: 4.5rem;
        height: 4.5rem;
    }

    .contact-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .contact-card-title {
        font-size: 1.35rem;
    }

    .contact-card-description {
        font-size: 0.9rem;
    }

    .support-benefits {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }

    .support-benefits-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .support-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-benefit-card {
        padding: 1.75rem 1.25rem;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .payment-method-card {
        min-height: 55px;
        padding: 0.75rem;
    }

    .popular-products {
        padding: 4rem 1.5rem;
    }

    .popular-products-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .products-section {
        margin-bottom: 3.5rem;
    }

    .section-header-products {
        margin-bottom: 2rem;
    }

    .section-heading-products {
        font-size: 1.5rem;
    }

    .product-card {
        padding: 1.25rem;
    }

    .product-name {
        font-size: 1.25rem;
    }

    .price-new {
        font-size: 1.35rem;
    }

    .product-buttons {
        flex-direction: column;
        gap: 0.65rem;
    }

    .products-actions {
        gap: 1.25rem;
        margin-top: 3rem;
    }

    .action-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .visa-text {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .mastercard-circles {
        width: 24px;
        height: 24px;
    }

    .circle-1,
    .circle-2 {
        width: 18px;
        height: 18px;
    }

    .mastercard-text {
        font-size: 0.6rem;
    }

    .paypal-p {
        font-size: 1rem;
    }
    
    .skrill-text {
        font-size: 0.8rem;
    }
    
    .paysafecard-text {
        font-size: 0.7rem;
    }

    .bitcoin-circle {
        width: 26px;
        height: 26px;
    }

    .bitcoin-symbol {
        font-size: 1rem;
    }

    .page-layout {
        margin-top: 80px;
    }

    .main-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .stat-number {
        font-size: 2.75rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .left-sidebar {
        padding: 1.5rem 1rem;
    }

    .sidebar-content {
        gap: 2rem;
    }


    .hero-bg-image {
        width: 180%;
        height: 180%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.875rem 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }
    
    .nav-link-featured {
        box-shadow: 0 0 10px rgba(147, 51, 234, 0.2), 0 0 20px rgba(251, 191, 36, 0.15);
        font-size: 0.65rem;
        padding: 0.35rem 0.6rem;
    }
    
    .official-servers-link {
        box-shadow: 0 0 12px rgba(59, 130, 246, 0.25), 0 0 25px rgba(147, 51, 234, 0.2);
    }
    
    .private-servers-link {
        box-shadow: 0 0 12px rgba(236, 72, 153, 0.25), 0 0 25px rgba(251, 191, 36, 0.2);
    }
    
    .nav-link-featured::before {
        animation: shimmer 4s infinite;
    }

    .page-layout {
        margin-top: 70px;
    }

    .main-content {
        padding: 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .hero-stats {
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .left-sidebar {
        padding: 1rem;
    }

    .sidebar-content {
        gap: 1.5rem;
    }

    .payment-methods-grid {
        gap: 0.5rem;
    }

    .payment-method-card {
        min-height: 50px;
        padding: 0.65rem;
    }

    .visa-text {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .mastercard-circles {
        width: 22px;
        height: 22px;
    }

    .circle-1,
    .circle-2 {
        width: 16px;
        height: 16px;
    }

    .mastercard-text {
        font-size: 0.55rem;
    }

    .paypal-p {
        font-size: 0.95rem;
    }
    
    .skrill-text {
        font-size: 0.75rem;
    }
    
    .paysafecard-text {
        font-size: 0.65rem;
    }

    .bitcoin-circle {
        width: 24px;
        height: 24px;
    }

    .bitcoin-symbol {
        font-size: 0.95rem;
    }

    .payment-security-text {
        font-size: 0.65rem;
        margin-top: 0.875rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }

    .faq-subtitle {
        font-size: 0.95rem;
    }

    .faq-header {
        margin-bottom: 2.5rem;
    }

    .faq-list {
        gap: 0.875rem;
    }

    .faq-question {
        padding: 1.125rem 1.25rem;
        gap: 1rem;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.125rem 1.25rem;
        max-height: 600px;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .popular-products {
        padding: 3rem 1rem;
    }

    .popular-products-title {
        font-size: 1.875rem;
        margin-bottom: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .products-section {
        margin-bottom: 3rem;
    }

    .section-header-products {
        margin-bottom: 1.75rem;
        padding-bottom: 0.75rem;
    }

    .section-icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    .section-heading-products {
        font-size: 1.35rem;
    }

    .product-card {
        padding: 1.25rem 1rem;
    }

    .product-name {
        font-size: 1.15rem;
    }

    .product-subtitle {
        font-size: 0.8rem;
    }

    .price-new {
        font-size: 1.25rem;
    }

    .product-buttons {
        flex-direction: column;
        gap: 0.65rem;
    }

    .product-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .products-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .get-in-touch {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .contact-cards-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .contact-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-icon-wrapper {
        width: 4rem;
        height: 4rem;
    }

    .contact-icon {
        width: 2rem;
        height: 2rem;
    }

    .contact-card-title {
        font-size: 1.25rem;
    }

    .contact-card-description {
        font-size: 0.875rem;
    }

    .contact-info {
        padding: 0.875rem;
        gap: 0.65rem;
    }

    .contact-phone,
    .contact-id,
    .contact-availability {
        font-size: 0.85rem;
    }

    .contact-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .support-features {
        padding: 0.875rem;
        gap: 0.875rem;
    }

    .support-feature-item {
        font-size: 0.85rem;
    }

    .support-benefits {
        padding: 2rem 1.25rem;
        margin-top: 2.5rem;
    }

    .support-benefits-title {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }

    .support-benefits-grid {
        gap: 1.25rem;
    }

    .support-benefit-card {
        padding: 1.5rem 1rem;
    }

    .support-benefit-icon {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1.25rem;
    }

    .support-benefit-title {
        font-size: 1.15rem;
    }

    .support-benefit-text {
        font-size: 0.85rem;
    }
}

/* Products Page Specific Styles */
.products-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 2rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    z-index: 10;
}

.products-page-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.products-page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-controls {
    margin-bottom: 3rem;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: currentColor;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3) 0%, rgba(251, 191, 36, 0.2) 100%);
    border-color: var(--accent-purple);
    color: var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.products-counter {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
}

.products-counter span {
    font-weight: 600;
    color: var(--accent-yellow);
}

.products-grid-container {
    width: 100%;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.no-results-icon {
    width: 4rem;
    height: 4rem;
    color: var(--text-muted);
    margin: 0 auto 1.5rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-light);
    opacity: 0.7;
}

/* Products Page Responsive */
@media (max-width: 1024px) {
    .products-page-title {
        font-size: 2.75rem;
    }
    
    .products-page-subtitle {
        font-size: 1rem;
    }
    
    .filter-buttons {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .products-page {
        padding: 7rem 1.5rem 2rem;
    }
    
    .products-page-title {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
    
    .products-page-subtitle {
        font-size: 0.95rem;
    }
    
    .search-container {
        margin-bottom: 1.5rem;
    }
    
    .search-input {
        padding: 0.875rem 0.875rem 0.875rem 3rem;
        font-size: 0.95rem;
    }
    
    .search-icon {
        left: 1rem;
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .filter-icon {
        width: 1.1rem;
        height: 1.1rem;
    }
    
    .products-counter {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .products-page {
        padding: 6rem 1rem 1.5rem;
    }
    
    .products-page-title {
        font-size: 1.875rem;
    }
    
    .products-page-subtitle {
        font-size: 0.875rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .search-input {
        font-size: 0.9rem;
    }
}
