@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
}

#root {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 0;
    box-sizing: border-box;
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.logo {
    width: 275px;
    height: auto;
    margin-bottom: 40px;
}

.text-content {
    max-width: 700px;
    margin: 0 auto;
}

.heading {
    font-size: 1.25rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 600;
}

.paragraph {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.team-farewell {
    margin-top: 30px;
    line-height: 1.8;
}

.play-button {
    background: linear-gradient(145deg, #2e2e2e, #1a1a1a);
    color: #f0f0f0;
    border: none;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.play-button:hover {
    background: linear-gradient(145deg, #3a3a3a, #2b2b2b);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.play-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.footer {
    margin-top: 60px;
    font-size: 0.75rem;
    color: #555;
    padding-top: 20px;
    border-top: 1px solid #333;
    width: 100%;
    max-width: 700px;
}

@media (max-width: 768px) {
    .logo {
        width: 200px;
        margin-bottom: 30px;
    }
    .heading {
        font-size: 1.1rem;
    }
    .paragraph {
        font-size: 0.9rem;
    }
    .footer {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 180px;
        margin-bottom: 20px;
    }
    .heading {
        font-size: 1rem;
    }
    .paragraph {
        font-size: 0.85rem;
    }
}