* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Visible for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #39FF14;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: #39FF14;
    color: #0a0d12;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 700;
    z-index: 100000;
}

.skip-to-main:focus {
    top: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: #0a0d12;
    color: #e4e6eb;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: #0a0d12;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, #39FF14, #00FF41);
    border-radius: 2px;
    animation: loaderProgress 1.5s ease-in-out infinite;
}

@keyframes loaderProgress {
    0% {
        width: 0%;
        margin-left: 0%;
    }
    50% {
        width: 70%;
        margin-left: 15%;
    }
    100% {
        width: 0%;
        margin-left: 100%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 40s linear infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(57, 255, 20, 0.025) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: glowMove 45s ease-in-out infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@keyframes glowMove {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.section-header p {
    font-size: 17px;
    color: #b0b3b8;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    background: rgba(112, 244, 104, 0.15);
    color: #39FF14;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 244, 104, 0.3);
}

/* Order Ticker */
.order-ticker {
    background: linear-gradient(90deg, #39FF14 0%, #00FF41 100%);
    color: #0c111c;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 60px;
    font-size: 13px;
    font-weight: 600;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Header Styles */
header {
    background: rgba(10, 13, 18, 0.95);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.header-top {
    background: #1e2129;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.header-info {
    color: #b0b3b8;
}

.header-utilities {
    display: flex;
    gap: 12px;
    align-items: center;
}

.utility-select {
    background: #2d3139;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e4e6eb;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.utility-btn {
    background: #2d3139;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e4e6eb;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.utility-btn:hover {
    background: rgba(112, 244, 104, 0.1);
    border-color: rgba(112, 244, 104, 0.3);
    color: #39FF14;
}

.header-main {
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    background: linear-gradient(135deg, #1e2129 0%, #242731 100%);
    border: 2px solid rgba(57, 255, 20, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.search-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.5s;
}

.search-bar:focus-within::before {
    left: 100%;
}

.search-bar:focus-within {
    border-color: rgba(57, 255, 20, 0.6);
    box-shadow:
        0 4px 20px rgba(57, 255, 20, 0.3),
        0 0 30px rgba(57, 255, 20, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.02);
}

.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.search-bar input::placeholder {
    color: #6b7280;
}

.search-btn {
    background: linear-gradient(135deg, #39FF14 0%, #2ee00f 100%);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.search-btn:hover::before {
    width: 200%;
    height: 200%;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.3);
}

.logo {
    position: relative;
    margin-right: 80px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #39FF14;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #39FF14;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-svg:hover {
    transform: translateY(-1px);
}

.logo-svg text {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    .logo-svg {
        height: 38px;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    color: #b8bcc8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #39FF14;
    transition: width 0.2s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #39FF14;
}

/* Header Search */
.header-search {
    position: relative;
    margin-left: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input {
    width: 200px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e4e6eb;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(57, 255, 20, 0.3);
    background: rgba(255, 255, 255, 0.08);
    width: 250px;
}

.search-input::placeholder {
    color: #7a7a7a;
}

.search-button {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    color: #39FF14;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-1px);
}

.search-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #0f1419;
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    max-height: 400px;
    overflow-y: auto;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 350px;
}

.search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item.active {
    background: rgba(57, 255, 20, 0.08);
}

.result-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.result-info {
    flex: 1;
}

.result-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 4px;
}

.result-name .highlight {
    color: #39FF14;
    background: rgba(57, 255, 20, 0.15);
    padding: 2px 4px;
    border-radius: 3px;
}

.result-price {
    font-size: 12px;
    color: #8a8f9d;
}

.result-arrow {
    color: #39FF14;
    font-size: 18px;
    opacity: 0;
    transition: all 0.2s ease;
}

.search-result-item:hover .result-arrow,
.search-result-item.active .result-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.search-no-results {
    padding: 40px 20px;
    text-align: center;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.search-no-results p {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-no-results small {
    color: #7a7a7a;
    font-size: 12px;
}

/* Currency Selector */
.currency-selector {
    position: relative;
    margin-left: 20px;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    color: #39FF14;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.currency-btn:hover {
    background: rgba(57, 255, 20, 0.2);
    border-color: rgba(57, 255, 20, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.2);
}

.currency-symbol {
    font-size: 16px;
    font-weight: 700;
}

.currency-code {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.currency-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #0f1419;
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    overflow: hidden;
}

.currency-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: #e4e6eb;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.currency-option:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.currency-option:hover {
    background: rgba(57, 255, 20, 0.08);
}

.currency-option.active {
    background: rgba(57, 255, 20, 0.15);
    color: #39FF14;
}

.option-symbol {
    font-weight: 700;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.option-code {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
}

.check {
    color: #39FF14;
    font-weight: 700;
    font-size: 16px;
}

.currency-notification {
    position: fixed;
    bottom: 180px;
    right: -300px;
    background: #161d27;
    border: 1px solid rgba(57, 255, 20, 0.3);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    transition: right 0.3s ease;
}

.currency-notification.show {
    right: 20px;
}

/* Header Cart */
.header-cart {
    margin-left: 20px;
}

.cart-button {
    position: relative;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #39FF14;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-button:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #39FF14;
    color: #0f1218;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #39FF14;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #0a0d12;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(57, 255, 20, 0.2);
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.close-cart {
    background: transparent;
    border: none;
    color: #b8bcc8;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-cart:hover {
    color: #39FF14;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.empty-cart {
    text-align: center;
    color: #6b7280;
    padding: 60px 20px;
    font-size: 16px;
}

.cart-item {
    background: #0f1218;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(57, 255, 20, 0.1);
    transition: all 0.2s ease;
}

.cart-item-details h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 600;
}

.cart-item-game {
    font-size: 13px;
    color: #39FF14;
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #161d27;
    border-radius: 6px;
    padding: 4px;
}

.quantity-controls button {
    width: 28px;
    height: 28px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: #39FF14;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
}

.quantity-controls button:hover {
    background: rgba(57, 255, 20, 0.2);
}

.quantity-controls span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
}

.cart-item-total {
    font-size: 16px;
    font-weight: 700;
    color: #39FF14;
    margin-left: auto;
}

.remove-item {
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
    color: #ff5757;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.remove-item:hover {
    background: rgba(255, 87, 87, 0.2);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    background: #0a0d12;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cart-total span:last-child {
    color: #39FF14;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0f1218;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(57, 255, 20, 0.4);
}

.clear-cart-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.clear-cart-btn:hover {
    background: rgba(255, 87, 87, 0.1);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: #161d27;
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transition: right 0.3s ease;
}

.cart-notification.show {
    right: 20px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: #39FF14;
    color: #0f1218;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.notification-content strong {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 14px;
}

.notification-content p {
    color: #b8bcc8;
    font-size: 13px;
    margin: 0;
}

/* Social Proof Notifications */
.social-proof-notification {
    position: fixed;
    bottom: -200px;
    left: 20px;
    background: #161d27;
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 9998;
    max-width: 350px;
    transition: bottom 0.4s ease;
}

.social-proof-notification.show {
    bottom: 20px;
}

.social-proof-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.social-proof-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0f1218;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.social-proof-text strong {
    color: #ffffff;
    font-size: 14px;
}

.social-proof-text span {
    color: #39FF14;
    font-size: 13px;
}

.social-proof-text p {
    color: #b8bcc8;
    font-size: 13px;
    margin: 4px 0;
}

.social-proof-time {
    color: #6b7280 !important;
    font-size: 11px !important;
}

.social-proof-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 20px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.social-proof-close:hover {
    color: #ff5757;
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(57, 255, 20, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(57, 255, 20, 0.6);
}

.chat-button svg {
    width: 28px;
    height: 28px;
    color: #0f1218;
}

.chat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #39FF14;
    opacity: 0.4;
    animation: chatPulse 2s ease-out infinite;
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #161d27;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.chat-window.open {
    display: flex;
}

.chat-window-header {
    padding: 20px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0f1218;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-window-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.chat-close {
    background: transparent;
    border: none;
    color: #0f1218;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #0f1218;
}

.chat-message {
    background: #161d27;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 3px solid #39FF14;
}

.chat-message strong {
    color: #39FF14;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

.chat-message p {
    color: #b8bcc8;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.chat-input-area {
    padding: 16px;
    background: #161d27;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input-area p {
    color: #6b7280;
    font-size: 13px;
    margin: 0 0 12px 0;
    text-align: center;
}

.chat-input-area button {
    width: 100%;
    padding: 12px;
    background: #39FF14;
    color: #0f1218;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.chat-input-area button:hover {
    background: #2ee00f;
    transform: translateY(-1px);
}

.chat-input-area .discord-btn {
    background: #5865F2;
}

.chat-input-area .discord-btn:hover {
    background: #4752C4;
}

.chat-input-area .whatsapp-btn {
    background: #25D366;
}

.chat-input-area .whatsapp-btn:hover {
    background: #20BA5A;
}

.chat-input-area button svg {
    flex-shrink: 0;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #0a0d12;
    margin-bottom: 50px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Game Banner Images with Blur Effect */
.game-banner-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px) brightness(0.8);
    transform: scale(1.1);
    z-index: 1;
    transition: all 0.8s ease-in-out;
}

.carousel-slide.active .game-banner-image {
    filter: blur(4px) brightness(0.9);
    transform: scale(1.15);
}

/* Lower background position for EA FC and NBA banners */
.carousel-slide:nth-child(1) .game-banner-image,
.carousel-slide:nth-child(4) .game-banner-image {
    background-position: center 75% !important;
}

.carousel-slide:nth-child(1).active .game-banner-image,
.carousel-slide:nth-child(4).active .game-banner-image {
    background-position: center 75% !important;
}

.banner-blur-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(10, 13, 18, 0.5) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* EA FC 26 Fancy Banner */
.eafc-fancy {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 168, 232, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 255, 157, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #001829 0%, #003459 30%, #005f8f 60%, #00a8e8 100%);
}

.eafc-fancy::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 80px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(0, 168, 232, 0.03) 40px, rgba(0, 168, 232, 0.03) 80px);
    animation: slidePattern 20s linear infinite;
    filter: blur(2px);
}

/* Madden NFL 26 Fancy Banner */
.madden-fancy {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(213, 0, 50, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 34, 68, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #000814 0%, #002244 30%, #69121d 60%, #d50032 100%);
}

.madden-fancy::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        repeating-linear-gradient(60deg, transparent, transparent 35px, rgba(213, 0, 50, 0.03) 35px, rgba(213, 0, 50, 0.03) 70px),
        repeating-linear-gradient(-30deg, transparent, transparent 35px, rgba(0, 34, 68, 0.02) 35px, rgba(0, 34, 68, 0.02) 70px);
    animation: slidePattern 25s linear infinite;
    filter: blur(2px);
}

/* COD Fancy Banner */
.cod-fancy {
    background:
        radial-gradient(ellipse at 25% 35%, rgba(255, 107, 0, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 65%, rgba(255, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 20%, #1a1a1a 50%, #ff6b00 100%);
}

.cod-fancy::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255, 107, 0, 0.04) 30px, rgba(255, 107, 0, 0.04) 60px),
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255, 0, 0, 0.02) 30px, rgba(255, 0, 0, 0.02) 60px);
    animation: slidePattern 18s linear infinite;
    filter: blur(3px);
}

/* NBA 2K26 Fancy Banner */
.nba-fancy {
    background:
        radial-gradient(ellipse at 35% 45%, rgba(200, 16, 46, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 65% 55%, rgba(29, 66, 138, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 70%),
        linear-gradient(135deg, #0a1628 0%, #1d428a 30%, #552583 60%, #c8102e 100%);
}

.nba-fancy::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        repeating-linear-gradient(120deg, transparent, transparent 38px, rgba(200, 16, 46, 0.03) 38px, rgba(200, 16, 46, 0.03) 76px),
        repeating-linear-gradient(-60deg, transparent, transparent 38px, rgba(29, 66, 138, 0.02) 38px, rgba(29, 66, 138, 0.02) 76px);
    animation: slidePattern 22s linear infinite;
    filter: blur(2px);
}

@keyframes slidePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

/* Old slide-bg styles (keeping for compatibility) */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.8s ease-in-out;
}

.carousel-slide.active .slide-bg {
    transform: scale(1.05);
}

/* EA FC 26 Banner Background */
.eafc-banner-bg {
    background: linear-gradient(135deg, #003459 0%, #005f8f 50%, #00a8e8 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.eafc-banner-bg::before {
    content: 'EA SPORTS FC 26';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: -5px;
    white-space: nowrap;
}

.eafc-banner-bg::after {
    content: '⚽';
    position: absolute;
    font-size: 600px;
    opacity: 0.06;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

/* Madden NFL 26 Banner Background */
.madden-banner-bg {
    background: linear-gradient(135deg, #002244 0%, #69121d 50%, #d50032 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.madden-banner-bg::before {
    content: 'MADDEN NFL 26';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    font-size: 110px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -3px;
    white-space: nowrap;
}

.madden-banner-bg::after {
    content: '🏈';
    position: absolute;
    font-size: 550px;
    opacity: 0.08;
    top: 50%;
    left: -50px;
    transform: translateY(-50%) rotate(-15deg);
}

/* Call of Duty Banner Background */
.cod-banner-bg {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #ff6b00 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.cod-banner-bg::before {
    content: 'BLACK OPS 6';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 130px;
    font-weight: 900;
    color: rgba(255, 107, 0, 0.06);
    letter-spacing: -4px;
    white-space: nowrap;
}

.cod-banner-bg::after {
    content: '🎮';
    position: absolute;
    font-size: 500px;
    opacity: 0.07;
    bottom: -100px;
    right: -50px;
    transform: rotate(15deg);
}

/* NBA 2K26 Banner Background */
.nba-banner-bg {
    background: linear-gradient(135deg, #1d428a 0%, #552583 50%, #c8102e 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.nba-banner-bg::before {
    content: 'NBA 2K26';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(3deg);
    font-size: 140px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: -6px;
    white-space: nowrap;
}

.nba-banner-bg::after {
    content: '🏀';
    position: absolute;
    font-size: 580px;
    opacity: 0.07;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
    position: relative;
    z-index: 3;
    background: transparent;
}

/* Lower positioning for EA FC and NBA banners */
.carousel-slide:nth-child(1) .slide-content,
.carousel-slide:nth-child(4) .slide-content {
    justify-content: flex-end;
    padding-bottom: 80px;
}

.slide-content::before {
    display: none;
}

.slide-badge {
    display: inline-block;
    background: rgba(112, 244, 104, 0.15);
    color: #39FF14;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(112, 244, 104, 0.3);
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow:
        0 0 20px rgba(0, 0, 0, 1),
        0 0 40px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(57, 255, 20, 0.3);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
}

.slide-content p {
    font-size: 18px;
    color: #ffffff;
    text-shadow:
        0 0 15px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 0.9),
        0 4px 10px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 28px;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
}

.slide-cta {
    display: inline-block;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0a0d12;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.3), 0 0 0 0 rgba(57, 255, 20, 0.5);
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.slide-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(57, 255, 20, 0.5), 0 0 0 4px rgba(57, 255, 20, 0.2);
    background: linear-gradient(135deg, #2ee00f 0%, #00e639 100%);
}

.slide-cta:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.4);
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(22, 29, 39, 0.8);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background-color: rgba(112, 244, 104, 0.15);
    border-color: rgba(112, 244, 104, 0.3);
    color: #39FF14;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(184, 188, 200, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background-color: #39FF14;
    width: 32px;
    border-radius: 5px;
}

.dot:hover {
    background-color: rgba(112, 244, 104, 0.6);
}

/* Main Content */
main {
    padding: 50px 0 80px;
}

main h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: #0f1218;
    padding: 0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    background-clip: padding-box;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.15), rgba(0, 255, 65, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(57, 255, 20, 0.2), 0 0 0 1px rgba(57, 255, 20, 0.5);
}

.service-card:hover::before {
    background: linear-gradient(135deg, #39FF14, #00FF41, #39FF14);
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(57, 255, 20, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(57, 255, 20, 0.08) 0%, transparent 60%);
    filter: blur(30px);
    transition: all 0.4s ease;
    animation: cardGlow 8s ease-in-out infinite;
}

.service-card:hover .card-image::before {
    filter: blur(20px);
    opacity: 1.3;
}

@keyframes cardGlow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1.2;
    }
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(57, 255, 20, 0.02) 10px,
            rgba(57, 255, 20, 0.02) 20px
        );
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.6);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
    filter: blur(1px) brightness(0.7);
}

.card-icon,
.services-grid .card-icon,
.service-card .card-icon,
.card-image .card-icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    font-size: 72px !important;
    z-index: 2 !important;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.8)) !important;
    will-change: transform !important;
    animation-name: floatIcon2024 !important;
    animation-duration: 2s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
}

@keyframes floatIcon2024 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-50px);
    }
}

