/* Form Container */
:root {
    --primary-color: #FF2D55;
    --primary-hover: #ff4d6d;
    --text-primary: #f8f9fa;
    --text-secondary: #e9ecef;
    --text-muted: #adb5bd;
    --text-labels: #e9ecef;
    --bg-light: #1a1a1a;
    --bg-section: #2d2d2d;
    --bg-input: #3d3d3d;
    --border-color: #404040;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.2);
}

body {
    background-color: #121212;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.form-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 3rem;
    padding-top: 120px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border-color);
}

.single-page-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.single-page-form h1 {
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    text-align: center;
    display: inline-block;
    background: linear-gradient(90deg, 
        #FF0000, 
        #FF7F00, 
        #FFFF00, 
        #00FF00, 
        #0000FF, 
        #4B0082, 
        #8B00FF
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 600% 600%;
    animation: rainbow 8s ease infinite;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

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

.single-page-form .subtitle {
    color: var(--text-muted);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.form-section {
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.8rem;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section:hover {
    background: #333;
    border-color: #444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.form-section h3 {
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-labels);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.form-group .required {
    color: #ff3860;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--bg-input);
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

/* Style select dropdown arrow */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23adb5bd' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.658l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 12px;
    padding-right: 2.5rem;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus,
.form-group select:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.4rem;
    color: #888;
    font-size: 0.85rem;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.15s ease;
    margin-bottom: 0.5rem;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: #555;
}

.radio-option input[type="radio"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
}

.radio-label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 0, 92, 0.3);
}

/* Success Message */
.success-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.success-content {
    max-width: 600px;
    width: 100%;
    background: var(--bg-section);
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.success-animation {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4BB543;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0 0 0 #4BB543;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0 0 0 100vh #4BB543; }
}

.success-content h2 {
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4BB543, #5cff51);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.success-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.success-subtext {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.next-steps {
    background: rgba(75, 181, 67, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
    border-left: 4px solid #4BB543;
}

.next-steps h3 {
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.steps-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4BB543;
    font-weight: bold;
}

.social-share {
    margin-top: 2.5rem;
}

.social-share p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-button {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.social-button i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.social-button.twitter {
    background: #1DA1F2;
    color: white;
}

.social-button.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.success-message h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-message p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        margin: 1rem;
        padding: 1.5rem;
        padding-top: 100px;
    }
    
    .form-section {
        padding: 1.25rem;
    }
    
    .single-page-form h1 {
        font-size: 1.8rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: none;
    }
}

@media (min-width: 768px) {
    .form-container {
        padding: 3rem;
        margin-top: 2rem;
    }
}

/* Progress Steps */
.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem auto 4rem;
    max-width: 500px;
    padding: 0 1rem;
    counter-reset: step;
}

.progress-container::before {
    content: '';
    position: absolute;
    background: var(--border-color);
    top: 50%;
    left: 1rem;
    right: 1rem;
    transform: translateY(-50%);
    height: 6px;
    z-index: 1;
    border-radius: 3px;
}

.progress {
    position: absolute;
    background: var(--primary-color);
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    height: 6px;
    width: 0%;
    z-index: 2;
    transition: 0.4s ease;
    border-radius: 3px;
}

.step {
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.step::after {
    content: attr(data-step);
    position: absolute;
    top: 100%;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.step[data-step="1"]::after { content: 'Email'; }
.step[data-step="2"]::after { content: 'Your Gear'; }
.step[data-step="3"]::after { content: 'Experience'; }

.step.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(255, 0, 85, 0.2);
}

.step.completed {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* Add labels for step numbers */
.step-label {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.2);
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-group.vertical {
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 0.5rem 0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.radio-option input[type="radio"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    accent-color: var(--primary-color);
}

.radio-option span {
    flex: 1;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.cta-button {
    flex: 1;
    text-align: center;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: rgba(255, 0, 85, 0.1);
}

/* Success Message */
#success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00c853;
    margin: 0 auto 1.5rem;
    animation: bounceIn 0.6s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    75% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* Base Styles */
:root {
    /* Dark Theme with Retro Rainbow Accents */
    --primary-color: #FF0055; /* Vivid Pink */
    --secondary-color: #00F0FF; /* Electric Cyan */
    --accent-color: #9D4EDD; /* Lighter Purple */
    --accent-2: #00FFCC; /* Turquoise */
    --accent-3: #FF9E00; /* Brighter Orange */
    --accent-4: #FF00FF; /* Magenta */
    --accent-5: #39FF14; /* Neon Green */
    
    /* Dark theme colors */
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --card-bg: #1A1A1A;
    --text-color: #E0E0E0;
    --text-muted: #A0A0A0;
    --light-text: #FFFFFF;
    --background: var(--bg-dark);
    --light-gray: #2A2A2A;
    --border-color: #333333;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    color: #495057;
    font-size: 1.1rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Header - Simplified for form page */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    margin-right: auto;
    display: inline-block;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Hide navigation on form page */
header nav {
    display: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 4px;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 10px 5px;
        align-items: stretch;
    }
    
    .logo {
        text-align: center;
        margin-bottom: 10px;
        font-size: 1.6rem;
    }
    
    nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        margin: 0 auto;
        max-width: 400px;
    }
    
    nav a {
        text-align: center;
        padding: 8px 5px;
        font-size: 0.8rem;
        white-space: normal;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        border: 1px solid var(--border-color);
        border-radius: 6px;
    }
    
    .hero {
        padding-top: 160px;
        padding-bottom: 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem 1rem;
    }
    
    .notify, .suggest {
        padding: 60px 0;
    }
    
    .notify-form, .suggest-form {
        padding: 0 15px;
    }
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-4), var(--accent-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 40px;
    text-align: center;
    background: linear-gradient(
        135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(15, 15, 15, 0.9) 100%
    ), 
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNMzAgMTVjOC4yODQgMCAxNSA2LjcxNiAxNSAxNXMtNi43MTYgMTUtMTUgMTVTMjMgMzguMjg0IDIzIDMwczYuNzE2LTE1IDE1LTE1em0wIDVjLTUuNTIzIDAtMTAgNC40NzctMTAgMTBzNC40NzcgMTAgMTAgMTAgMTAtNC40NzcgMTAtMTAtNC40NzctMTAtMTAtMTB6IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZjAwNTUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
    position: relative;
    overflow: hidden;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    max-width: 800px;
    padding: 0 20px;
}

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

.hero h1,
.hero p {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #495057;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-4) 0%, 
        var(--primary-color) 20%, 
        var(--accent-5) 40%, 
        var(--accent-2) 60%, 
        var(--accent-3) 80%,
        var(--accent) 100%
    );
    animation: gradientBG 15s ease infinite;
    background-size: 400% 400%;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        45deg, 
        var(--accent-4) 0%, 
        var(--primary-color) 25%, 
        var(--accent-5) 50%, 
        var(--accent-2) 75%, 
        var(--accent-3) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientBG 8s ease infinite;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Notify Section */
.notify {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.notify p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #495057;
}

.notify-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.notify-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.notify-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.privacy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d !important;
}

/* Suggest Section */
.suggest {
    padding: 100px 0;
    background: var(--bg-darker);
    text-align: center;
    position: relative;
    z-index: 1;
}

.suggest p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #495057;
}

.suggest-form {
    max-width: 700px;
    margin: 0 auto;
}

.suggest-form textarea {
    width: 100%;
    min-height: 150px;
    padding: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: var(--transition);
}

.suggest-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.suggest-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.suggest-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0A0A0A 0%, #000000 100%);
    color: var(--text-muted);
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-4) 0%, 
        var(--primary-color) 20%, 
        var(--accent-5) 40%, 
        var(--accent-2) 60%, 
        var(--accent-3) 80%,
        var(--accent) 100%
    );
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

footer p {
    color: #adb5bd;
    margin-bottom: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #6c757d;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .notify-form input[type="email"],
    .notify-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav {
        margin-top: 1rem;
    }
    
    nav a {
        margin: 0 0.8rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
