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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

.content {
    text-align: center;
}

/* Logo and Turntable Animation */
.logo {
    margin-bottom: 60px;
}

.turntable {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.platter {
    width: 100%;
    height: 100%;
    background: #30B3B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(48, 179, 184, 0.3);
}

.record {
    width: 70%;
    height: 70%;
    background: #E91E8C;
    border-radius: 50%;
    position: relative;
    animation: spin 8s linear infinite;
}

.record::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #1a1a2e;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tonearm {
    position: absolute;
    width: 50px;
    height: 3px;
    background: #F67854;
    top: 20px;
    right: -10px;
    transform-origin: right center;
    transform: rotate(-25deg);
    border-radius: 2px;
}

.tonearm::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #F67854;
    border-radius: 50%;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 10px;
}

.pronunciation {
    font-size: 14px;
    color: #30B3B8;
    font-weight: 500;
}

/* Tagline */
.tagline {
    margin-bottom: 50px;
}

.tagline h2 {
    font-size: 28px;
    font-weight: 600;
    color: #30B3B8;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtitle {
    font-size: 18px;
    color: #F67854;
    font-weight: 400;
}

/* Email Signup */
.signup {
    margin-bottom: 40px;
}

.cta {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto 15px;
}

input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #30B3B8;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    outline: none;
    transition: all 0.3s;
}

input[type="email"]:focus {
    border-color: #E91E8C;
    background: rgba(255, 255, 255, 0.1);
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #E91E8C;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background: #F67854;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.3);
}

button:active {
    transform: translateY(0);
}

.message {
    font-size: 14px;
    min-height: 20px;
}

.message.success {
    color: #30B3B8;
}

.message.error {
    color: #F67854;
}

/* Social Links */
.social {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.social a {
    color: #30B3B8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.social a:hover {
    color: #E91E8C;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    .tagline h2 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 16px;
    }

    form {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}
