* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Zorg ervoor dat skip-links nooit zichtbaar zijn */
a[href="#main-content"],
.skip-link,
a.skip-link {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #D0D0D0;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Title Section */
.title-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 2px solid rgba(255,255,255,0.8);
    padding: 20px 40px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.main-title {
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-size: 48px;
    font-weight: normal;
    background: linear-gradient(135deg, #1565C0 0%, #FF8A65 50%, #FF7043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    white-space: nowrap;
}

/* MyAlbum & Videos Section Container */
.media-buttons-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* MyAlbum Section */
.myalbum-section {
    width: 100%;
    background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(255,138,101,0.3);
}

/* Videos Section */
.videos-section {
    width: 100%;
    background: linear-gradient(135deg, #7B1FA2 0%, #9C27B0 100%);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(156,39,176,0.3);
}

.myalbum-button {
    background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(255,138,101,0.4);
    text-decoration: none;
}

.myalbum-button:hover {
    background: linear-gradient(135deg, #FF7043 0%, #FF5722 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,138,101,0.5);
}

.album-icon {
    font-size: 20px;
}

.videos-button {
    background: linear-gradient(135deg, #7B1FA2 0%, #9C27B0 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(156,39,176,0.4);
    text-decoration: none;
}

.videos-button:hover {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156,39,176,0.5);
}

.video-icon {
    font-size: 20px;
}

.play-icon {
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Profiles Container */
.profiles-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

/* Profile Card */
.profile-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border: 3px solid #4FC3F7;
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(79,195,247,0.3);
}

.profile-info {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    flex-grow: 1;
    box-shadow: 0 4px 12px rgba(21,101,192,0.4);
}

.profile-name {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.profile-description {
    font-size: 16px;
    color: #64B5F6;
    font-weight: 500;
}

/* Profile Buttons */
.profile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-button {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #5D4037;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 3px 6px rgba(255,183,77,0.3);
    border: 1px solid rgba(255,183,77,0.2);
}

.profile-button:hover {
    background: linear-gradient(135deg, #FFE0B2 0%, #FFCC80 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255,183,77,0.4);
    color: #3E2723;
}

.profile-button i:first-child {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.profile-button span {
    flex-grow: 1;
    font-size: 15px;
    text-transform: lowercase;
    font-weight: 500;
}

.profile-button i:last-child {
    font-size: 14px;
    color: #FF8A65;
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.nav-button {
    background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255,138,101,0.4);
    border: none;
    font-weight: 500;
}

.nav-button:hover {
    background: linear-gradient(135deg, #FF7043 0%, #FF5722 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,138,101,0.5);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-buttons-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .profiles-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-title {
        font-size: 36px;
    }

    .profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-info {
        width: 100%;
        text-align: center;
    }

    .bottom-nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-button {
        width: 100%;
        text-align: center;
    }
}

