html,
body {
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", Trebuchet, Arial, sans-serif;
}

.topmuziek-header {
    height: 90px;
    background: #fff;
}

.topmuziek-header-content {
    width: calc(100% - 120px);
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.topmuziek-logo {
    width: 100px;
    height: auto;
}

.topmuziek-hero {
    min-height: 850px;
    background: #612019;
}

.topmuziek-hero-content {
    width: calc(100% - 120px);
    max-width: 1400px;
    min-height: 850px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
}

.topmuziek-hero-text {
    width: 500px;
    flex-shrink: 0;
    text-align: center;
}

    .topmuziek-hero-text h1 {
        margin: 0 0 35px;
        color: #FF8811;
        font-size: 50px;
        font-weight: 600;
        line-height: 1.3;
    }

        .topmuziek-hero-text h1:last-child {
            margin-bottom: 0;
        }

.topmuziek-hero-images {
    width: 600px;
    height: 600px;
    flex-shrink: 0;
    margin-left: 20px;
}

.topmuziek-carousel {
    position: relative;
    width: 600px;
    height: 600px;
}

.topmuziek-carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
}

    .topmuziek-carousel-image.active {
        opacity: 1;
    }

.topmuziek-signup {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.topmuziek-email {
    width: 260px;
    height: 54px;
    padding: 0 18px;
    border: 2px solid #FF8811;
    border-radius: 6px;
    background: #fff;
    font-family: "Trebuchet MS", Trebuchet, Arial, sans-serif;
    font-size: 18px;
    outline: none;
    box-sizing: border-box;
}

.topmuziek-signup-button {
    height: 54px;
    padding: 0 22px;
    border: 2px solid #FF8811;
    border-radius: 6px;
    background: #FF8811;
    color: #fff;
    font-family: "Trebuchet MS", Trebuchet, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

    .topmuziek-signup-button:hover {
        filter: brightness(1.08);
    }

.topmuziek-cards {
    background: #fff;
}

.topmuziek-cards-content {
    width: calc(100% - 120px);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    transform: translateY(-40px);
}

.topmuziek-card {
    flex: 1;
    min-height: 360px;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    text-align: center;
    box-sizing: border-box;
}

    .topmuziek-card h2 {
        margin: 0;
        font-size: 32px;
        color: #000;
    }
.topmuziek-card-icon {
    width: 100px;
    height: 100px;
    margin: -10px auto 20px;
    padding: 22px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    column-gap: 8px;
    row-gap: 4px;
    background: #FF8811;
    border-radius: 50%;
    box-sizing: border-box;
}

.topmuziek-ranking-number {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    text-align: right;
}

.topmuziek-ranking-line {
    height: 4px;
    background: #fff;
    border-radius: 2px;
}

.topmuziek-card p {
    margin: 24px 0 0;
    color: #000;
    font-size: 24px;
    line-height: 1.5;
}
.topmuziek-card-icon {
    width: 100px;
    height: 100px;
    margin: -10px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF8811;
    border-radius: 50%;
}

    .topmuziek-card-icon svg {
        width: 62px;
        height: 62px;
        fill: #fff;
    }

    .topmuziek-card-icon text {
        fill: #fff;
        font-family: "Trebuchet MS", Trebuchet, Arial, sans-serif;
        font-size: 16px;
        font-weight: bold;
    }
@media (max-width: 768px) {
    .topmuziek-header-content,
    .topmuziek-hero-content,
    .topmuziek-cards-content {
        width: calc(100% - 40px);
    }

    .topmuziek-hero-content {
        min-height: auto;
        flex-direction: column;
        gap: 40px;
        padding: 60px 0 80px;
        box-sizing: border-box;
    }

    .topmuziek-hero-text {
        width: 100%;
    }

    .topmuziek-hero-images {
        width: 100%;
        height: auto;
        margin-left: 0;
    }

    .topmuziek-carousel {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .topmuziek-cards-content {
        flex-direction: column;
    }
}
.topmuziek-hero-text h1 {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1.25;
}

.topmuziek-signup {
    width: 100%;
    flex-direction: column;
    gap: 12px;
}

.topmuziek-email,
.topmuziek-signup-button {
    width: 100%;
}
.topmuziek-header {
    height: 80px;
}

.topmuziek-header-content {
    justify-content: center;
}
.topmuziek-card {
    min-height: 0;
    padding: 32px 24px;
}

    .topmuziek-card h2 {
        font-size: 28px;
    }

    .topmuziek-card p {
        font-size: 20px;
        line-height: 1.45;
    }