* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.container {
    text-align: center;
}

h1 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

p {
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.125rem;
}

.buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-audiophile {
    background: #191919;
    color: #fff;
}

.btn-audiophile:hover {
    background: #d87d4a;
    transform: scale(1.05);
}

.btn-bonbonbon {
    background: #db4d9a;
    color: #fff;
}

.btn-bonbonbon:hover {
    background: #c63a85;
    transform: scale(1.05);
}

.btn-Chronicle {
    background: #00BFA6;
    color: #fff;
}

.btn-Chronicle:hover {
    background: #00ad96;
    transform: scale(1.05);
}

.btn-starter {
    background: #0066cc;
    color: #fff;
}

.btn-starter:hover {
    background: #0052a3;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.95rem;
    }

    .buttons {
        gap: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}