.service-card:hover .card-icon {
    filter: drop-shadow(0 8px 16px rgba(57, 255, 20, 0.4)) !important;
}

/* Game-Specific Blurred Backgrounds */
.eafc-bg {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 180, 100, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(57, 255, 20, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0a4d2e 0%, #1a3d2e 30%, #0f1419 100%);
    position: relative;
}

.eafc-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(57, 255, 20, 0.03) 2px, rgba(57, 255, 20, 0.03) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(57, 255, 20, 0.03) 2px, rgba(57, 255, 20, 0.03) 4px);
    filter: blur(1px);
    opacity: 0.5;
}

.eafc-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 18, 0.8) 100%);
}

.madden-bg {
    background:
        radial-gradient(circle at 30% 40%, rgba(150, 50, 180, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(100, 30, 130, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #2d1b3d 0%, #1a1a2e 50%, #0f1419 100%);
}

.madden-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(150, 50, 180, 0.08) 10px, rgba(150, 50, 180, 0.08) 20px);
    filter: blur(2px);
}

.madden-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 18, 0.8) 100%);
}

.cod-bg {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(80, 120, 60, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 80%, rgba(100, 100, 50, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #1f2b1a 0%, #2a2a1a 40%, #0f1419 100%);
}

.cod-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(80, 120, 60, 0.05) 30deg, transparent 60deg);
    filter: blur(3px);
}

