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

/* CSS Variables for theming */
:root {
    /* Light mode colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f0f0;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-inverse: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
    --shadow-modal: rgba(0, 0, 0, 0.3);
    --hero-gradient-start: #2d5a2d;
    --hero-gradient-end: #4a8c4a;
    --premium-bg-start: #fff8e1;
    --premium-bg-end: #fffef7;
    --premium-card-bg: #f9f9f9;
    --modal-overlay: rgba(0, 0, 0, 0.8);
    --button-hover: rgba(255, 255, 255, 0.3);
    --button-bg: rgba(255, 255, 255, 0.2);
    --legal-section-bg: #f8f9fa;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
}

/* Dark mode colors */
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #242424;
    --bg-tertiary: #2a2a2a;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --text-inverse: #ffffff;
    --border-color: #404040;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.4);
    --shadow-heavy: rgba(0, 0, 0, 0.5);
    --shadow-modal: rgba(0, 0, 0, 0.7);
    --hero-gradient-start: #1a3a1a;
    --hero-gradient-end: #2a5a2a;
    --premium-bg-start: #2a2a2a;
    --premium-bg-end: #242424;
    --premium-card-bg: #303030;
    --modal-overlay: rgba(0, 0, 0, 0.9);
    --button-hover: rgba(255, 255, 255, 0.2);
    --button-bg: rgba(255, 255, 255, 0.1);
    --legal-section-bg: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Notification Banner */
.notification-banner {
    background: linear-gradient(90deg, var(--success-color), #66bb6a);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.notification-banner span {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    color: var(--text-inverse);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
}

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

/* Header Controls */
.header-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Social Links */
.instagram-link,
.x-link,
.discord-link,
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--button-bg);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--text-inverse);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.instagram-link:hover,
.x-link:hover,
.discord-link:hover,
.theme-toggle:hover {
    background: var(--button-hover);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px) scale(1.1);
}

.instagram-link svg,
.discord-link svg,
.theme-toggle svg {
    width: 22px;
    height: 22px;
}

.x-link svg {
    width: 20px;
    height: 20px;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--button-bg);
    border: 2px solid rgba(255,255,255,0.3);
}

.theme-icon {
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(180deg);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-button {
    background: var(--button-bg);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--text-inverse);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lang-button:hover {
    background: var(--button-hover);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.current-flag {
    font-size: 20px;
}

.current-lang {
    font-weight: 600;
}

.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--bg-primary);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-heavy);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    min-width: 180px;
    border: 1px solid var(--border-color);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: var(--bg-tertiary);
}

.lang-option .flag {
    font-size: 24px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 100px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
}

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

h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.8em;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    display: block;
    animation: countUp 2s ease;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.8;
}

/* App Store Buttons */
.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.app-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.app-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.3s ease;
}

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

.app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.app-button-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.app-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.app-button-text small {
    font-size: 0.8em;
    opacity: 0.8;
    font-weight: 400;
}

.app-button-text strong {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 2px;
}

/* Waitlist Section */
.waitlist-section {
    margin-top: 60px;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--text-inverse);
    font-weight: 600;
}

.waitlist-progress {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 40px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-bar {
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    height: 100%;
    transition: width 1s ease;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--text-inverse);
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.waitlist-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.waitlist-input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.waitlist-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.waitlist-button {
    padding: 18px 36px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.waitlist-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
}

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

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.waitlist-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.waitlist-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.benefit-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95em;
    font-weight: 500;
}

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
    animation: slideIn 0.5s ease;
}

.success-message.show {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

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

.section-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--hero-gradient-start);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3em;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(odd) .feature-icon {
    animation-delay: 0.5s;
}

.feature-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--hero-gradient-start);
    font-weight: 600;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1em;
}

/* Demo Section */
.demo-section {
    padding: 100px 20px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle at 30% 50%, rgba(76, 175, 80, 0.05), transparent),
                radial-gradient(circle at 70% 50%, rgba(139, 195, 74, 0.05), transparent);
}

