:root {
    --primary-red: #e31e24;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-main: #444444;
    --text-muted: #666666;
    --radius: 30px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --border-light: 1px solid #eeeeee;
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.clown-nose {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 600;
}

section {
    margin-bottom: 2.5rem;
}

.mission-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: var(--border-light);
    text-align: left;
}

.mission-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mission-card p:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.philosophy {
    padding: 1rem;
}

.albums {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.album-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: scale(1.02);
}

.album-info {
    text-align: center;
}

.album-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-spotify {
    background-color: #1DB954;
    color: white;
}

.btn-spotify:hover {
    background-color: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.3);
}

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

.btn-apple {
    background-color: #FA243C;
    color: white;
}

.btn-apple:hover {
    background-color: #d61e32;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 36, 60, 0.3);
}

.usage-tip {
    background: #fff4f4;
    padding: 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    color: #b3161b;
    font-weight: 600;
}

.who-box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: var(--border-light);
    text-align: left;
}

.info-group {
    margin-bottom: 2rem;
}

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

.info-group h3 {
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: "•";
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

footer {
    margin-top: 4rem;
    padding-bottom: 4rem;
}

footer p {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-coffee {
    background-color: #FFDD00;
    color: #000000;
    margin-bottom: 2rem;
}

.btn-coffee:hover {
    background-color: #ffea00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 221, 0, 0.3);
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-card {
    padding: 4rem 1rem;
    margin-bottom: 4rem;
    text-align: center;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 600;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-item {
    background: #ffffff;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-label-top {
    font-size: 0.8rem;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.1;
}

.stat-unit {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.4rem;
    font-weight: 600;
}

.stats-footer {
    max-width: 600px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    color: var(--text-main);
    font-size: 1.1rem;
    border-top: 1px solid #eee;
}

.stats-footer p {
    margin-bottom: 0.5rem;
}

.bold-thankyou {
    font-size: 1.3rem;
    font-weight: 800;
    color: #cca300;
    margin-top: 1rem !important;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .mission-card,
    .who-box,
    .album-card,
    .stats-card {
        padding: 1.5rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-item {
        width: 140px;
        height: 140px;
    }

    .stat-value {
        font-size: 1.6rem;
    }
}