.cod-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 18, 0.8) 100%);
}

.cfb-bg {
    background:
        radial-gradient(circle at 40% 30%, rgba(200, 100, 50, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 60% 70%, rgba(150, 80, 40, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #2a1f1a 0%, #3a2a1a 50%, #0f1419 100%);
}

.cfb-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(120deg, transparent, transparent 15px, rgba(200, 100, 50, 0.06) 15px, rgba(200, 100, 50, 0.06) 30px);
    filter: blur(2px);
}

.cfb-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 18, 0.8) 100%);
}

.mlb-bg {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(50, 100, 180, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 40%, rgba(40, 80, 150, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #1a2a3d 0%, #1a2a4d 40%, #0f1419 100%);
}

.mlb-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-radial-gradient(circle at 50% 50%, transparent 0px, transparent 20px, rgba(50, 100, 180, 0.05) 20px, rgba(50, 100, 180, 0.05) 40px);
    filter: blur(2px);
}

.mlb-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 18, 0.8) 100%);
}

.nba2k-bg {
    background:
        radial-gradient(circle at 50% 30%, rgba(230, 100, 50, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 50% 70%, rgba(180, 80, 40, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #3d1f1a 0%, #4d2a1a 50%, #0f1419 100%);
}

.nba2k-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(230, 100, 50, 0.06) 12px, rgba(230, 100, 50, 0.06) 24px);
    filter: blur(2px);
}

.nba2k-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 18, 0.8) 100%);
}

