body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.content {
    padding: 20px;
    text-align: center;
}

/* Desktop: verberg mobiele nav en ticker */
.bottom-nav,
.ticker-wrapper {
    display: none;
}

/* Mobiel */
@media (max-width: 768px) {
    body {
        padding-bottom: 120px; /* ruimte voor nav (40px) + ticker (40px + extra) */
    }

  .textBox {
    transform: translateY(-70px);
  }

    .bottom-nav {
        display: flex;
        position: fixed;
//      bottom: 40px; /* ruimte voor ticker onderin */
        bottom: 0px; /* ruimte voor ticker onderin */
        left: 0;
        right: 0;
        background-color: #D20A0A;
        justify-content: space-around;
        padding: 12px 0;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid white;
        z-index: 999;
    }

    .nav-item {
        color: white;
        text-decoration: none;
        text-align: center;
        flex: 1;
        font-size: 13px;
        font-weight: bold;
    }

    .nav-item:hover,
    .nav-item:active {
        background-color: #FFCC00;
        color: #000;
    }

    .nav-item .icon {
        display: block;
        font-size: 20px;
        margin-bottom: 4px;
    }
}