/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin: 0;
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cart-toggle {
    position: relative;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
}

.cart-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.cart-icon {
    width: 20px;
    height: 20px;
    color: #ffd700;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.nav {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.nav::-webkit-scrollbar {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: #71717a;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Main Content */
.main {
    min-height: calc(100vh - 80px);
}

.section {
    display: none;
    padding: 2rem 0;
}

.section.active {
    display: block;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
        radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%),
        url('public/WhatsApp Image 2025-08-31 at 13.26.30.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* FF ID Check */
.ff-id-check {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 1.5rem;
}

.ff-id-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.ff-id-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.ff-id-input::placeholder {
    color: #71717a;
    font-weight: 400;
}

.validation-message {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.validation-message.success {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.validation-message.error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cta-button {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
}

.cta-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.cta-button:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #71717a;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobile specific for proceed button */
@media (max-width: 768px) {
    .cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.125rem;
        font-weight: 700;
        min-height: 64px;
        border-radius: 20px;
        letter-spacing: 0.05em;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: #0f0f0f;
}

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

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffd700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title-large {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 1.5rem;
    }
}

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.step-icon {
    width: 32px;
    height: 32px;
    color: #000000;
}

.step-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #000000;
    color: #ffd700;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-description {
    font-size: 0.875rem;
    color: #a1a1aa;
    line-height: 1.6;
}

.step-arrow {
    display: none;
    color: #ffd700;
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
    }
}

.confirmation-text {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 4rem 0;
    text-align: center;
}

.confirmation-text p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #d4d4d8;
}

.confirmation-text p:last-child {
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.special-cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    border-radius: 16px;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
}

.special-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

/* Value Proposition */
.value-proposition {
    padding: 4rem 0;
    background: #0f0f0f;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .value-content {
        grid-template-columns: 1fr 1fr;
    }
}

.value-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.value-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 2.5rem;
}

.stats-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .stats-container {
        justify-content: flex-start;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: #71717a;
    font-weight: 500;
    margin-top: 0.5rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .action-buttons {
        flex-direction: row;
        align-items: center;
    }
}