.card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Stock Indicators */
.stock-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.stock-badge,
.demand-badge,
.order-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.stock-badge.stock-high {
    background: rgba(57, 255, 20, 0.15);
    color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.stock-badge.stock-medium {
    background: rgba(255, 200, 0, 0.15);
    color: #ffc800;
    border: 1px solid rgba(255, 200, 0, 0.3);
}

.stock-badge.stock-low {
    background: rgba(255, 87, 87, 0.15);
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.3);
    animation: lowStockPulse 2s ease-in-out infinite;
}

@keyframes lowStockPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.demand-badge {
    background: rgba(147, 112, 219, 0.15);
    color: #9370db;
    border: 1px solid rgba(147, 112, 219, 0.3);
}

.demand-badge.demand-high {
    background: rgba(255, 140, 0, 0.15);
    color: #ff8c00;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.demand-badge.demand-very-high {
    background: rgba(255, 69, 0, 0.15);
    color: #ff4500;
    border: 1px solid rgba(255, 69, 0, 0.3);
    animation: hotPulse 1.5s ease-in-out infinite;
}

@keyframes hotPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.order-badge {
    background: rgba(100, 149, 237, 0.15);
    color: #6495ed;
    border: 1px solid rgba(100, 149, 237, 0.3);
    transition: all 0.3s ease;
}

.order-badge.pulse-update {
    animation: badgePulse 0.6s ease-out;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        background: rgba(100, 149, 237, 0.15);
    }
    50% {
        transform: scale(1.1);
        background: rgba(100, 149, 237, 0.3);
    }
}

.badge-flash {
    animation: badgeFlash 1s ease-out;
}

@keyframes badgeFlash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.card-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.card-content p {
    color: #b0b3b8;
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 14px;
    flex: 1;
}

.buy-now {
    display: inline-block;
    color: #39FF14;
    font-weight: 600;
    margin-top: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    font-size: 14px;
}

.service-card:hover .buy-now {
    color: #8fff83;
    transform: translateX(4px);
}

/* Hot Deals Section */
.hot-deals-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hot-deals-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(112, 244, 104, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.deal-card {
    background: #161d27;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39FF14 0%, #00FF41 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.deal-card:hover::before {
    opacity: 1;
}

.deal-card.premium {
    border-color: rgba(112, 244, 104, 0.4);
    box-shadow: 0 8px 32px rgba(112, 244, 104, 0.2);
}

.deal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(112, 244, 104, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.deal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0c111c;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.deal-discount {
    display: inline-block;
    background: rgba(255, 87, 87, 0.15);
    color: #ff5757;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 87, 87, 0.3);
}

.deal-game {
    font-size: 13px;
    color: #39FF14;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deal-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.deal-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.old-price {
    font-size: 16px;
    color: #6b7280;
    text-decoration: line-through;
}

.new-price {
    font-size: 32px;
    font-weight: 700;
    color: #39FF14;
    letter-spacing: -1px;
}

.deal-timer {
    font-size: 14px;
    color: #ff5757;
    margin-bottom: 20px;
    font-weight: 600;
}

.deal-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0c111c;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(112, 244, 104, 0.3);
}

.deal-btn:hover {
    background: linear-gradient(135deg, #8fff83 0%, #39FF14 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 244, 104, 0.5);
}

/* Section Dividers */
section:not(:first-of-type)::before,
main::before,
.how-it-works-section::before,
.hot-deals-section::before,
.partners-section::before,
.newsletter-section::before,
.stats-section::before,
.testimonials-section::before,
.trust-section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(57, 255, 20, 0.2) 20%,
        rgba(57, 255, 20, 0.4) 50%,
        rgba(57, 255, 20, 0.2) 80%,
        transparent 100%);
    margin: 0 auto 80px;
    max-width: 1200px;
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: transparent;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number span {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #0c111c;
    box-shadow: 0 8px 24px rgba(112, 244, 104, 0.4);
    position: relative;
    z-index: 1;
}

.step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, #39FF14 0%, transparent 100%);
    margin-top: 12px;
}

.step-item:last-child .step-line {
    display: none;
}

.step-content {
    background: #161d27;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.step-content:hover {
    border-color: rgba(112, 244, 104, 0.3);
    transform: translateX(8px);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.step-content p {
    font-size: 15px;
    color: #8a8f9d;
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: transparent;
}

.partners-section .section-header h3 {
    font-size: 18px;
    color: #8a8f9d;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.partner-logo {
    background: #161d27;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #b8bcc8;
    transition: all 0.3s;
}

.partner-logo:hover {
    border-color: rgba(112, 244, 104, 0.3);
    background: rgba(112, 244, 104, 0.05);
    color: #39FF14;
}

/* Newsletter Section */
.newsletter-section {
    padding: 70px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(112, 244, 104, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.newsletter-text p {
    font-size: 16px;
    color: #8a8f9d;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto 24px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: #161d27;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    border-color: rgba(112, 244, 104, 0.5);
    box-shadow: 0 0 0 3px rgba(112, 244, 104, 0.1);
}

.newsletter-form input::placeholder {
    color: #6b7280;
}

.newsletter-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0c111c;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(112, 244, 104, 0.3);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #8fff83 0%, #39FF14 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 244, 104, 0.5);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.newsletter-benefits span {
    font-size: 13px;
    color: #8a8f9d;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(57, 255, 20, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(57, 255, 20, 0.03) 50px,
            rgba(57, 255, 20, 0.03) 51px
        );
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(10, 13, 18, 1) 0%,
        rgba(10, 13, 18, 0.8) 20%,
        rgba(10, 13, 18, 0.8) 80%,
        rgba(10, 13, 18, 1) 100%
    );
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(15, 18, 24, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 255, 20, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(112, 244, 104, 0.2));
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(57, 255, 20, 0.3);
}

