:root {
    /* Gradient-based color palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    /* Film photography inspired gradients */
    --film-vintage: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --film-noir: linear-gradient(135deg, #434343 0%, #000000 100%);
    --film-sepia: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    --film-kodak: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    
    /* Dark theme with gradient accents */
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --bg-card: rgba(30, 30, 30, 0.8);
    --bg-elevated: rgba(40, 40, 40, 0.9);
    
    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-tertiary: #b0b0b0;
    --text-muted: #808080;
    
    /* Glass effect with gradients */
    --glass-bg: rgba(25, 25, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.05);
    
    /* Enhanced shadows with color */
    --shadow-colored: 0 8px 32px rgba(102, 126, 234, 0.15);
    --shadow-glow: 0 0 40px rgba(79, 172, 254, 0.2);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-hard: 0 12px 40px rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Monaco', 'Menlo', monospace;
}

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

html {
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Film perforations down each side */
body::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: 
        /* Subtle gradient overlay */
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.1) 0%, 
            rgba(40, 40, 60, 0.15) 25%, 
            rgba(60, 60, 80, 0.1) 50%, 
            rgba(40, 40, 60, 0.15) 75%, 
            rgba(0, 0, 0, 0.1) 100%
        ),
        /* Main square pattern */
        repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 15px,
            rgba(102, 126, 234, 0.4) 15px,
            rgba(102, 126, 234, 0.4) 65px,
            transparent 65px,
            transparent 80px
        );
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: 
        /* Subtle gradient overlay */
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.1) 0%, 
            rgba(40, 40, 60, 0.15) 25%, 
            rgba(60, 60, 80, 0.1) 50%, 
            rgba(40, 40, 60, 0.15) 75%, 
            rgba(0, 0, 0, 0.1) 100%
        ),
        /* Main square pattern */
        repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 15px,
            rgba(102, 126, 234, 0.4) 15px,
            rgba(102, 126, 234, 0.4) 65px,
            transparent 65px,
            transparent 80px
        );
    z-index: -1;
    pointer-events: none;
}

@keyframes filmGrain {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(1px, -1px); }
    30% { transform: translate(-1px, -1px); }
    40% { transform: translate(1px, 1px); }
    50% { transform: translate(-1px, 0px); }
    60% { transform: translate(1px, -1px); }
    70% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, 0px); }
    90% { transform: translate(-1px, -1px); }
    100% { transform: translate(0, 0); }
}

/* Container and layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--primary-gradient);
    opacity: 0.1;
    /* animation: headerFlow 15s ease-in-out infinite; */
    border-radius: 50%;
}

/* Header animations disabled */

.logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 248, 248, 0.9) 100%);
    padding: 12px;
    animation: logoFloat 8s ease-in-out infinite;
    overflow: hidden;
}

/* Hero logo styling - floating white box */
.hero-logo {
    position: relative;
    z-index: 9998;
    margin-bottom: 2rem;
    padding: 1rem 0;
    overflow: hidden;
}

.hero-logo img {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 248, 248, 0.9) 100%);
    padding: 12px;
    box-shadow: 
        var(--shadow-colored),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    display: block;
    object-fit: contain;
}

/* Logo floating animation */
@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(1deg); 
    }
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo:hover::before {
    opacity: 0.1;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-6px) rotate(1deg) scale(1.02);
    }
    50% { 
        transform: translateY(-8px) rotate(0deg) scale(1.03);
    }
    75% { 
        transform: translateY(-4px) rotate(-1deg) scale(1.02);
    }
}

@keyframes logoGlow {
    0%, 100% { 
        transform: rotate(0deg);
        opacity: 0;
    }
    50% { 
        transform: rotate(180deg);
        opacity: 0.05;
    }
}

.logo:hover {
    /* No movement on hover */
    box-shadow: 
        var(--shadow-glow),
        var(--shadow-colored);
}

