/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1e1b4b;
    --light: #f8fafc;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

/* Interactive Hexagon Canvas Background */
#hexagon-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
    color: var(--primary);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 5% 2rem;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Section Styles */
section {
    padding: 6rem 5%;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}


/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, var(--dark) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease-out forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    background: var(--dark);
}

.benefits-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1 1 350px;
    max-width: 420px;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 700px) {
    .benefit-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: auto;
    }
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card.driver:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    border-color: var(--secondary);
}

.benefit-card.advertiser {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.benefit-card.advertiser:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
    border-color: var(--accent);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card.driver .card-icon {
    color: var(--secondary);
}

.benefit-card.advertiser .card-icon {
    color: var(--accent);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card.driver h3 {
    color: var(--secondary);
}

.benefit-card.advertiser h3 {
    color: var(--accent);
}

.benefit-card ul {
    list-style: none;
}

.benefit-card li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-card.driver li i {
    color: var(--secondary);
}

.benefit-card.advertiser li i {
    color: var(--accent);
}

/* Join Section */
.join-section {
    background: linear-gradient(180deg, var(--dark) 0%, rgba(99, 102, 241, 0.15) 100%);
    min-height: 80vh;
}

.join-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.option-card:hover {
    transform: scale(1.03);
}

#driver-option:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

#advertiser-option:hover {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}

.option-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

#driver-option .option-icon {
    color: var(--secondary);
}

#advertiser-option .option-icon {
    color: var(--accent);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.option-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.option-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.option-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.driver-btn {
    background: var(--gradient-green);
    color: white;
}

.advertiser-btn {
    background: var(--gradient-orange);
    color: white;
}

.option-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Form Styles */
.form-container {
    display: none;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.5s ease-out;
}

.form-container.active {
    display: block;
}

.back-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.back-btn:hover {
    color: var(--light);
}

.form-container h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 3rem;
    animation: scaleIn 0.5s ease-out;
}

.success-message.active {
    display: block;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 1s ease-in-out;
    color: var(--secondary);
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.success-message p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Error Message */
.error-message {
    display: none;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 3rem;
    animation: scaleIn 0.5s ease-out;
}

.error-message.active {
    display: block;
}

.error-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #ef4444;
}

.error-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ef4444;
}

.error-message p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(99, 102, 241, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    color: var(--light);
    font-size: 1.1rem;
}

/* Submit button disabled state */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .options-container {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
}


/* Nav Auth Buttons */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    padding: 0.6rem 1.2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.profile-dropdown {
    position: relative;
}

.profile-btn {
    padding: 0.6rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    color: var(--light);
    border: 2px solid var(--primary);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-btn:hover {
    background: var(--primary);
}

.profile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(30, 27, 75, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    display: none;
    animation: fadeIn 0.2s ease-out;
}

.profile-menu.active {
    display: block;
}

.profile-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--light);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.profile-menu a:hover {
    background: rgba(99, 102, 241, 0.2);
}

.profile-menu a i {
    width: 20px;
    color: var(--primary);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
    position: relative;
    animation: scaleIn 0.3s ease-out;
}

.dashboard-modal {
    max-width: 550px;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--light);
}

.modal h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.modal h3 i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.modal-note {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.modal-note a {
    color: var(--primary);
    text-decoration: none;
}

.modal-note a:hover {
    text-decoration: underline;
}

/* Dashboard Info */
.dashboard-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-card span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Sticker Selector */
.sticker-selector h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.sticker-selector h4 i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.sticker-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.sticker-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sticker-option {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.sticker-option:hover {
    border-color: var(--primary);
}

.sticker-preview {
    margin: 0 auto 0.75rem;
    background: var(--gradient);
    border-radius: 8px;
}

.sticker-preview.small {
    width: 30px;
    height: 30px;
}

.sticker-preview.medium {
    width: 45px;
    height: 45px;
}

.sticker-preview.large {
    width: 60px;
    height: 60px;
}

.sticker-option span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.sticker-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sticker-count button {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.sticker-count button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.sticker-count span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
    min-width: 25px;
}

.sticker-total {
    text-align: center;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.sticker-total span {
    color: rgba(255, 255, 255, 0.8);
}

.sticker-total strong {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Responsive for nav-auth */
@media (max-width: 768px) {
    .nav-auth {
        position: absolute;
        right: 5%;
    }
    
    .login-btn span,
    .profile-btn span {
        display: none;
    }
    
    .sticker-options {
        flex-direction: column;
    }
}


/* Stickers Nav Link */
.stickers-nav {
    background: var(--gradient-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.stickers-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.stickers-nav::after {
    display: none !important;
}

.stickers-nav i {
    font-size: 0.9rem;
}


/* ============================================
   STICKERS PAGE STYLES
   ============================================ */

.stickers-page {
    min-height: 100vh;
    padding: 100px 5% 50px;
    position: relative;
    z-index: 1;
}

.stickers-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--light);
}

.page-title i {
    color: var(--secondary);
    margin-right: 0.75rem;
}

/* User Info Section */
.user-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card-large {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.info-card-large:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
}

/* Sticker Selection Section */
.sticker-selection-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
}

.sticker-selection-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.sticker-selection-section h2 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.section-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

/* Sticker Cards */
.sticker-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sticker-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.sticker-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.sticker-card.selected {
    border-color: var(--secondary);
    background: rgba(16, 185, 129, 0.1);
}

.sticker-visual {
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.small-visual {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
}

.medium-visual {
    width: 90px;
    height: 90px;
    font-size: 1rem;
}

.large-visual {
    width: 120px;
    height: 120px;
    font-size: 1.2rem;
}

.sticker-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--light);
}

.sticker-card > p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sticker-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 1.5rem !important;
}

/* Sticker Counter */
.sticker-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.counter-btn.plus:hover {
    background: var(--secondary);
}

.counter-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    min-width: 40px;
}

/* Summary */
.sticker-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.summary-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.large-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.submit-btn.active {
    background: var(--gradient-green);
}

/* Active nav link */
.stickers-nav.active {
    background: var(--secondary) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .stickers-page {
        padding: 90px 4% 30px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .sticker-selection-section {
        padding: 1.5rem;
    }
    
    .sticker-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .large-btn {
        width: 100%;
    }
}


/* ============================================
   LOGO LINK FIXES
   ============================================ */
a.logo {
    text-decoration: none !important;
    color: var(--light);
    transition: transform 0.3s ease;
}

a.logo:hover {
    transform: scale(1.05);
    text-decoration: none !important;
}

a.logo::after {
    display: none !important;
}

/* ============================================
   LIQUID GLASS SLIDING INDICATOR
   ============================================ */
.nav-links {
    position: relative;
}

.nav-indicator {
    position: absolute;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8),
                0 0 20px rgba(139, 92, 246, 0.5);
    animation: glowPulse 2s ease-in-out infinite;
}

.nav-indicator.visible {
    opacity: 1;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.8),
                    0 0 20px rgba(139, 92, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(139, 92, 246, 1),
                    0 0 30px rgba(168, 85, 247, 0.7);
    }
}

.nav-links a[data-section] {
    position: relative;
    z-index: 1;
    padding: 8px 16px;
    border-radius: 20px;
    transition: color 0.3s;
}

.nav-links a[data-section].active-section {
    color: white;
}
