:root {
    --bg-gradient: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    margin-bottom: 15px;
    object-fit: cover;
}

h1 { margin: 10px 0 5px; font-size: 2.5rem; letter-spacing: 1px; }
.subtitle { color: rgba(255,255,255,0.7); margin-bottom: 30px; font-style: italic; }

.links-container { display: flex; flex-direction: column; gap: 15px; }

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
}

.link-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.link-btn i { margin-right: 10px; font-size: 1.3rem; }

/* Specifieke kleuren */
.btn-youtube { border-left: 4px solid #ff0000; }
.btn-twitch  { border-left: 4px solid #9146FF; }
.btn-kick    { border-left: 4px solid #53FC18; }
.btn-vods	 { border-left: 4px solid #5865F2; }

/* Footer Iconen */
.footer-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.icon-small {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
    transition: 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.icon-small:hover { color: white; transform: scale(1.2); }

/* Toast Popup */
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 100;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
    border: 1px solid rgba(255,255,255,0.1);
}

#toast.show { visibility: visible; opacity: 1; bottom: 50px; }

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}