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

:root {
    --primary-color: #a855f7;
    --secondary-color: #ff00ff;
    --bg-color: #0a0a0f;
    --text-color: #ffffff;
    --accent-gradient: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}

body.page-scroll {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.page-scroll .content {
    flex: 1;
    min-height: auto;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.hero {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

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

.title {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    line-height: 1;
}

.title-word {
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #ff00ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.title-word.highlight {
    background: linear-gradient(135deg, #ff00ff 0%, #a855f7 50%, #9333ea 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite reverse;
}

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

.tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--bg-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 60px rgba(168, 85, 247, 0.5);
    }
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 140px;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.material-icons.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Material Icons', sans-serif;
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.signup-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.venue-hero {
    max-width: 760px;
    margin: 0 auto;
}

.venue-intro {
    font-size: clamp(1rem, 3.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.venue-form {
    display: grid;
    gap: 1.25rem;
    max-width: 620px;
    margin: 0 auto 3rem;
}

.venue-form-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.95rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.venue-submit {
    justify-self: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: var(--accent-gradient);
    color: var(--bg-color);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.submit-btn:active {
    transform: scale(0.98);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.form-message {
    min-height: 1.5rem;
    font-size: 0.9rem;
    margin-top: -2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    color: #a855f7;
}

.form-message.error {
    color: #ff4444;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0.5;
    pointer-events: none;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-badge .badge-icon {
    font-size: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'Material Icons', sans-serif;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-small {
    font-size: 0.65rem;
    opacity: 0.7;
}

.badge-large {
    font-size: 1rem;
    font-weight: 600;
}

.venue-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.venue-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.25);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    text-align: center;
    z-index: 2;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
}

body.page-scroll .footer {
    position: static;
    margin-top: 2rem;
    background: transparent;
}

.footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

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

.social-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: #a855f7;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }

    .features {
        gap: 1rem;
    }

    .feature {
        min-width: 100px;
        padding: 1rem;
    }

    .material-icons.feature-icon {
        font-size: 2.3rem;
    }

    .signup-form {
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .content {
        padding-bottom: 3rem;
    }

    .venue-form {
        width: 100%;
    }

    .footer {
        position: static;
        padding: 2rem 1.5rem 1.5rem;
        background: transparent;
    }
}

@media (max-width: 480px) {
    .features {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .feature {
        min-width: 0;
        padding: 0.85rem 0.6rem;
    }

    .material-icons.feature-icon {
        font-size: 2.1rem;
    }

    .feature span {
        font-size: 0.75rem;
    }
}
