* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('images/30.gif') repeat;
    background-size: auto;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
.header {
    background: linear-gradient(135deg, #4a91e200 0%, #3579bd00 100%);
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
}

.header-banner {
    max-width: 1155px;
    margin: 0 auto;
    padding: 30px 20px;
    background: url('images/headerbgwinter.png') no-repeat center;
    background-size: cover;
    position: relative;
}

/* Reset Countdown Timer - GTA V Style (Subtiel) */
.reset-countdown {
    position: absolute;
    top: 10px;
    right: 20px;
    background: rgba(0, 0, 0, 0.4);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.reset-countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: scanline 4s infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.countdown-icon {
    font-size: 14px;
    color: #FFD700;
    opacity: 0.8;
}

.countdown-label {
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: rgba(255, 215, 0, 0.9);
    letter-spacing: 0.8px;
    font-size: 10px;
}

.countdown-time {
    font-family: 'Courier New', 'Consolas', monospace;
    font-weight: 700;
    font-size: 13px;
    color: #FFD700;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.4);
    min-width: 75px;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    padding: 3px 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.reset-countdown:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Warning state - minder dan 24 uur */
.reset-countdown.countdown-warning {
    border-color: rgba(255, 165, 0, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

.reset-countdown.countdown-warning .countdown-time {
    color: #FFA500;
    border-color: rgba(255, 165, 0, 0.3);
}

/* Urgent state - minder dan 1 uur */
.reset-countdown.countdown-urgent {
    border-color: rgba(255, 140, 0, 0.5);
    background: rgba(20, 0, 0, 0.5);
}

.reset-countdown.countdown-urgent .countdown-time {
    color: #FFA500;
    border-color: rgba(255, 140, 0, 0.4);
    animation: time-urgent-subtle 1.5s infinite;
}

@keyframes time-urgent-subtle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    position: relative;
    justify-content: space-between;
}

.header-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.main-nav {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
}

.nav-item {
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(146 146 146 / 67%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
    display: inline-block;
}

.nav-item:hover {
    background: rgba(128, 128, 128, 0.781);
    border-color: rgba(255, 255, 255, 0.466);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-item.active {
    background: #4caf50;
    border-color: #45a049;
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    font-weight: 700;
}

.header-auth {
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-auth a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(146 146 146 / 67%);
    margin: 0 2px;
    display: inline-block;
}

.header-auth a:hover {
    background: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1155px;
    margin: 20px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    background: rgba(129, 129, 129, 0.589);
    border-radius: 8px;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 8px;
}

/* FiveM Servers */
.retros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.retro-card {
    background: url('images/cards.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.retro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.retro-card:hover .btn-cta {
    transform: scale(1.05);
}

.retro-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: transparent;
}

.retro-img {
    display: none;
}

.retro-content {
    padding: 25px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.retro-name {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.retro-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.retro-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-vote {
    padding: 6px 12px;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
}

.btn-vote:hover {
    background: #f57c00;
}

.btn-small {
    padding: 6px 12px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.btn-cta {
    padding: 12px 24px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #45a049 0%, #388e3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.6);
}

/* Content Sections */
.content-section {
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    color: #333;
}

.more-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.more-link:hover {
    text-decoration: underline;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-image {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.news-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
}

.news-placeholder {
    font-size: 14px;
    opacity: 0.8;
}

.news-content {
    padding: 15px;
}

.news-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.news-content p {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: #999;
    flex-wrap: wrap;
}

.category {
    background: #e3f2fd;
    padding: 2px 8px;
    border-radius: 12px;
    color: #1976d2;
}

.likes {
    color: #e91e63;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.event-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
}

.event-image {
    height: 120px;
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.event-content {
    padding: 15px;
}

.event-content h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.event-content p {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-time {
    font-size: 11px;
    color: #999;
}

.btn-go {
    padding: 6px 12px;
    background: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.btn-go.active {
    background: #4caf50;
    color: white;
}

.btn-join {
    padding: 12px 24px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

/* Furnis Grid */
.furnis-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.furni-item {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
}

.furni-placeholder {
    font-size: 12px;
    color: #666;
}

.furni-q {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0,0,0,0.5);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.furni-likes {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Search Bar */
.search-bar {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

.search-btn {
    padding: 8px 15px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Sidebar Sections */
.sidebar-section {
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-input {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.3s, background 0.3s;
}

.login-input:focus {
    outline: none;
    border-color: #4caf50;
    background: white;
}

.login-btn {
    padding: 8px 16px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.login-btn:hover {
    background: #45a049;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.login-links {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 5px;
}

.login-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.login-link:hover {
    text-decoration: underline;
    color: #357abd;
}

/* Spotlight */
.spotlight {
    background: url('images/promotie.jpg') no-repeat center center;
    background-size: cover;
    padding: 0;
    border-radius: 8px;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
    animation: spotlightPulse 3s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7), 0 0 20px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0), 0 0 30px rgba(76, 175, 80, 0.5);
    }
}

.spotlight-content {
    padding: 20px;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Gradient overlay onderaan met animatie */
.spotlight-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Shimmer effect over de hele sectie */
.spotlight-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Spotlight Slideshow */
.spotlight-slider {
    position: relative;
    width: 100%;
    min-height: 200px;
}

.spotlight-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.spotlight-slide.active {
    display: block;
    opacity: 1;
}

/* Navigatie pijlen */
.spotlight-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #4caf50;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10;
    transition: all 0.3s ease;
}

.spotlight-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.spotlight-prev {
    left: 10px;
}

.spotlight-next {
    right: 10px;
}

/* Slide indicators (dots) */
.spotlight-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.spotlight-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.spotlight-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.spotlight-dot.active {
    background: white;
    width: 25px;
    border-radius: 5px;
}

.btn-join-small {
    padding: 8px 16px;
    background: white;
    color: #4caf50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: buttonPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(76, 175, 80, 0.6);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

.btn-join-small:hover {
    background: #f0f0f0;
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.5);
}

.btn-join-small:active {
    transform: scale(0.98);
}

/* Recent Reactions */
.reaction-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.reaction-post {
    display: flex;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.reaction-post:last-child {
    border-bottom: none;
}

.reaction-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.reaction-content {
    flex: 1;
}

.reaction-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.reaction-username {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.reaction-time {
    font-size: 11px;
    color: #999;
}

.reaction-text {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .retros {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .furnis-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reset-countdown {
        top: 5px;
        right: 10px;
        padding: 5px 10px;
        font-size: 10px;
        gap: 5px;
    }
    
    .countdown-icon {
        font-size: 12px;
    }
    
    .countdown-label {
        display: none; /* Verberg label op kleine schermen */
    }
    
    .countdown-time {
        font-size: 11px;
        min-width: 65px;
        padding: 2px 5px;
        letter-spacing: 0.8px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .main-nav {
        justify-content: center;
        width: 100%;
        gap: 8px;
    }
    
    .nav-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .header-auth {
        width: 100%;
        text-align: center;
    }
    
    .furnis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0);
    border-top: 1px solid #e0e0e000;
    margin-top: 40px;
    padding: 0;
}

.footer-content {
    max-width: 1155px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #333;
    text-decoration: underline;
}

.footer-separator {
    color: #000;
    font-size: 14px;
}

.footer-copyright {
    color: #000;
    font-size: 12px;
}

.footer-copyright p {
    margin: 0;
}

/* Sterrenrating styling */
.star-rating {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}

.star {
    font-size: 20px;
    line-height: 1;
    display: inline-block;
}

.star-filled {
    color: #ffc107;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.star-empty {
    color: #ddd;
}

/* Interactieve sterren input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 5px;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input .star-label {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    user-select: none;
}

.star-rating-input .star-label:hover,
.star-rating-input .star-label:hover ~ .star-label {
    color: #ffc107;
    transform: scale(1.1);
}

.star-rating-input input[type="radio"]:checked ~ .star-label {
    color: #ffc107;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
    transform: scale(1.1);
    animation: starPulse 0.3s ease;
}

.star-rating-input input[type="radio"]:checked ~ .star-label ~ .star-label {
    color: #ffc107;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Alle sterren tot en met de geselecteerde moeten geel zijn */
.star-rating-input input[type="radio"]:checked ~ .star-label,
.star-rating-input input[type="radio"]:checked ~ .star-label ~ .star-label {
    color: #ffc107;
}

@keyframes starPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 2px solid #4a90e2;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1155px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.cookie-banner-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #4caf50;
    color: white;
}

.cookie-btn-accept:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.cookie-btn-reject {
    background: #f44336;
    color: white;
}

.cookie-btn-reject:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(244, 67, 54, 0.3);
}

/* Responsive voor cookie banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* User Menu Dropdown */
.user-menu-wrapper {
    position: relative;
    display: inline-block;
}

.user-menu-trigger {
    background: rgba(146 146 146 / 67%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
    font-family: inherit;
}

.user-menu-trigger:hover {
    background: rgba(128, 128, 128, 0.781);
    border-color: rgba(255, 255, 255, 0.466);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.user-avatar-small {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.3);
    vertical-align: middle;
}

.notification-badge {
    background: #f44336;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.user-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: rgba(146 146 146 / 95%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
    padding: 4px;
}

.user-menu-dropdown.show {
    display: block;
}

.user-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
    border-radius: 6px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.user-menu-item:hover {
    background: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    color: white;
    transform: translateX(4px);
}

.user-menu-item span:first-child {
    font-size: 18px;
}

.notification-badge-small {
    background: #f44336;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    line-height: 1.3;
    margin-left: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.user-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 4px 8px;
}

/* Sluit dropdown bij klik buiten */
.user-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

/* GTA V Sectie Animaties */
.gta-v-section {
    background: url('images/koopgta.jpg') no-repeat center center !important;
    background-size: cover !important;
    border: 2px solid #5a67d8 !important;
    border-radius: 4px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    animation: gtaPulse 2s ease-in-out infinite, gtaFloat 3s ease-in-out infinite !important;
    box-shadow: 0 4px 15px rgba(90, 103, 216, 0.4) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    padding: 20px !important;
}

.gta-v-section:hover {
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(90, 103, 216, 0.8) !important;
}

.gta-v-content {
    position: relative;
    z-index: 1;
}

.gta-v-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: gtaShine 3s infinite;
    z-index: 0;
    pointer-events: none;
}

.gta-v-title {
    color: white !important;
    margin-bottom: 10px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    animation: gtaTitlePulse 2s ease-in-out infinite !important;
    display: inline-block;
}

.gta-v-text {
    margin-bottom: 15px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 13px !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

.gta-v-button {
    width: 100% !important;
    background: white !important;
    color: #667eea !important;
    font-weight: bold !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    animation: gtaButtonPulse 2s ease-in-out infinite !important;
    border: none !important;
    padding: 12px !important;
    cursor: pointer !important;
}

.gta-v-button:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.7) !important;
    background: #f0f0f0 !important;
}

.gta-v-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 126, 234, 0.5),
        transparent
    );
    animation: gtaButtonShine 2.5s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes gtaPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(90, 103, 216, 0.4);
        border-color: #5a67d8;
    }
    50% {
        box-shadow: 0 8px 30px rgba(90, 103, 216, 0.8);
        border-color: #667eea;
    }
}

@keyframes gtaFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes gtaShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes gtaTitlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes gtaButtonPulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.7);
    }
}

@keyframes gtaButtonShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

