html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-image: url(assets/biobg.GIF);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blokk {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 16px;
    color: white;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.nagy {
    font-size: xx-large;
    display: block;
    margin-bottom: 1rem;
}

footer {
    margin-top: auto;
    padding-bottom: 2rem;
}

.alsoblokk {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    /* Reduced so your music player fits nicely */
    border-radius: 16px;
    color: white;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.gombpng {
    max-width: 50px;
    margin: 0px;
    padding: 0px;
    border-radius: 8px;
}

.gomb {
    background: none;
    border: 3px solid white;
    margin: 0px;
    padding: 0px;
    border-radius: 11px;
}
/* Container adjustments */
.alsoblokk {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.2rem 2rem; /* Adjusted padding */
    border-radius: 16px;
    color: white;
    max-width: 500px;
    width: 90%;
}

.player-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.track-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.9;
}

.track-title {
    font-weight: 500;
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Custom Controls styling */
.player-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.player-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.progress-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Sliders layout */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

.volume-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-icon {
    width: 18px;
    height: 18px;
    fill: white;
}

#volume-slider {
    width: 60px;
}
.blokk a {
    text-decoration: none !important;
    display: inline-block;
    margin: 0 5px; /* Adds a nice, even spacing between your buttons */
}