* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121214;
    color: #ffffff;
    line-height: 1.6;
}

/* Navigatie */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #18181b;
    border-bottom: 2px solid #00AA00;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #55FF55;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #efeff1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #55FF55;
}

/* Containers */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.card {
    background: #1f1f23;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #2d2d35;
}

/* Stream Section */
.stream-section {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
    text-align: center;
}

.stream-section h2 {
    margin-bottom: 15px;
    color: #9146FF;
}

.stream-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 verhouding */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000;
}

.stream-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* SMP Card */
.smp-card {
    background: linear-gradient(135deg, #1f1f23 0%, #0d2b14 100%);
    border: 1px solid #00AA00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.smp-info h2 {
    color: #55FF55;
    margin-bottom: 10px;
}

.ip-box {
    margin-top: 15px;
    background: #141416;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.ip-box button {
    background: #00AA00;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.ip-box button:hover {
    background: #55FF55;
    color: #000;
}

.btn-smp {
    background: #00AA00;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-smp:hover {
    background: #55FF55;
    color: #000;
}

/* Clips Grid */
.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.clip-card {
    background: #1f1f23;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2d2d35;
}

/* Socials & Footer */
footer {
    background: #18181b;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid #2d2d35;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.twitch { background: #9146FF; }
.discord { background: #5865F2; }
.youtube { background: #FF0000; }
.tiktok { background: #000000; border: 1px solid #333; }

.copyright {
    color: #adadb8;
    font-size: 14px;
}

.badge-live {
    background-color: #e50914;
    color: white;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 5px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: bold;
    display: inline-block;
}

.hidden {
    display: none !important;
}