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

:root {
    /* Color Palette - Based on Lace.io design */
    --primary-bg: #000000;
    --secondary-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-orange: #f59e0b;
    --accent-cyan: #06b6d4;
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.logo-icon {
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast);
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-logo-icon {
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    padding: var(--spacing-md) 0;
    transition: all var(--transition-normal);
}



.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.nav-link:hover {
    color: var(--accent-purple);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: var(--spacing-xs);
    font-size: var(--font-size-xs);
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-xl);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-purple);
}

.cta-button {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Background Canvas */
.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

/* Floating Elements Background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 20%);
    animation: floatingElements 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingElements {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-5px) rotate(-1deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-15px) rotate(0.5deg);
        opacity: 0.9;
    }
}

/* Main Content */
.main {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(80px + var(--spacing-2xl)) var(--spacing-lg) var(--spacing-4xl);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background-color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(236, 72, 153, 0.03) 50%, transparent 70%);
    animation: heroShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroShimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    max-width: 900px;
    margin-bottom: var(--spacing-4xl);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(1px);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, #000000 0%, #8b5cf6 25%, #ec4899 50%, #f59e0b 75%, #06b6d4 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    letter-spacing: -0.02em;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.highlight-link {
    color: var(--accent-purple);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.highlight-link:hover {
    color: var(--accent-pink);
}

.hero-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    border: none;
    color: white;
    padding: var(--spacing-lg) var(--spacing-3xl);
    border-radius: var(--radius-full);
    font-size: var(--font-size-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-cta:active {
    transform: translateY(-2px) scale(1.01);
}

/* Legacy Carousel Indicators - Removed */

/* Section Styles */
.platform-section,
.wallet-section,
.world-section,
.future-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
    position: relative;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.wallet-section .section-content,
.world-section .section-content,
.future-section .section-content {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}

.section-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.section-cta {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-block;
}

.section-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.explore-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: color var(--transition-fast);
    position: relative;
}

.explore-link:hover {
    color: var(--accent-pink);
}

.explore-link::after {
    content: '→';
    margin-left: var(--spacing-sm);
    transition: transform var(--transition-fast);
}

.explore-link:hover::after {
    transform: translateX(4px);
}

/* NFT Grid */
.visual-content {
    position: relative;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nft-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.nft-item:hover {
    transform: scale(1.05);
}

.nft-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.8) 0%, 
        rgba(236, 72, 153, 0.8) 25%, 
        rgba(245, 158, 11, 0.8) 50%, 
        rgba(6, 182, 212, 0.8) 75%, 
        rgba(139, 92, 246, 0.8) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Different colors for NFT items */
.nft-1::before { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.nft-2::before { background: linear-gradient(135deg, #ec4899, #f59e0b); }
.nft-3::before { background: linear-gradient(135deg, #f59e0b, #06b6d4); }
.nft-4::before { background: linear-gradient(135deg, #06b6d4, #10b981); }
.nft-5::before { background: linear-gradient(135deg, #10b981, #8b5cf6); }
.nft-6::before { background: linear-gradient(135deg, #f59e0b, #ec4899); }
.nft-7::before { background: linear-gradient(135deg, #06b6d4, #8b5cf6); }
.nft-8::before { background: linear-gradient(135deg, #ec4899, #10b981); }

/* Gallery Showcase - Enhanced with provided assets */
.gallery-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-main-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
}

/* Fallback grid styling */
.fallback-grid {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Responsive gallery adjustments */
@media (max-width: 768px) {
    .gallery-showcase {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .gallery-main-image {
        border-radius: var(--radius-lg);
    }
}

/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-4xl) var(--spacing-lg) var(--spacing-xl);
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: var(--spacing-4xl);
    padding-bottom: var(--spacing-4xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: start;
}

.newsletter-text {
    max-width: 500px;
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.newsletter-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.newsletter-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.newsletter-form {
    max-width: 400px;
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    padding-right: 140px; /* Space for the register button */
    color: var(--text-primary);
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-submit {
    position: absolute;
    right: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: var(--font-size-sm);
    white-space: nowrap;
}

.form-submit:hover {
    transform: translateY(-50%) translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.checkbox-input {
    margin-top: 2px;
    accent-color: var(--accent-purple);
}

.checkbox-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

.privacy-link {
    color: var(--accent-purple);
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--accent-pink);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-heading {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: var(--spacing-sm);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-primary);
}

/* Browser Links */
.browser-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.browser-link:hover {
    color: var(--text-primary);
}

.browser-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.browser-icon.chrome { background: linear-gradient(135deg, #4285f4, #34a853); }
.browser-icon.brave { background: linear-gradient(135deg, #fb542b, #ff6b35); }
.browser-icon.edge { background: linear-gradient(135deg, #0078d4, #106ebe); }
.browser-icon.firefox { background: linear-gradient(135deg, #ff9500, #ff6611); }

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
}

.social-link.youtube:hover { background: #ff0000; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.discord:hover { background: #5865f2; }

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 var(--spacing-md);
    }
    
    .nav-menu {
        display: none; /* Simplified for mobile - would need hamburger menu */
    }
    
    .hero {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .platform-section,
    .wallet-section,
    .world-section,
    .future-section {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .nft-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    

}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .nft-grid {
        grid-template-columns: 1fr;
        padding: var(--spacing-md);
    }
    
    .form-input {
        padding-right: var(--spacing-md);
    }
    
    .form-submit {
        position: static;
        transform: none;
        width: 100%;
        margin-top: var(--spacing-sm);
        border-radius: var(--radius-md);
        padding: var(--spacing-md);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Enhanced button interactions */
.service-button.clicked {
    transform: scale(0.95);
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

/* Staggered animations for service buttons */
.service-button:nth-child(1) { animation-delay: 0.1s; }
.service-button:nth-child(2) { animation-delay: 0.15s; }
.service-button:nth-child(3) { animation-delay: 0.2s; }
.service-button:nth-child(4) { animation-delay: 0.25s; }
.service-button:nth-child(5) { animation-delay: 0.3s; }
.service-button:nth-child(6) { animation-delay: 0.35s; }
.service-button:nth-child(7) { animation-delay: 0.4s; }
.service-button:nth-child(8) { animation-delay: 0.45s; }

/* Enhanced CTA button animations */
.cta-button, .hero-cta, .section-cta {
    position: relative;
    overflow: hidden;
}

.cta-button::before, .hero-cta::before, .section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.cta-button:hover::before, .hero-cta:hover::before, .section-cta:hover::before {
    left: 100%;
}

/* Page transition effects */
body {
    transition: opacity 0.3s ease;
}

/* Loading state */
.loading {
    opacity: 0.8;
    pointer-events: none;
}

/* Enhanced form animations */
.form-input:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15), 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-submit {
    position: relative;
    overflow: hidden;
}

.form-submit::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 var(--transition-normal);
}

.form-submit:hover::before {
    left: 100%;
}

/* Performance Optimizations */
.hero,
.platform-section,
.wallet-section,
.world-section,
.future-section,
.services-section {
    will-change: transform;
}

.nft-item,
.cta-button,
.hero-cta,
.section-cta,
.service-button {
    will-change: transform;
}

/* Final polish and consistency */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure consistent focus states */
button:focus,
.service-button:focus,
.cta-button:focus,
.hero-cta:focus,
.section-cta:focus,
a:focus {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Enhanced visual feedback for all interactive elements */
button,
.service-button,
.cta-button,
.hero-cta,
.section-cta,
a {
    transition: all var(--transition-normal);
}

button:active,
.service-button:active,
.cta-button:active,
.hero-cta:active,
.section-cta:active {
    transform: scale(0.98);
}

/* Ensure proper z-index stacking */
.header {
    z-index: 1000;
}



.background-canvas {
    z-index: -1;
}

/* Final responsive adjustments */
@media (max-width: 768px) {
    .service-button {
        animation-delay: 0s !important;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .service-button {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .cta-button::before,
    .hero-cta::before,
    .section-cta::before,
    .form-submit::before {
        display: none;
    }
}

/* Service Buttons Section */
.services-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(236, 72, 153, 0.02) 50%, rgba(245, 158, 11, 0.02) 100%);
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.services-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
}

/* Service Category Styling */
.service-category {
    position: relative;
}

.category-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* Service Buttons Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Individual Service Button Styling */
.service-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-xl);
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    text-decoration: none;
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.service-button:hover::before {
    left: 100%;
}

.service-button:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    color: var(--text-primary);
}

.service-button:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.service-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.service-title {
    position: relative;
    z-index: 1;
    font-weight: 500;
    line-height: 1.4;
}

/* Category-specific button variations */
.service-category:nth-child(1) .service-button:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.service-category:nth-child(2) .service-button:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
}

.service-category:nth-child(3) .service-button:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.service-category:nth-child(4) .service-button:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15);
}

.service-category:nth-child(5) .service-button:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.service-category:nth-child(6) .service-button:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
}

.service-category:nth-child(7) .service-button:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

.service-category:nth-child(8) .service-button:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.service-category:nth-child(9) .service-button:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

/* Responsive Design for Service Buttons */
@media (max-width: 1024px) {
    .services-section {
        padding: var(--spacing-3xl) var(--spacing-lg);
    }
    
    .services-title {
        font-size: var(--font-size-4xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }
    
    .service-button {
        padding: var(--spacing-md) var(--spacing-lg);
        min-height: 55px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .services-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .services-title {
        font-size: var(--font-size-3xl);
    }
    
    .services-description {
        font-size: var(--font-size-base);
    }
    
    .services-content {
        gap: var(--spacing-2xl);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-button {
        padding: var(--spacing-md);
        min-height: 50px;
        font-size: var(--font-size-sm);
    }
    
    .category-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .services-title {
        font-size: var(--font-size-2xl);
    }
    
    .service-button {
        padding: var(--spacing-sm) var(--spacing-md);
        min-height: 45px;
        font-size: var(--font-size-sm);
    }
    
    .category-title {
        font-size: var(--font-size-lg);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-button {
        min-height: 48px; /* Minimum touch target size */
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .service-button:hover {
        transform: none; /* Disable hover transforms on touch devices */
    }
    
    .service-button:active {
        background: rgba(139, 92, 246, 0.15);
        transform: scale(0.98);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-button {
        border-width: 2px;
        border-color: var(--text-primary);
    }
    
    .service-button:hover {
        background: var(--accent-purple);
        color: var(--primary-bg);
    }
    
    .service-button:focus {
        border-color: var(--accent-purple);
        box-shadow: 0 0 0 3px var(--text-primary);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .background-canvas {
        display: none;
    }
    
    .service-button::before {
        display: none;
    }
    
    .service-button:hover {
        transform: none;
    }
}
/* Geometric Background Elements */
.hero-geometric {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-geometric::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 50%;
    animation: float1 8s ease-in-out infinite;
    filter: blur(1px);
}

.hero-geometric::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 30%;
    animation: float2 10s ease-in-out infinite reverse;
    filter: blur(1px);
}

@keyframes float1 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    33% { 
        transform: translateY(-20px) translateX(10px) rotate(120deg);
        opacity: 0.8;
    }
    66% { 
        transform: translateY(10px) translateX(-5px) rotate(240deg);
        opacity: 0.7;
    }
}

@keyframes float2 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-15px) translateX(-10px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Enhanced Grid Pattern */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Particle Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: rgba(139, 92, 246, 0.4);
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    background: rgba(236, 72, 153, 0.4);
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    background: rgba(6, 182, 212, 0.4);
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 6s;
    background: rgba(245, 158, 11, 0.4);
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 8s;
    background: rgba(139, 92, 246, 0.4);
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 10s;
    background: rgba(236, 72, 153, 0.4);
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 12s;
    background: rgba(6, 182, 212, 0.4);
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 14s;
    background: rgba(245, 158, 11, 0.4);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Enhanced Carousel Indicators */
.carousel-indicators {
    display: flex;
    gap: var(--spacing-md);
    position: absolute;
    bottom: var(--spacing-3xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-purple);
    border-radius: 50%;
    transition: all var(--transition-normal);
    transform: translate(-50%, -50%);
}

.indicator.active::before,
.indicator:hover::before {
    width: 100%;
    height: 100%;
}

.indicator.active,
.indicator:hover {
    border-color: var(--accent-purple);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

/* Professional Glow Effects */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Ring Background */
.hero-ring-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('ring.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-geometric::before {
        width: 120px;
        height: 120px;
        top: 15%;
        left: 10%;
    }
    
    .hero-geometric::after {
        width: 100px;
        height: 100px;
        bottom: 20%;
        right: 10%;
    }
    
    .hero-grid {
        background-size: 30px 30px;
    }
    
    .hero-glow {
        width: 400px;
        height: 400px;
    }
    
    .hero-ring-bg {
        opacity: 0.2;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

/* Performance Optimizations */
.hero,
.hero::before,
.hero::after,
.hero-geometric,
.hero-geometric::before,
.hero-geometric::after,
.hero-grid,
.hero-glow,
.hero-ring-bg {
    will-change: transform, opacity;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .hero-geometric::before,
    .hero-geometric::after,
    .hero-grid,
    .hero-glow,
    .particle,
    .hero-title {
        animation: none !important;
    }
    
    .hero-cta:hover {
        transform: none;
    }
}/* Hero Content Styles */
.hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    min-height: 70vh;
    padding: var(--spacing-2xl);
}

.hero-content {
    max-width: 600px;
    z-index: 3;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-cta.primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    border: none;
    color: white;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-full);
    font-size: var(--font-size-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.hero-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}



/* Slide Animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: slideInFromLeft 0.8s ease-out;
}

.hero-visual {
    animation: slideInFromRight 0.8s ease-out;
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
        padding: var(--spacing-lg);
    }
    
    .hero-content {
        max-width: 100%;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        min-height: 60vh;
        padding: var(--spacing-md);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .hero-cta.primary,
    .hero-cta.secondary {
        width: 100%;
        max-width: 280px;
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    

}

@media (max-width: 480px) {
    .hero-content-wrapper {
        min-height: 50vh;
    }
    
    .hero-image {
        max-width: 100%;
        border-radius: var(--radius-lg);
    }
    

}

/* Performance Optimizations */
.hero-image,
.hero-cta {
    will-change: transform, opacity;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-visual,
    .hero-image {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }
    
    .hero-cta:hover,
    .indicator:hover {
        transform: none !important;
    }
}



.hero-cta:focus {
    outline: 2px solid var(--accent-purple);
    outline-offset: 4px;
}/* Additi
onal Carousel Fixes */
.carousel-navigation {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.indicator {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Ensure indicators are above all background elements */
.carousel-indicators {
    position: relative;
    z-index: 1000;
}

/* Debug styles - remove after testing */
.indicator {
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
}

.indicator:hover {
    border-color: #ff0000 !important;
    background: rgba(255, 0, 0, 0.3) !important;
}

.indicator.active {
    border-color: #00ff00 !important;
    background: rgba(0, 255, 0, 0.3) !important;
}/* En
hanced Hero Image Transitions */
.hero-image {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    will-change: opacity, transform;
}

.hero-image {
    opacity: 1;
    transform: scale(1);
}

/* Hero content animations */
.hero-content {
    animation: slideInContent 0.8s ease-out;
}

.hero-visual {
    animation: slideInImage 0.8s ease-out 0.2s both;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInImage {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-carousel::before,
    .hero-carousel::after {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 3px;
    }
    
    @keyframes progressBar {
        0% { width: 0; }
        100% { width: 40px; }
    }
}