.stat-label {
    font-size: 15px;
    color: #8a8f9d;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-item {
    background: #161d27;
    padding: 36px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(112, 244, 104, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    color: #39FF14;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(112, 244, 104, 0.3));
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-item p {
    font-size: 14px;
    color: #8a8f9d;
    line-height: 1.6;
}

/* Service Card Updates */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-price {
    font-size: 17px;
    font-weight: 700;
    color: #39FF14;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #161d27;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(112, 244, 104, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.testimonial-rating {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffd700;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #b8bcc8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #0c111c;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
}

.author-meta {
    font-size: 13px;
    color: #6b7280;
}

/* TrustPilot Widget */
.trustpilot-section {
    padding: 60px 0;
    background: transparent;
}

.trustpilot-widget {
    background: #161d27;
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.trustpilot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-stars {
    font-size: 28px;
    color: #00b67a;
    letter-spacing: 2px;
}

.tp-text {
    font-size: 24px;
    font-weight: 700;
    color: #00b67a;
}

.trustpilot-score {
    display: flex;
    gap: 16px;
    align-items: center;
}

.tp-rating {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.tp-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tp-stars-rating {
    font-size: 20px;
    color: #00b67a;
}

.tp-reviews {
    font-size: 13px;
    color: #8a8f9d;
}

.trustpilot-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tp-stat {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    gap: 16px;
}

.stat-label {
    font-size: 14px;
    color: #b8bcc8;
    font-weight: 500;
}

.stat-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.stat-bar {
    height: 100%;
    background: linear-gradient(90deg, #00b67a 0%, #00d88a 100%);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.stat-count {
    font-size: 13px;
    color: #8a8f9d;
    text-align: right;
}

/* Trust Section */
.trust-section {
    padding: 50px 0;
    background: transparent;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: #161d27;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-icon {
    font-size: 24px;
}

.trust-text {
    font-size: 14px;
    font-weight: 600;
    color: #b8bcc8;
}

/* Footer */
footer {
    background-color: transparent;
    border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.footer-content {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #39FF14 0%, #00FF41 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    color: #8a8f9d;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #8a8f9d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #39FF14;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    padding: 8px 16px;
    background: #161d27;
    border-radius: 6px;
    text-decoration: none;
    color: #b8bcc8;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(112, 244, 104, 0.1);
    border-color: rgba(112, 244, 104, 0.3);
    color: #39FF14;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #6b7280;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 16px;
}

.payment-methods span {
    font-size: 13px;
    color: #8a8f9d;
    padding: 6px 12px;
    background: #161d27;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Coin Slider Section */
.custom-amount-section {
    margin-bottom: 60px;
}

.slider-container {
    max-width: 900px;
    margin: 0 auto;
}

.slider-card {
    background: linear-gradient(135deg, #161d27 0%, #1a2140 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(112, 244, 104, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.coin-display {
    display: flex;
    flex-direction: column;
}

.coin-input-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.coin-input {
    font-size: 48px;
    font-weight: 700;
    color: #39FF14;
    letter-spacing: -2px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(57, 255, 20, 0.3);
    padding: 0 0 8px 0;
    width: 280px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.coin-input:focus {
    border-bottom-color: #39FF14;
}

.coin-input::selection {
    background: rgba(57, 255, 20, 0.3);
}

.coin-amount {
    font-size: 48px;
    font-weight: 700;
    color: #39FF14;
    letter-spacing: -2px;
}

.coin-label {
    font-size: 16px;
    color: #8a8f9d;
    font-weight: 600;
}

.price-display {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 14px;
    color: #8a8f9d;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.slider-wrapper {
    margin-bottom: 40px;
}

.coin-slider {
    width: 100%;
    height: 12px;
    border-radius: 6px;
    background: #1a2332;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.coin-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(112, 244, 104, 0.5);
    transition: all 0.3s;
}

.coin-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(112, 244, 104, 0.7);
}

.coin-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 16px rgba(112, 244, 104, 0.5);
    transition: all 0.3s;
}

.coin-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(112, 244, 104, 0.7);
}

.slider-labels {
    display: flex;
    position: relative;
    margin-top: 12px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.slider-labels span {
    position: absolute;
    transform: translateX(-50%);
}

.slider-labels span:nth-child(1) {
    left: 0%;
}

.slider-labels span:nth-child(2) {
    left: 18.37%;
}

.slider-labels span:nth-child(3) {
    left: 48.98%;
}

.slider-labels span:nth-child(4) {
    left: 100%;
}

.slider-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #0a0e14;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-icon {
    font-size: 24px;
}

.benefit-item span:last-child {
    font-size: 14px;
    color: #b8bcc8;
    font-weight: 600;
}

.buy-button-large {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0c111c;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(112, 244, 104, 0.4);
}

.buy-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(112, 244, 104, 0.6);
}

.buy-button-large .btn-icon {
    font-size: 22px;
}

/* Product Pages */
.product-hero {
    background: transparent;
    padding: 70px 0;
    text-align: center;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.product-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.product-hero p {
    font-size: 18px;
    color: #8a8f9d;
    font-weight: 400;
}

.product-page {
    padding: 50px 0 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.product-card {
    background: #0f1218;
    padding: 30px 26px;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.15);
    transition: all 0.25s ease;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.product-card.featured {
    border-color: #39FF14;
    box-shadow: 0 4px 16px rgba(57, 255, 20, 0.2);
    background: #242731;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: #39FF14;
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0c111c;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(112, 244, 104, 0.3);
}

.product-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-header h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #39FF14;
    letter-spacing: -1px;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    padding: 8px 0;
    color: #b0b3b8;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.buy-button {
    width: 100%;
    padding: 14px;
    background: #39FF14;
    color: #1a1d29;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(57, 255, 20, 0.2);
}

.buy-button:hover {
    background: #2ee00f;
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.3);
    transform: translateY(-1px);
}

.info-section {
    margin-top: 70px;
}

.info-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.info-card {
    background: #161d27;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-card:hover {
    border-color: rgba(112, 244, 104, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
}

.info-card p {
    color: #8a8f9d;
    line-height: 1.6;
    font-size: 14px;
}

/* Reviews Page */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.stats-card {
    background: #161d27;
    padding: 36px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(112, 244, 104, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stats-card h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #39FF14;
    letter-spacing: -1px;
}

.stats-card p {
    font-size: 16px;
    color: #8a8f9d;
}

.stats-card .stars {
    font-size: 22px;
    margin-top: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.review-card {
    background: #161d27;
    padding: 26px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
    border-color: rgba(112, 244, 104, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0a0d12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 4px;
}

.verified-badge {
    display: inline-block;
    background: rgba(57, 255, 20, 0.15);
    color: #39FF14;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.review-header .stars {
    color: #ffd700;
    font-size: 16px;
}

.review-date {
    color: #7a7a7a;
    font-size: 13px;
    white-space: nowrap;
}

.review-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.review-card p {
    color: #b8bcc8;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 14px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 12px;
}

.review-product {
    color: #8a8f9d;
    font-size: 13px;
    font-weight: 500;
}

.helpful-count {
    color: #7a7a7a;
    font-size: 12px;
}

.reviewer {
    color: #39FF14;
    font-weight: 600;
    font-size: 13px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Checkout Page Styles */
.checkout-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s;
}

.step.active {
    opacity: 1;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #161d27;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step.active .step-num {
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    border-color: #39FF14;
    color: #0c111c;
}

.step-text {
    font-size: 14px;
    font-weight: 600;
}

.step-arrow {
    color: #6b7280;
    font-size: 18px;
}

.checkout-security {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #39FF14;
    font-weight: 600;
}

.checkout-section {
    padding: 60px 0 100px;
    background: transparent;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
}

.checkout-main {
    max-width: 750px;
}

.checkout-block {
    background: #161d27;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.block-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.block-status {
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(112, 244, 104, 0.15);
    color: #39FF14;
    border-radius: 6px;
    font-weight: 600;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #b8bcc8;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    background: #0a0e14;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(112, 244, 104, 0.5);
    box-shadow: 0 0 0 3px rgba(112, 244, 104, 0.1);
}

.form-group input::placeholder {
    color: #6b7280;
}

.form-group small {
    font-size: 12px;
    color: #6b7280;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 14px;
    color: #b8bcc8;
    cursor: pointer;
}

.checkbox-group a {
    color: #39FF14;
    text-decoration: none;
}

.info-banner {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(112, 244, 104, 0.05);
    border: 1px solid rgba(112, 244, 104, 0.2);
    border-radius: 8px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 24px;
}

.info-banner strong {
    color: #39FF14;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #0a0e14;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option.active label {
    border-color: #39FF14;
    background: rgba(112, 244, 104, 0.05);
}

.payment-icon {
    font-size: 28px;
}

.payment-name {
    flex: 1;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

.payment-logos {
    font-size: 12px;
    color: #6b7280;
}

.payment-info-box {
    margin-top: 24px;
    padding: 20px;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
}

.payment-info-box p {
    color: #39FF14;
    margin-bottom: 12px;
    font-size: 15px;
}

.payment-info-box ol {
    margin-left: 20px;
    color: #e4e6eb;
}

.payment-info-box ol li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.payment-form {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.complete-order-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0c111c;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(112, 244, 104, 0.4);
}

.complete-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(112, 244, 104, 0.6);
}

.btn-icon {
    font-size: 20px;
}

/* ========================================
   ANIMATIONS & KEYFRAMES
   ======================================== */

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-30px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(30px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        transform: scale(1.05) rotate(2deg);
    }
    70% {
        transform: scale(0.9) rotate(-1deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
    }
    to {
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-200deg) scale(0.5);
    }
    to {
        transform: rotate(0) scale(1);
    }
}

@keyframes flipIn {
    from {
        transform: perspective(400px) rotateX(-90deg);
    }
    to {
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Page Load Animations - Enhanced & Cooler */

/* Service Cards - Smooth Fade Up Effect */
.services-grid .service-card {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    animation: serviceCardIn 0.6s ease-out forwards;
}

.services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes serviceCardIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Feature Items - Zoom + Rotate Effect */
.features-grid .feature-item {
    opacity: 1;
    animation: rotateIn 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.features-grid .feature-item:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-item:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-item:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-item:nth-child(4) { animation-delay: 0.4s; }
.features-grid .feature-item:nth-child(5) { animation-delay: 0.5s; }
.features-grid .feature-item:nth-child(6) { animation-delay: 0.6s; }

/* Testimonials - Slide from Right */
.testimonials-grid .testimonial-card {
    opacity: 1;
    animation: slideInRight 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.35s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.5s; }

/* Steps - Smooth Slide In Effect */
.steps-container .step-item {
    opacity: 0;
    transform: translateX(-50px);
    animation: stepSlideIn 0.6s ease-out forwards;
}

.steps-container .step-item:nth-child(1) { animation-delay: 0.2s; }
.steps-container .step-item:nth-child(2) { animation-delay: 0.4s; }
.steps-container .step-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes stepSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats - Zoom Bounce Effect */
.stats-grid .stat-item {
    opacity: 1;
    animation: zoomIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.stats-grid .stat-item:nth-child(1) { animation-delay: 0.1s; }
.stats-grid .stat-item:nth-child(2) { animation-delay: 0.2s; }
.stats-grid .stat-item:nth-child(3) { animation-delay: 0.3s; }
.stats-grid .stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Trust Badges - Scale Bounce */
.trust-grid .trust-badge {
    opacity: 1;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.trust-grid .trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-grid .trust-badge:nth-child(2) { animation-delay: 0.15s; }
.trust-grid .trust-badge:nth-child(3) { animation-delay: 0.2s; }
.trust-grid .trust-badge:nth-child(4) { animation-delay: 0.25s; }
.trust-grid .trust-badge:nth-child(5) { animation-delay: 0.3s; }
.trust-grid .trust-badge:nth-child(6) { animation-delay: 0.35s; }

/* Section Headers - Fade Up */
.section-header {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Header - Slide Down */
header {
    animation: slideInDown 0.5s ease-out;
}

/* Carousel - Fade */
.carousel-slide.active {
    animation: fadeIn 0.6s ease-in-out;
}

/* Continuous Pulse Animations */
.slide-badge {
    animation: pulse 2s ease-in-out infinite;
}

.stats-section .stat-icon {
    animation: pulse 3s ease-in-out infinite;
}

.carousel-dots .dot.active {
    animation: pulse 2s ease-in-out infinite;
}

/* Partners - Fade with Stagger */
.partners-grid .partner-logo {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}

.partners-grid .partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partners-grid .partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partners-grid .partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partners-grid .partner-logo:nth-child(4) { animation-delay: 0.4s; }

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hover-glow:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Service Card Hover - Subtle Glow Effect */
.services-grid .service-card {
    transition: all 0.3s ease;
    position: relative;
}

/* Icon floating handled by .card-icon base styles above */

.services-grid .service-card:hover {
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: 0 8px 30px rgba(57, 255, 20, 0.15);
}

.services-grid .service-card:hover .buy-now {
    color: #39FF14;
}

/* Feature Card Hover - Subtle Highlight */
.features-grid .feature-item {
    transition: all 0.3s ease;
    position: relative;
}

.features-grid .feature-item:hover {
    background: rgba(57, 255, 20, 0.03);
    border-color: rgba(57, 255, 20, 0.2);
}

.features-grid .feature-item:hover .feature-icon svg {
    stroke: #39FF14;
    transition: stroke 0.3s ease;
}

/* Testimonial Card Animations */
.testimonials-grid .testimonial-card {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.testimonials-grid .testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.testimonials-grid .testimonial-card:hover::after {
    opacity: 1;
}

.testimonials-grid .testimonial-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(57, 255, 20, 0.1);
}

.testimonials-grid .testimonial-card:hover .testimonial-rating {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Step Item Hover - Minimal Highlight */
.steps-container .step-item {
    transition: all 0.3s ease;
}

.steps-container .step-item:hover .step-number span {
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    transition: all 0.3s ease;
}

.steps-container .step-item:hover .step-icon {
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

/* Stats Counter Animation */
.stats-grid .stat-item {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stats-grid .stat-number {
    transition: all 0.3s ease;
}

.stats-grid .stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(57, 255, 20, 0.4);
    background: rgba(57, 255, 20, 0.05);
    box-shadow: 0 8px 24px rgba(57, 255, 20, 0.15);
}

.stats-grid .stat-item:hover .stat-number {
    transform: scale(1.15);
    color: #39FF14;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.stats-grid .stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.6));
}

/* Trust Badge Animations */
.trust-grid .trust-badge {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trust-grid .trust-badge:hover {
    transform: scale(1.1) rotate(-2deg) !important;
    background: rgba(57, 255, 20, 0.12);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.2);
}

.trust-grid .trust-badge:hover .trust-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.6));
}

/* Banner Slide Animation - handled above in page load animations */

/* Page Load Animation */
body {
    animation: fadeIn 0.5s ease-in;
}

/* Logo Pulse on Hover */
.logo-svg:hover {
    animation: pulse 0.5s ease-in-out;
}

/* Cart Button Animation */
.cart-count {
    animation: scaleIn 0.3s ease-out;
}

/* Partner Logo Hover */
.partners-grid .partner-logo {
    transition: all 0.3s ease;
}

.partners-grid .partner-logo:hover {
    transform: scale(1.1) !important;
    color: #39FF14;
}

/* Carousel Button Animation */
.carousel-btn {
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: scale(1.1);
    background: rgba(57, 255, 20, 0.3);
}

/* Carousel Dot Animation */
.dot {
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.2);
    background: rgba(57, 255, 20, 0.5);
}

.dot.active {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Mobile Menu Animation */
.mobile-menu-toggle span {
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #39FF14;
}

/* Search Input Animation */
.search-input:focus {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

/* Author Avatar Animation */
.author-avatar {
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
}

/* Step Line Animation */
.step-line {
    transition: all 0.3s ease;
}

.step-item:hover .step-line {
    background: linear-gradient(to bottom, #39FF14 0%, #00FF41 100%);
}

/* Footer Links Animation */
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: #39FF14;
    transform: translateX(5px);
    display: inline-block;
}

/* Social Link Animation */
.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #39FF14;
}

/* Payment Methods Animation */
.payment-methods span {
    transition: all 0.3s ease;
}

.payment-methods span:hover {
    transform: scale(1.1);
    color: #39FF14;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button position for ripple */
.buy-button,
.slide-cta,
.cart-button {
    position: relative;
    overflow: visible;
}

.complete-order-btn {
    position: relative;
    overflow: hidden;
}

/* Card Image Animation */
.card-image {
    transition: transform 0.3s ease;
}

/* Loading State */
body.loading {
    overflow: hidden;
}

body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0d12;
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 0.3s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Button Shimmer Effect */
.slide-cta {
    position: relative;
    overflow: hidden;
}

.slide-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

.slide-cta:hover::before {
    left: 100%;
}

/* Responsive Animations */
@media (max-width: 768px) {
    /* Reduce animation intensity on mobile */
    .service-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    /* Disable parallax on mobile */
    .card-image {
        transform: none !important;
    }

    /* Simplify header animation on mobile */
    header {
        animation: fadeIn 0.3s ease-in;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .service-card:hover,
    .feature-item:hover,
    .testimonial-card:hover,
    .trust-badge:hover {
        transform: none;
    }

    .card-icon,
    .step-icon,
    .slide-badge {
        animation: none !important;
    }
}

/* Order Summary Sidebar */
.order-summary {
    background: #161d27;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.order-summary.sticky {
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.summary-items {
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #0a0e14;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.item-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.item-details p {
    font-size: 13px;
    color: #6b7280;
    margin: 2px 0;
}

.item-price {
    font-size: 18px;
    font-weight: 700;
    color: #39FF14;
}

.promo-code {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.promo-code input {
    flex: 1;
    padding: 12px 16px;
    background: #0a0e14;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.promo-code button {
    padding: 12px 20px;
    background: #39FF14;
    color: #0c111c;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-code button:hover {
    background: #8fff83;
}

.promo-message {
    font-size: 13px;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
}

.promo-message.success {
    background: rgba(112, 244, 104, 0.1);
    color: #39FF14;
    border: 1px solid rgba(112, 244, 104, 0.3);
}

.promo-message.error {
    background: rgba(255, 87, 87, 0.1);
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.3);
}

.checkout-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 8px;
    color: #ff5757;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.summary-breakdown {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #b8bcc8;
}

.summary-row.discount {
    color: #39FF14;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    padding-top: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
}

.total-price {
    color: #39FF14;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0;
    padding: 20px;
    background: rgba(112, 244, 104, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(112, 244, 104, 0.2);
}

.badge-item {
    font-size: 13px;
    color: #b8bcc8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-support {
    margin-top: 24px;
}

.customer-support h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.customer-support p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.support-btn {
    width: 100%;
    padding: 12px;
    background: #0a0e14;
    border: 1px solid rgba(112, 244, 104, 0.3);
    color: #39FF14;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.support-btn:hover {
    background: rgba(112, 244, 104, 0.1);
}

/* Order Confirmation Page */
.confirmation-section {
    padding: 80px 0;
    background: transparent;
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-animation {
    margin-bottom: 40px;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.check-icon {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.icon-line {
    height: 6px;
    background-color: #0c111c;
    display: block;
    border-radius: 3px;
    position: absolute;
}

.icon-line.line-tip {
    top: 55px;
    left: 30px;
    width: 30px;
    transform: rotate(45deg);
    animation: lineTip 0.75s 0.3s ease-out forwards;
}

.icon-line.line-long {
    top: 50px;
    right: 20px;
    width: 50px;
    transform: rotate(-45deg);
    animation: lineLong 0.75s 0.5s ease-out forwards;
}

@keyframes lineTip {
    0% {
        width: 0;
    }
    100% {
        width: 30px;
    }
}

@keyframes lineLong {
    0% {
        width: 0;
    }
    100% {
        width: 50px;
    }
}

.confirmation-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.confirmation-message {
    font-size: 18px;
    color: #8a8f9d;
    margin-bottom: 32px;
}

.order-number {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #161d27;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid rgba(112, 244, 104, 0.3);
}

.order-number .label {
    font-size: 14px;
    color: #6b7280;
}

.order-number .number {
    font-size: 18px;
    font-weight: 700;
    color: #39FF14;
}

.confirmation-card {
    background: #161d27;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
    text-align: left;
}

.confirmation-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.order-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #0a0e14;
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    font-weight: 700;
}

.total-amount {
    color: #39FF14;
}

.delivery-status {
    background: #161d27;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
    text-align: left;
}

.delivery-status h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-step {
    display: flex;
    gap: 16px;
    opacity: 0.5;
    position: relative;
    padding-left: 24px;
}

.status-step::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 50px;
    width: 2px;
    height: calc(100% + 20px);
    background: rgba(255, 255, 255, 0.1);
}

.status-step:last-child::before {
    display: none;
}

.status-step.completed,
.status-step.active {
    opacity: 1;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0a0e14;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.status-step.completed .status-icon {
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    border-color: #39FF14;
}

.status-step.active .status-icon {
    border-color: #39FF14;
    animation: pulse 2s ease-in-out infinite;
}

.status-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.status-text p {
    font-size: 13px;
    color: #6b7280;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.info-card {
    background: #161d27;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.info-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.info-card p {
    font-size: 14px;
    color: #8a8f9d;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0c111c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(112, 244, 104, 0.4);
}

.btn-secondary {
    padding: 14px 24px;
    background: #161d27;
    color: #b8bcc8;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: rgba(112, 244, 104, 0.3);
    color: #39FF14;
}

.rating-prompt {
    padding: 32px;
    background: #161d27;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.rating-prompt h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.star-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

.star {
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.2s;
}

.star:hover {
    transform: scale(1.2);
}

.rating-text {
    font-size: 14px;
    color: #6b7280;
}

.recommendations-section {
    padding: 60px 0;
    background: transparent;
}

.recommendations-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.recommendation-card {
    background: #161d27;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.recommendation-card:hover {
    transform: translateY(-4px);
    border-color: rgba(112, 244, 104, 0.3);
}

.rec-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.recommendation-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.recommendation-card p {
    font-size: 16px;
    color: #39FF14;
    font-weight: 700;
}

.rec-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 87, 87, 0.15);
    color: #ff5757;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

/* FAQ Page */
.faq-page {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: #161d27;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(57, 255, 20, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.faq-question:hover {
    color: #39FF14;
}

.faq-icon {
    font-size: 24px;
    color: #39FF14;
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #b8bcc8;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: #39FF14;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-contact {
    text-align: center;
    padding: 60px 20px;
    background: #161d27;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.faq-contact h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.faq-contact p {
    font-size: 16px;
    color: #b8bcc8;
    margin-bottom: 24px;
}

.contact-support-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0f1218;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(57, 255, 20, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-column:first-child {
        grid-column: span 3;
    }

    nav ul {
        gap: 20px;
    }

    .logo {
        margin-right: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #161d27;
        transition: left 0.3s ease;
        z-index: 9999;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav.mobile-active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 16px 24px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header-cart {
        margin-left: 0;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-sidebar.open {
        right: 0;
    }

    .services-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .slider-benefits {
        grid-template-columns: 1fr;
    }

    .social-proof-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }

    .social-proof-notification.show {
        bottom: 10px;
    }

    .live-chat-widget {
        bottom: 10px;
        right: 10px;
    }

    .chat-window {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 80px;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .step-number span {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-text h2 {
        font-size: 28px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        order: -1;
    }

    .checkout-steps {
        flex-direction: column;
        gap: 12px;
    }

    .step-arrow {
        display: none;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .recommendations-grid {
        grid-template-columns: 1fr;
    }

    .banner-carousel {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-cta {
        padding: 10px 24px;
        font-size: 14px;
    }

    .carousel-btn {
        padding: 12px 14px;
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column:first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-hero h1 {
        font-size: 32px;
    }

    .product-hero p {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 26px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Loyalty Widget */
.loyalty-widget-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9998;
    transition: all 0.3s ease;
}

.loyalty-widget-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.loyalty-icon {
    font-size: 24px;
}

.loyalty-points {
    font-weight: 700;
    color: #0a0d12;
    font-size: 16px;
}

.loyalty-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #0f1419;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
    z-index: 10001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.loyalty-panel.active {
    right: 0;
}

.loyalty-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.loyalty-panel-header h3 {
    color: #ffffff;
    font-size: 20px;
}

.panel-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.loyalty-panel-content {
    padding: 24px;
}

.loyalty-balance {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 24px;
}

.balance-label {
    font-size: 12px;
    color: #0a0d12;
    font-weight: 600;
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 42px;
    font-weight: 700;
    color: #0a0d12;
    line-height: 1;
    margin-bottom: 8px;
}

.balance-value {
    font-size: 14px;
    color: rgba(10, 13, 18, 0.8);
}

.points-notification {
    position: fixed;
    bottom: 180px;
    right: -300px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0a0d12;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: right 0.3s ease;
}

.points-notification.show {
    right: 20px;
}

/* Wishlist */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

.wishlist-btn.pulse {
    animation: heartPulse 0.6s ease-out;
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

.wishlist-notification {
    position: fixed;
    bottom: 180px;
    right: -300px;
    background: #161d27;
    border: 1px solid rgba(255, 105, 180, 0.3);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    transition: right 0.3s ease;
}

.wishlist-notification.show {
    right: 20px;
}

.wishlist-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #0f1419;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
    z-index: 10001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.wishlist-panel.active {
    right: 0;
}

.wishlist-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wishlist-panel-header h3 {
    color: #ffffff;
    font-size: 20px;
}

.wishlist-panel-content {
    padding: 24px;
}

.empty-wishlist {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-wishlist p {
    color: #ffffff;
    margin-bottom: 8px;
}

.empty-wishlist small {
    color: #7a7a7a;
    font-size: 13px;
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #161d27;
    border-radius: 12px;
    margin-bottom: 12px;
}

.wishlist-item-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-info h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 4px;
}

.wishlist-item-info p {
    color: #8a8f9d;
    font-size: 13px;
}

.wishlist-item-actions {
    display: flex;
    gap: 8px;
}

.view-btn,
.remove-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn {
    background: #39FF14;
    color: #0a0d12;
    text-decoration: none;
    border: none;
}

.remove-btn {
    background: rgba(255, 87, 87, 0.1);
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.3);
}
/* Floating Action Buttons */
.floating-chat-btn,
.floating-top-btn {
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #39FF14 0%, #00FF41 100%);
    color: #0c111c;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 0;
}

.floating-chat-btn {
    bottom: 20px;
}

.floating-top-btn {
    bottom: 90px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.floating-top-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-chat-btn:hover,
.floating-top-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(57, 255, 20, 0.6);
}

.floating-chat-btn:active,
.floating-top-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.floating-chat-btn svg,
.floating-top-btn svg {
    stroke: #0c111c;
    stroke-width: 2.5;
}

.floating-chat-btn span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-chat-btn,
    .floating-top-btn {
        width: 56px;
        height: 56px;
        right: 10px;
    }

    .floating-chat-btn {
        bottom: 10px;
    }

    .floating-top-btn {
        bottom: 76px;
    }

    .floating-chat-btn span {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .floating-chat-btn,
    .floating-top-btn {
        width: 50px;
        height: 50px;
        right: 10px;
    }

    .floating-chat-btn {
        bottom: 10px;
    }

    .floating-top-btn {
        bottom: 70px;
    }
}
