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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #000000;
    padding: 40px 20px;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
}

.hero-title {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 40px;
}

.title-the {
    display: block;
    color: #ffffff;
}

.title-booze {
    display: block;
    color: #d63031;
}

.title-breakup {
    display: block;
    color: #ffffff;
}

.hero-line {
    width: 100px;
    height: 3px;
    background-color: #d63031;
    margin: 30px auto 40px;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #cccccc;
    font-weight: 300;
    line-height: 1.8;
}

/* About Section */
.about {
    background-color: #000000;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.about-content {
    max-width: 900px;
    text-align: center;
}

.about-intro {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-intro em {
    font-style: italic;
}

.about-highlight {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    color: #d63031;
    font-style: italic;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-text {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.8;
    font-weight: 300;
}

/* Signup Section */
.signup {
    background-color: #000000;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.signup-wrapper {
    width: 100%;
    max-width: 1200px;
}

.signup-container {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.signup-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.signup-content p {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.6;
}

.signup-content em {
    font-style: italic;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-form input {
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.signup-form input::placeholder {
    color: #888888;
}

.signup-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #d63031;
}

.signup-button {
    padding: 16px 20px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.signup-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.signup-button:active {
    transform: translateY(0);
}

/* Success Page */
.success-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #000000;
    padding: 40px 20px;
}

.success-content {
    text-align: center;
    max-width: 800px;
}

.success-heading {
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.success-subheading {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
}

.success-description {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.8;
}

.success-description em {
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 40px;
    text-align: center;
}

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

.footer-trademark {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.trademark {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

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

.social-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #d63031;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.footer p {
    color: #888888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about {
        padding: 60px 20px;
    }

    .about-highlight {
        font-size: 1.25rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .signup-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .signup-content h2 {
        font-size: 1.5rem;
    }

    .signup-content p {
        font-size: 1rem;
    }

    .success-heading {
        font-size: 2.5rem;
    }

    .success-subheading {
        font-size: 1.25rem;
    }

    .social-links {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .about {
        padding: 40px 15px;
    }

    .signup {
        padding: 40px 15px;
    }

    .signup-container {
        padding: 30px 15px;
    }

    .success-page {
        padding: 20px;
    }

    .success-heading {
        font-size: 2rem;
    }

    .success-subheading {
        font-size: 1.1rem;
    }

    .success-description {
        font-size: 1rem;
    }

    .footer {
        padding: 40px 15px 30px;
    }

    .social-links {
        gap: 25px;
    }
}