/* Algemene Apple-stijl aanpassingen */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.screen {
    display: none;
    text-align: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.active {
    display: block !important;
}

/* Apple-stijl knoppen */
button {
    background-color: #007AFF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    margin: 10px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0071E3;
}

h1 {
    font-size: 34px;
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 20px;
}

#character {
    width: 80px;
    height: 160px;
    margin: 0 auto 20px auto;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

#steve-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
}

#trampoline {
    width: 160px;
    height: 15px;
    background-color: #007AFF;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#jumpCount {
    font-size: 24px;
    margin: 20px;
    color: #1D1D1F;
}

#result {
    font-size: 48px;
    margin: 40px;
    font-weight: 700;
    color: #1D1D1F;
}

/* Vervang de secret-link styles met deze nieuwe hamburger styles */
.hamburger-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 16px;
    color: #999;
    text-decoration: none;
    opacity: 0.5;
    z-index: 1000;
    padding: 5px;
}

.hamburger-menu:hover {
    opacity: 1;
}

/* Update de secret-menu styles */
.secret-menu {
    position: fixed;
    top: 40px; /* Aangepast voor betere positionering onder hamburger */
    right: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
    min-width: 150px;
    padding: 5px 0;
}

.secret-menu button {
    width: 100%;
    padding: 8px 15px;
    text-align: left;
    background: none;
    color: #1D1D1F;
    border: none;
    font-size: 14px;
} 