.logo img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Logo Links */
.logo-container {
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

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

.sticky-logo {
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    animation: titleGlow 4s ease-in-out infinite;
    text-align: center;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: brightness(1) contrast(1);
        text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    }
    50% { 
        filter: brightness(1.1) contrast(1.1);
        text-shadow: 0 0 40px rgba(102, 126, 234, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}

.badge {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.4s ease;
    z-index: -1;
}

.badge:hover::before {
    left: 0;
}

.badge:hover {
    color: white;
    /* No movement on hover */
    box-shadow: var(--shadow-colored);
    border-color: rgba(102, 126, 234, 0.5);
}

/* Header Navigation */
.header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.3rem, 1vw, 0.8rem);
    margin-top: clamp(1rem, 3vw, 2rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
}

/* Header Download Button */
.header-download {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    pointer-events: auto;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: var(--secondary-gradient);
}

.download-btn i {
    font-size: 1.2rem;
}

.nav-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: clamp(0.35rem, 1vw, 0.6rem) clamp(0.5rem, 2vw, 1.2rem);
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    white-space: nowrap;
    min-width: fit-content;
    max-width: 120px;
    text-align: center;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.nav-btn:hover::before,
.nav-btn.active::before {
    left: 0;
}

.nav-btn:hover::after {
    width: 100%;
    height: 100%;
}

.nav-btn:hover,
.nav-btn.active {
    color: white;
    /* No movement on active */
    box-shadow: var(--shadow-glow);
    border-color: rgba(102, 126, 234, 0.6);
}

.nav-btn-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    font-weight: 600;
}

.nav-btn-register:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.nav-btn-download {
    background: var(--primary-gradient) !important;
    color: white !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.nav-btn-download:hover {
    background: var(--secondary-gradient) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

/* Sticky Header - Always Visible */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    padding: 0.8rem 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-radius: 0 0 15px 15px;
}

.sticky-header.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    height: 60px;
}

.sticky-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 44px;
}

.sticky-logo-img {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 248, 248, 0.9) 100%);
    border-radius: 10px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    object-fit: contain;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.sticky-logo-img:hover {
    /* No scaling on hover */
    box-shadow: var(--shadow-colored);
}

.sticky-logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sticky-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Ensure mobile menu overlay is only active when explicitly opened */
.sticky-nav.mobile-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(30px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1rem !important;
    z-index: 9999 !important;
    padding: 2rem 1rem !important;
    margin: 0 !important;
    overflow-y: auto !important;
}

.sticky-nav-btn {
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: clamp(0.25rem, 0.8vw, 0.5rem) clamp(0.5rem, 1.5vw, 1rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: clamp(0.65rem, 1vw, 0.85rem);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.sticky-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.sticky-nav-btn:hover::before,
.sticky-nav-btn.active::before {
    left: 0;
}

.sticky-nav-btn:hover,
.sticky-nav-btn.active {
    color: white;
    /* No scaling on active */
}

.sticky-nav-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    min-width: 80px !important;
    text-align: center !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

.sticky-nav-register:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3) !important;
}

.sticky-nav-download {
    background: var(--primary-gradient) !important;
    color: white !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.sticky-nav-download:hover {
    background: var(--secondary-gradient) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3) !important;
}

.sticky-nav-download {
    background: var(--primary-gradient) !important;
    color: white !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Hamburger Menu */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 10000;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
}

/* Show hamburger menu on smaller screens */
@media (max-width: 1300px) {
    .hamburger-btn {
        display: flex !important;
    }
}

/* Hide hamburger menu on larger screens */
@media (min-width: 1301px) {
    .hamburger-btn {
        display: none;
    }
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
#mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(30px);
    z-index: 9999;
    flex-direction: column;
    padding: 0;
}

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

.mobile-nav-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: scale(1.1);
}

.mobile-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
}

#mobile-nav.active {
    display: flex;
}

.mobile-nav-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-nav-btn:hover {
    background: var(--primary-gradient);
    color: white;
}

.mobile-nav-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.mobile-nav-register:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateX(5px) !important;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3) !important;
}