.review-button {
    background: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.review-button:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
    transform: translateY(-2px);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffd700;
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-circle {
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

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

.features-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffd700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.features-subtitle {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0.75rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 1.5rem;
    }
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.feature-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.feature-text.gradient-blue {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.feature-arrow {
    display: none;
    color: #ffd700;
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .feature-arrow {
        display: block;
    }
}

/* Shop Section */
.shop-hero {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.verified-user-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .verified-user-info {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.verified-icon {
    width: 18px;
    height: 18px;
}

.user-ff-id {
    font-size: 0.875rem;
    color: #a1a1aa;
}

.ff-id-label {
    font-weight: 500;
}

.ff-id-value {
    font-weight: 700;
    color: #ffd700;
    font-family: 'Courier New', monospace;
    margin-left: 0.5rem;
}

.shop-welcome {
    text-align: center;
}

.shop-title {
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-subtitle {
    color: #a1a1aa;
    font-size: 1rem;
}

/* Store Header */
.store-header {
    margin-bottom: 3rem;
}

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

.search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.5rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
    color: #71717a;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #ffd700;
}

/* Products */
.category {
    margin-bottom: 4rem;
    position: relative;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.scroll-controls {
    display: flex;
    gap: 0.5rem;
}

.scroll-button {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-button:hover:not(:disabled) {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.scroll-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.scroll-button svg {
    width: 16px;
    height: 16px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.category-subtitle {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .scroll-controls {
        display: none;
    }
    
    .category-header {
        margin-bottom: 1.5rem;
    }
}

.products-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.3) transparent;
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.products-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ffed4e, #ffd700);
}

.product-card {
    flex: 0 0 320px;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    scroll-snap-align: start;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.2),
        0 0 60px rgba(255, 215, 0, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .products-grid {
        gap: 1rem;
        padding: 0.5rem 0 1.5rem 0;
    }
}

.product-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-8px);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.4),
        0 0 100px rgba(255, 215, 0, 0.2),
        0 20px 40px rgba(255, 215, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.product-image {
    text-align: center;
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-image,
.membership-image,
.evo-image {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 25px rgba(255, 215, 0, 0.4))
        drop-shadow(0 0 50px rgba(255, 215, 0, 0.2))
        drop-shadow(0 0 80px rgba(255, 215, 0, 0.1));
    transition: all 0.3s ease;
}

.membership-image,
.evo-image {
    max-width: 150px;
    max-height: 150px;
}
.product-card:hover .diamond-image,
.product-card:hover .membership-image,
.product-card:hover .evo-image {
    filter: 
        drop-shadow(0 0 30px rgba(255, 215, 0, 0.5))
        drop-shadow(0 0 60px rgba(255, 215, 0, 0.2));
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.3),
        0 0 80px rgba(255, 215, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-align: center;
}

.product-description {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.pricing-container {
    margin-bottom: 1.5rem;
    text-align: center;
}

.original-price {
    font-size: 0.875rem;
    color: #52525b;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.product-price,
.discounted-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.4),
        0 0 50px rgba(255, 215, 0, 0.2),
        0 4px 15px rgba(255, 215, 0, 0.3);
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 8px 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.2);
}

/* Evo Selector */
.evo-selector {
    margin-bottom: 1.5rem;
}

.evo-selector label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.evo-selector select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.evo-selector select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Content Pages */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #a1a1aa;
}

.content-text p {
    margin-bottom: 2rem;
}

.contact-info {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #0f0f0f;
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #ffd700;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: rotate(90deg);
}

.cart-close svg {
    width: 20px;
    height: 20px;
}

.cart-content {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #71717a;
}

.cart-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.02);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.cart-item-variant {
    font-size: 0.75rem;
    color: #71717a;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffd700;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
}

.qty-button {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-button:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: scale(1.1);
}

.qty-display {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    min-width: 32px;
    text-align: center;
}

.remove-item {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.1);
}

.remove-item svg {
    width: 16px;
    height: 16px;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.02);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.total-amount {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-button {
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    border-radius: 16px;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.checkout-button:hover:not(.minimum-not-met) {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.5);
}

.checkout-button.minimum-not-met {
    background: rgba(255, 255, 255, 0.1);
    color: #71717a;
    cursor: not-allowed;
    box-shadow: none;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 1rem;
    color: #71717a;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 320px;
    backdrop-filter: blur(20px);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid #ffd700;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast-content {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
}

/* Loading States */
.loading-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-popup {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 320px;
    width: 90%;
    backdrop-filter: blur(20px);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 215, 0, 0.2);
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.loading-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

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

/* Verification Popup */
.verification-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.verification-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 3rem 2rem 2rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.verification-popup-overlay.show .popup-content {
    transform: scale(1) translateY(0);
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    position: relative;
}

.checkmark-circle::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    border-radius: 50%;
    z-index: -1;
}

.checkmark-circle.animate {
    transform: scale(1);
    animation: checkmarkBounce 0.6s ease;
}

.checkmark {
    width: 40px;
    height: 40px;
    color: #000000;
    stroke-width: 4;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: none;
}

.checkmark-circle.animate .checkmark {
    animation: drawCheckmark 0.6s ease-in-out 0.3s forwards;
}

@keyframes checkmarkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes drawCheckmark {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 480px) {
    .checkmark-circle {
        width: 70px;
        height: 70px;
    }
    
    .checkmark {
        width: 35px;
        height: 35px;
    }
}

.popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.player-details {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.player-id,
.player-name {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 0.5rem;
}

.player-id {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #ffd700;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

@media (min-width: 480px) {
    .popup-buttons {
        flex-direction: row;
    }
}

.popup-button {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ok-button {
    background: rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ok-button:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.view-plans-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.view-plans-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .how-it-works {
        padding: 3rem 0;
    }
    
    .value-proposition {
        padding: 3rem 0;
    }
    
    .features-section {
        padding: 3rem 0;
    }
    
    .stats-container {
        justify-content: center;
        gap: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .review-button {
        justify-content: center;
    }
    
    .shop-hero {
        padding: 2rem 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .product-card,
    .cart-item,
    .step {
        border-width: 2px;
    }
}

/* Print Styles */
@media print {
    .header,
    .cart-sidebar,
    .cart-overlay,
    .toast-container {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title-large {
        font-size: 1.75rem;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step-circle {
        width: 70px;
        height: 70px;
    }
    
    .step-icon {
        width: 28px;
        height: 28px;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .cart-header {
        padding: 1.5rem;
    }
    
    .cart-content {
        padding: 1rem;
    }
    
    .cart-footer {
        padding: 1.5rem;
    }
}

/* Smooth scrolling for iOS */
@supports (-webkit-overflow-scrolling: touch) {
    .cart-content {
        -webkit-overflow-scrolling: touch;
    }
}