.demo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.demo-card {
    background: var(--bg-secondary);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.demo-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.demo-card h3 {
    color: var(--hero-gradient-start);
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 600;
}

/* Trip Planner Styles */
.trip-inputs {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trip-field {
    flex: 1;
    min-width: 150px;
}

.trip-field label {
    display: block;
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.city-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-primary);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    font-weight: 500;
}

.city-selector:hover {
    border-color: var(--hero-gradient-start);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.city-flag {
    font-size: 30px;
}

.trip-arrow {
    font-size: 30px;
    color: var(--hero-gradient-start);
    animation: pulse 2s infinite;
}

.trip-result {
    animation: slideIn 0.5s ease;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.result-icon {
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
}

.route-steps {
    margin-bottom: 30px;
}

.route-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.route-step:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.step-number {
    background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.2em;
}

.step-content {
    flex: 1;
    line-height: 1.8;
}

.step-content strong {
    color: var(--hero-gradient-start);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.demo-cta {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.demo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
}

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

.demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Map Demo Styles */
/* Map Demo Styles */
#dispensaryMap {
    background: var(--bg-tertiary);
    position: relative;
    z-index: 1;
}

/* Leaflet Custom Styles */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.leaflet-popup-content {
    margin: 15px;
}

.leaflet-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.custom-div-icon {
    background: transparent;
    border: none;
}

.locate-button:hover {
    background: #f0f0f0 !important;
}

/* Dark mode map adjustments */
[data-theme="dark"] .leaflet-container {
    background: #1a1a1a;
}

[data-theme="dark"] .leaflet-popup-content-wrapper {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

[data-theme="dark"] .leaflet-popup-tip {
    background: var(--bg-secondary);
}

[data-theme="dark"] .locate-button {
    background: var(--bg-secondary) !important;
    color: var(--text-primary);
}

[data-theme="dark"] .locate-button:hover {
    background: var(--bg-tertiary) !important;
}

.map-legend {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.legend-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Use Case Stories */
.use-cases {
    max-width: 1200px;
    margin: 80px auto 0;
}

.use-cases-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--hero-gradient-start);
    margin-bottom: 50px;
    font-weight: 700;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.story-card {
    background: var(--bg-secondary);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--hero-gradient-start);
    opacity: 0.2;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.story-avatar {
    font-size: 60px;
    margin-bottom: 20px;
    filter: grayscale(0%);
}

.story-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.story-card p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.05em;
}

.story-rating {
    margin-top: 15px;
    color: #ffc107;
    font-size: 1.2em;
}

/* Premium Section */
.roles {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--premium-bg-start) 0%, var(--premium-bg-end) 100%);
    position: relative;
    transition: background 0.3s ease;
}

.premium-showcase {
    max-width: 1100px;
    margin: 0 auto;
}

.premium-main-card {
    background: var(--bg-primary);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px var(--shadow-light);
    border: 3px solid gold;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.premium-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: shimmer 3s linear infinite;
}

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

.premium-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.premium-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1em;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-icon {
    font-size: 100px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px rgba(255,215,0,0.5));
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.premium-title {
    font-size: 3em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.premium-subtitle {
    font-size: 1.4em;
    color: var(--text-secondary);
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.premium-feature {
    padding: 35px;
    background: var(--premium-card-bg);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.premium-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255,215,0,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-feature:hover::before {
    opacity: 1;
}

.premium-feature:hover {
    background: var(--bg-primary);
    border-color: gold;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.2);
}

.pf-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.premium-feature:nth-child(odd) .pf-icon {
    animation-delay: 0.5s;
}

.premium-feature h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.premium-feature p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05em;
}

.premium-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.premium-price {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-highlight {
    color: var(--hero-gradient-start);
    font-size: 1.4em;
    font-weight: 800;
}

.price-period {
    font-size: 0.7em;
    color: var(--text-secondary);
    font-weight: 400;
}

.price-separator {
    color: var(--text-secondary);
    font-size: 0.6em;
    margin: 0 15px;
}

.price-save {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.5em;
    font-weight: 600;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

.premium-tagline {
    font-size: 1.3em;
    color: var(--text-secondary);
    margin-top: 15px;
}

.premium-button {
    display: inline-block;
    margin-top: 30px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.premium-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.4);
}

/* International Section */
.international {
    padding: 100px 20px;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.country-flag {
    font-size: 80px;
    padding: 25px;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.country-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(76, 175, 80, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-flag:hover::before {
    opacity: 1;
}

.country-flag:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--hero-gradient-start);
}

/* Trust & Compliance Section */
.trust-section {
    padding: 100px 20px;
    background: var(--bg-primary);
    position: relative;
}

/* Age Gate Notice */
.age-gate-notice {
    background: linear-gradient(135deg, #ff5252, #ff1744);
    color: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    box-shadow: 0 20px 50px rgba(255, 23, 68, 0.3);
    position: relative;
    overflow: hidden;
}

.age-gate-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    animation: pulse 3s infinite;
}

.age-icon {
    font-size: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.2));
}

.age-gate-notice h3 {
    font-size: 2.5em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.age-gate-notice p {
    font-size: 1.2em;
    position: relative;
    z-index: 1;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.trust-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.trust-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-card:hover::after {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.trust-icon {
    font-size: 60px;
    margin-bottom: 25px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.trust-card:nth-child(odd) .trust-icon {
    animation-delay: 0.5s;
}

.trust-card h4 {
    color: var(--hero-gradient-start);
    margin-bottom: 20px;
    font-size: 1.6em;
    font-weight: 600;
}

.trust-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(76, 175, 80, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    margin-bottom: 80px;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--hero-gradient-start);
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.testimonial-header h5 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.2em;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.1em;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4caf50;
    font-size: 0.9em;
    font-weight: 600;
}

.testimonial-badge span:first-child {
    background: #4caf50;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Media Section */
.media-section {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border-radius: 30px;
}

.media-section h4 {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.4em;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.media-logo {
    padding: 20px 40px;
    background: var(--bg-primary);
    border-radius: 15px;
    font-weight: 700;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.media-logo:hover {
    color: var(--hero-gradient-start);
    border-color: var(--hero-gradient-start);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 40px;
    background: white;
    color: var(--hero-gradient-start);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--hero-gradient-start);
}

/* Footer */
.footer {
    background: var(--hero-gradient-start);
    color: var(--text-inverse);
    text-align: center;
    padding: 60px 20px 40px;
    transition: background-color 0.3s ease;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 50px;
    margin-bottom: 20px;
}

.footer h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.tech-stack {
    margin-top: 25px;
    font-size: 1em;
    opacity: 0.9;
}

.footer-links {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    color: var(--text-inverse);
    text-decoration: none;
    padding: 8px 15px;
    transition: all 0.3s ease;
    font-size: 1em;
    font-weight: 500;
    border-radius: 20px;
}

.footer-links a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.footer-links .separator {
    opacity: 0.5;
    font-size: 0.8em;
}

.footer-social {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Cookie Consent Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    box-shadow: 0 -10px 40px var(--shadow-medium);
    padding: 25px;
    z-index: 10000;
    display: none;
    border-top: 2px solid var(--border-color);
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 350px;
}

.cookie-text h3 {
    color: var(--text-primary);
    font-size: 1.5em;
    margin-bottom: 12px;
    font-weight: 700;
}

.cookie-text p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1.05em;
}

.cookie-text a {
    color: var(--hero-gradient-start);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.cookie-text a:hover {
    color: var(--hero-gradient-end);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 14px 30px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    color: white;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.cookie-btn-settings {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cookie-btn-settings:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    border-color: var(--hero-gradient-start);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.cookie-btn-reject:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal-overlay);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-container {
    background: var(--bg-primary);
    border-radius: 25px;
    max-width: 700px;
    max-height: 85vh;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 30px 80px var(--shadow-modal);
    animation: slideInModal 0.3s ease;
}

@keyframes slideInModal {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.cookie-settings-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-settings-header h2 {
    color: var(--text-primary);
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.cookie-settings-header p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05em;
}

.cookie-settings-body {
    padding: 40px;
    overflow-y: auto;
    max-height: 55vh;
}

.cookie-category {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    box-shadow: 0 5px 20px var(--shadow-light);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2em;
}

.cookie-category-icon {
    font-size: 1.4em;
}

.cookie-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: var(--hero-gradient-start);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.cookie-toggle.active .cookie-toggle-slider {
    transform: translateX(30px);
}

.cookie-category-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.6;
}

.cookie-settings-footer {
    padding: 25px 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--hero-gradient-start);
    text-decoration: none;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal-overlay);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    backdrop-filter: blur(5px);
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 25px;
    max-width: 800px;
    max-height: 85vh;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 30px 80px var(--shadow-modal);
    animation: slideInModal 0.3s ease;
}

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 2em;
    margin: 0;
    font-weight: 700;
}

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

.modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: 60vh;
    line-height: 1.8;
    color: var(--text-primary);
}

.modal-body h3 {
    color: var(--hero-gradient-start);
    margin: 30px 0 15px 0;
    font-size: 1.4em;
    font-weight: 600;
}

.modal-body h4 {
    color: var(--text-primary);
    margin: 25px 0 10px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.modal-body p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.modal-body li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    .subtitle { font-size: 1.4em; }
    .section-title { font-size: 2.2em; }
    .features-grid { grid-template-columns: 1fr; }
    .premium-features-grid { grid-template-columns: 1fr; }
    .premium-title { font-size: 2.2em; }
    .premium-main-card { padding: 40px 25px; }
    
    .premium-price {
        font-size: 1.8em;
        flex-direction: column;
        gap: 10px;
    }
    
    .price-separator {
        margin: 8px 0;
    }
    
    .header-controls {
        top: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .instagram-link,
    .x-link,
    .discord-link,
    .theme-toggle {
        width: 38px;
        height: 38px;
    }
    
    .instagram-link svg,
    .discord-link svg,
    .theme-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .x-link svg {
        width: 16px;
        height: 16px;
    }
    
    .lang-button {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .hero {
        padding: 80px 20px;
        min-height: auto;
    }
    
    .waitlist-section {
        margin-top: 40px;
        padding: 35px 20px;
    }
    
    .waitlist-title {
        font-size: 1.6em;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-button {
        width: 100%;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .trip-inputs {
        flex-direction: column;
    }
    
    .trip-arrow {
        transform: rotate(90deg);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .media-logos {
        gap: 20px;
    }
    
    .media-logo {
        padding: 15px 25px;
        font-size: 0.95em;
    }
    
    .footer-links {
        gap: 0;
    }
    
    .footer-links a {
        font-size: 0.9em;
        padding: 5px 10px;
    }
    
    .footer-links .separator {
        display: none;
    }
    
    .footer-links a::after {
        content: ' •';
        opacity: 0.5;
        margin-left: 8px;
    }
    
    .footer-links a:last-child::after {
        content: '';
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .app-button {
        min-width: 250px;
        width: 100%;
        max-width: 350px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .waitlist-benefits {
        grid-template-columns: 1fr;
    }
    
    .story-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.2em;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-button {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        font-size: 14px;
        padding: 12px 25px;
    }

    .cookie-settings-footer {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.6em;
    }
    
    .modal-body {
        padding: 25px;
        max-height: 70vh;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