.mobile-nav-download {
    background: var(--primary-gradient) !important;
    color: white !important;
    font-weight: 600 !important;
}

.mobile-nav-download:hover {
    background: var(--secondary-gradient) !important;
    transform: translateY(-2px) !important;
}

.sticky-nav.mobile-open .sticky-nav-btn {
    font-size: 1rem !important;
    padding: 0.75rem 1.5rem !important;
    color: var(--text-primary) !important;
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 8px !important;
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.sticky-nav.mobile-open .sticky-nav-btn:hover {
    background: var(--primary-gradient) !important;
    color: white !important;
}

.sticky-nav.mobile-open .sticky-nav-download {
    background: var(--primary-gradient) !important;
    color: white !important;
    font-weight: 600 !important;
}

.sticky-nav.mobile-open .sticky-nav-download:hover {
    background: var(--secondary-gradient) !important;
    transform: translateY(-2px) !important;
}

/* Responsive behavior for smaller displays */
@media (max-width: 1400px) {
    .header-nav {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .nav-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        max-width: 110px;
    }
    
    .sticky-nav-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 1200px) {
    .header-nav {
        gap: 0.4rem;
        margin-top: 1.2rem;
    }
    
    .nav-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
        max-width: 100px;
    }
    
    .sticky-nav-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .header-nav {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }
    
    .nav-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .sticky-nav-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .header-nav {
        gap: 0.4rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: auto;
    }
    
    .sticky-nav-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 1300px) {
    .sticky-nav {
        display: none;
    }
    
    .sticky-nav.mobile-open {
        display: flex;
    }
    
    
    .header-nav .nav-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .download-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Mobile font size adjustments */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .card h4 {
        font-size: 1rem;
    }
    
    .card h5 {
        font-size: 0.9rem;
    }
    
    .card p {
        font-size: 0.85rem;
    }
    
    .nav-btn, .sticky-nav-btn, .mobile-nav-btn {
        font-size: 0.8rem;
    }
    
    .btn {
        font-size: 0.85rem;
    }
    
    .coming-soon-badge {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.7rem !important;
    }
    
    /* Additional mobile text size reductions */
    .card li {
        font-size: 0.85rem;
    }
    
    .alert {
        font-size: 0.85rem;
    }
    
    .code-block {
        font-size: 0.8rem;
    }
    
    .step-item p {
        font-size: 0.85rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}

/* Main content */
.main {
    padding: 2rem 0;
    padding-top: 6rem; /* Account for always-visible sticky header */
    position: relative;
}

.section {
    margin-bottom: 3rem;
    scroll-margin-top: 120px;
}

/* Removed problematic section overlay */

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    opacity: 0.6;
}

.section-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 3.5rem 0 2rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
    margin-right: 0.5rem;
}

.section-icon i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
}

/* FontAwesome badge styling */
.badge i {
    margin-right: 0.5rem;
    opacity: 0.9;
}

/* FontAwesome in headings */
h4 i, h5 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Enhanced Cards */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2.5rem;
    border: 1px solid var(--glass-border);
}

/* Removed problematic card overlays */

.card:hover {
    box-shadow: var(--shadow-glow);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

/* Removed rotating overlay */

.feature-card:hover {
    box-shadow: var(--shadow-glow);
    border-color: rgba(102, 126, 234, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon img {
    /* No scaling on hover */
    filter: drop-shadow(0 6px 12px rgba(102, 126, 234, 0.4));
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Steps and Lists */
.step-list {
    list-style: none;
    counter-reset: step-counter;
}

.step-item {
    counter-increment: step-counter;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 4.5rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInStep 0.8s ease forwards;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInStep {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-gradient);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-colored);
    line-height: 1;
    text-align: center;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: var(--shadow-colored);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: var(--shadow-glow);
    }
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Enhanced Tables */
.metadata-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-medium);
}

/* Mobile Table Container */
.mobile-table-container {
    display: none;
    margin: 2rem 0;
}

.mobile-table-item {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
    padding: 1rem;
}

.mobile-table-category {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-table-field {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mobile-table-standard {
    font-family: var(--font-mono);
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.mobile-table-description {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.metadata-table th,
.metadata-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: middle;
}

.metadata-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.metadata-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.6;
}

.metadata-table td {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.metadata-table tr:last-child td {
    border-bottom: none;
}

.metadata-table tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

.metadata-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.metadata-table tbody tr:nth-child(even):hover {
    background: rgba(102, 126, 234, 0.08);
}

/* Table cell content styling */
.metadata-table td:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

.metadata-table td:nth-child(3) {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin: 0.25rem 0;
    display: inline-block;
}

/* Enhanced Buttons */
.button {
    background: var(--primary-gradient);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

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

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

.button:hover {
    /* No movement on hover */
    box-shadow: var(--shadow-glow);
}

/* Coming Soon Section */
.coming-soon-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin: 4rem 0 0 0;
    padding: 4rem 0;
}

.coming-soon-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.coming-soon-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.coming-soon-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.coming-soon-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-badge i {
    font-size: 1rem;
}

.coming-soon-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.coming-soon-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--primary-gradient);
    color: white;
    border: none;
    cursor: pointer;
}

.coming-soon-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Email Signup Form */
.email-signup-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.signup-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.signup-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Mobile Coming Soon */
@media (max-width: 768px) {
    .coming-soon-section {
        padding: 2rem 0;
        margin: 2rem 0 0 0;
    }
    
    .coming-soon-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.5rem;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .coming-soon-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { 
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Scroll animations - SIMPLIFIED */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animations - DISABLED */
.loading {
    opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .header-nav {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        padding-left: 2.5rem;
    }

    /* Mobile table responsiveness - show mobile version, hide desktop */
    .desktop-table {
        display: none;
    }
    
    .mobile-table-container {
        display: block;
    }

    /* Fix other mobile overflow issues */
    .hero-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .code-block {
        font-size: 0.75rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .step-item {
        padding-left: 2.5rem;
    }

    .step-item::before {
        width: 2rem;
        height: 2rem;
        left: 0;
        font-size: 0.8rem;
    }

    /* Ensure no horizontal overflow - GLOBAL FIX */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

* {
    max-width: 100vw !important;
}
    
    .section,
    .card,
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Force all text to wrap */
    p, div, span, li, td, th, h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    /* Fix sticky header on mobile */
    .sticky-header {
        left: 1rem;
        right: 1rem;
        width: auto;
    }

    /* Fix text truncation and layout issues */
    .card {
        padding: 1rem;
        margin: 0.5rem 0;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
    }

    .feature-list li,
    .step-item {
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        line-height: 1.4;
        font-size: 0.9rem;
    }

    /* Fix footer issues */
    .footer {
        padding: 1rem;
        text-align: center;
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .footer-icon {
        height: 20px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        justify-content: center;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .footer-section li {
        margin-bottom: 0.3rem;
    }

    .footer-section a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding-top: 1rem;
    }

    .footer-bottom p {
        font-size: 0.7rem;
        margin: 0.3rem 0;
        word-wrap: break-word;
    }

    /* Ensure proper text wrapping */
    p, li, td, th {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Fix any garbled text issues */
    .container {
        word-break: normal;
        overflow-wrap: break-word;
    }

    /* Additional mobile text fixes */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
        word-wrap: break-word;
        text-align: center;
    }

    /* Center text elements for mobile */
    .section-title {
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }

    .feature-list {
        text-align: center;
    }

    .step-item {
        text-align: center;
        padding-left: 0;
        padding-top: 0.5rem;
    }

    /* Center icons and numbers above headings on mobile */
    .section-icon {
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .step-item::before {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 0.5rem auto;
        display: block;
        text-align: center;
    }

    .feature-icon {
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    /* Center all section titles and subtitles on mobile */
    .section-title {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .section-subtitle {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center section titles with icons */
    .section-title .section-icon {
        margin: 0 auto 0.5rem auto !important;
    }
    
    .section-subtitle .section-icon {
        margin: 0 auto 0.5rem auto !important;
    }
    
    /* Center card content on mobile */
    .card {
        text-align: center;
    }
    
    .card h3, .card h4, .card h5 {
        text-align: center;
    }
    
    /* Center feature items */
    .feature-item {
        text-align: center;
    }
    
    /* Center step titles and descriptions */
    .step-title {
        text-align: center;
    }
    
    .step-description {
        text-align: center;
    }
    
    /* Center images */
    .card img {
        margin: 0 auto;
        display: block;
    }
    
    /* Center buttons */
    .btn {
        margin: 0 auto;
        display: block;
    }
    
    /* Center lists */
    .card ul, .card ol {
        text-align: left;
        margin: 0 auto;
        max-width: 90%;
    }
    
    /* Center success messages and alerts */
    .alert, .alert-success, .alert-info, .alert-warning {
        text-align: center !important;
    }
    
    /* Center all headings with icons */
    h1, h2, h3, h4, h5, h6 {
        text-align: center !important;
    }
    
    /* Center feature grid items */
    .feature-grid {
        text-align: center;
    }
    
    .feature-item {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center all icons in feature items */
    .feature-item .feature-icon {
        margin: 0 auto 0.5rem auto !important;
    }
    
    /* Center step numbers more aggressively */
    .step-item::before {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto 0.5rem auto !important;
        display: block !important;
        text-align: center !important;
    }
    
    /* Center all images more aggressively */
    img {
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Center all buttons more aggressively */
    .btn, button {
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Center inline buttons */
    .btn-inline {
        display: inline-block !important;
        margin: 0 auto !important;
    }
    
    /* Center all text content */
    p, div, span {
        text-align: center !important;
    }
    
    /* Exception for lists - keep left aligned but centered in container */
    ul, ol, li {
        text-align: left !important;
        margin: 0 auto !important;
        max-width: 90% !important;
    }

    /* Remove cursor effects on mobile */
    .logo:hover {
        transform: none;
    }
    
    /* Disable cursor effects on mobile to prevent touch interference */
    * {
        cursor: default !important;
    }
    
    a, button, .nav-btn, .sticky-nav-btn, .mobile-nav-btn, .download-btn, .btn {
        cursor: pointer !important;
    }
    
    /* Remove any custom cursor elements that might still exist */
    .custom-cursor, .cursor-follower {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .badge:hover {
        transform: none;
    }

    .nav-btn:hover {
        transform: none;
    }

    .button:hover {
        transform: none;
    }

    /* Fix any potential font rendering issues */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    /* Ensure proper spacing for mobile */
    .main {
        padding: 0.5rem 0;
        padding-top: 6rem; /* Account for always-visible sticky header */
    }

    .section {
        margin-bottom: 1rem;
    }

    /* Reduce hero padding */
    .hero {
        padding: 6rem 0 2rem;
    }

    .hero-badges {
        margin: 1rem 0;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -2rem;
    right: -2rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* Make screenshot images look clickable and responsive */
img[src*="Main_Page.png"], 
img[src*="Camera_Manager.png"], 
img[src*="Lens_Manager.png"], 
img[src*="Film_Manager.png"] {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
    display: block;
}

img[src*="Main_Page.png"]:hover, 
img[src*="Camera_Manager.png"]:hover, 
img[src*="Lens_Manager.png"]:hover, 
img[src*="Film_Manager.png"]:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* FontAwesome Icon Styling */
.feature-icon i,
.section-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.feature-icon {
    margin-bottom: 1rem;
    text-align: center;
}

.section-icon {
    margin-right: 0.5rem;
    display: inline-block;
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Coming Soon Banner */
.coming-soon-banner {
    position: fixed;
    top: 20px;
    right: -40px;
    z-index: 1000;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 80px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: bannerPulse 2s ease-in-out infinite;
    display: none;
    pointer-events: none;
    white-space: nowrap;
}

.coming-soon-content {
    position: relative;
}

.coming-soon-text {
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes bannerPulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: rotate(45deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
}

/* Download Button Overlay */
.download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: rocketFloat 2s ease-in-out infinite;
}

.overlay-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overlay-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Show overlay when button is hovered */
.button-container:hover .download-overlay {
    display: flex;
}

/* Ensure cookie consent buttons maintain their styles */
.cookie-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: relative !important;
    overflow: hidden !important;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3) !important;
}

.cookie-btn-manage {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.cookie-btn-manage:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: none !important;
    box-shadow: none !important;
}

.cookie-btn-reject {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.cookie-btn-reject:hover {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile adjustments for coming soon banner */
@media (max-width: 768px) {
    .coming-soon-banner {
        top: 50px;
        right: -30px;
        padding: 4px 60px;
        font-size: 0.7rem;
    }
    
    .overlay-content {
        padding: 1.5rem;
    }
    
    .overlay-icon {
        font-size: 2.5rem;
    }
    
    .overlay-text {
        font-size: 1.3rem;
    }
    
    .overlay-subtext {
        font-size: 0.9rem;
    }
}

/* Coming Soon Modal Styles */
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
    overflow: hidden;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hard);
    border: 1px solid var(--glass-border);
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-email-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-email-signup-form .form-group {
    display: flex;
    flex-direction: column;
}

.modal-email-signup-form input {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-email-signup-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: var(--bg-card);
}

.modal-email-signup-form input::placeholder {
    color: var(--text-muted);
}

.modal-email-signup-form .btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.modal-email-signup-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.modal-email-signup-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.modal-signup-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.modal-signup-message.success {
    background: rgba(67, 233, 123, 0.1);
    border: 1px solid rgba(67, 233, 123, 0.3);
    color: #43e97b;
}

.modal-signup-message.error {
    background: rgba(240, 82, 82, 0.1);
    border: 1px solid rgba(240, 82, 82, 0.3);
    color: #f05252;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .modal-email-signup-form {
        gap: 1rem;
    }
    
    .modal-email-signup-form input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .modal-email-signup-form .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Coming Soon Badge - Inline Badge Style */
.coming-soon-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 15px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    margin-left: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4) !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

/* Registration Page Styles */
.register-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 6rem auto 2rem;
}

.register-container .logo {
    text-align: center;
    margin-bottom: 2rem;
}

.register-container .logo img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

.register-container .logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-container .logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

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

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.license-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.license-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.license-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.license-card.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.license-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.license-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.license-card .features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.license-card .features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.license-card .features li i {
    color: #10b981;
    margin-right: 0.5rem;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.error-message {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.success-message {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.loading {
    opacity: 1;
    pointer-events: auto;
}

.loading .btn {
    position: relative;
}

.loading .btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

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

.links {
    text-align: center;
    margin-top: 2rem;
}

.links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.links a:hover {
    color: white;
}

/* On Hold Message Styles */
.on-hold-message {
    text-align: center;
    padding: 2rem 0;
}

.on-hold-icon {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.on-hold-message h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.on-hold-message p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.login-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-section p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.back-to-home {
    margin-top: 1.5rem;
}

/* License Page Styles */
.purchase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.license-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.license-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.license-card.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.license-card.selected::before {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.license-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.license-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.license-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.license-features {
    list-style: none;
}

.license-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.license-features li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    margin-right: 0.5rem;
}

.purchase-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 2rem;
}

.payment-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-summary h3 {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Customer Login & Portal Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.login-card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 20px;
    padding: 3rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.portal-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 2rem;
}

.portal-header {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Registration Page Responsive */
@media (max-width: 768px) {
    .register-container {
        margin: 1rem;
        padding: 2rem;
    }
    
    .license-options {
        grid-template-columns: 1fr;
    }

    .on-hold-message {
        padding: 1rem 0;
    }

    .on-hold-icon {
        font-size: 3rem;
    }

    .login-section {
        padding: 1.5rem;
    }

    .purchase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .purchase-form {
        position: static;
    }

    .login-card {
        padding: 2rem;
    }

    .portal-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
