:root {
    --primary-blue: #007bff;
    --dark-bg: #0b0e14;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #00EAFF #000F23;
}

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #000F23;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #00EAFF;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.5), inset 0 0 5px rgba(0, 234, 255, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.8), 0 0 25px rgba(0, 234, 255, 0.4), inset 0 0 8px rgba(0, 234, 255, 0.5);
}

/* Horizontal scrollbar styling */
::-webkit-scrollbar-thumb:horizontal {
    background: #00EAFF;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.5), inset 0 0 5px rgba(0, 234, 255, 0.3);
}

::-webkit-scrollbar-thumb:horizontal:hover {
    background: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.8), 0 0 25px rgba(0, 234, 255, 0.4), inset 0 0 8px rgba(0, 234, 255, 0.5);
}

/* Corner (where vertical and horizontal scrollbars meet) */
::-webkit-scrollbar-corner {
    background: #000F23;
}

header {
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header.hvr-header {
    padding: 14px 6%;
    border: none;
}

nav, .hvr-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text, .hvr-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-text span, .hvr-logo-accent {
    color: var(--primary-blue);
}

nav ul, .hvr-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

nav ul li, .hvr-nav-links li {
    margin-left: 0;
}

nav ul li a, .hvr-nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover, .hvr-nav-links a:hover {
    color: var(--primary-blue);
}

.hvr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.hvr-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.btn-shop {
    background: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 5px;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.alphacoders.com/133/1339121.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-logo {
    width: 200px;
    filter: drop-shadow(0 0 15px var(--primary-blue));
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero h1 span {
    color: var(--primary-blue);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-primary:hover { transform: scale(1.05); }
.btn-secondary:hover { background: white; color: black; }

.server-status {
    margin-top: 40px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 10px #2ecc71;
}

.features {
    padding: 100px 10%;
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.features h2 span {
    color: var(--primary-blue);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
}

.card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 40px;
    opacity: 0.5;
    font-size: 0.9rem;
}

.live-stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.2);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
    min-width: 180px;
    transition: 0.3s ease;
}

.stat-card:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.stat-card.stat-online {
    border-color: rgba(0, 214, 143, 0.7);
}
.stat-card.stat-unknown {
    border-color: rgba(255, 190, 80, 0.7);
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-value {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 700;
}

.server-status {
    cursor: pointer;
    transition: 0.3s;
}
.server-status:hover {
    background: rgba(255, 255, 255, 0.2);
}
.socials {
    padding: 100px 10%;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f131a 100%);
}

.social-step {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.social-step.reverse {
    flex-direction: row-reverse;
}

.social-text {
    flex: 1;
}

.social-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.social-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 35px;
    max-width: 500px;
}
.docs-section {
    padding: 80px 10%;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.section-desc {
    margin-bottom: 40px;
    opacity: 0.7;
}

.docs-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.doc-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 123, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    max-width: 450px;
    text-align: left;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.doc-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.15);
}

.doc-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    background: rgba(0, 123, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.doc-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 900;
}

.doc-info p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 15px;
}

.doc-btn {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .doc-card {
        flex-direction: column;
        text-align: center;
    }
    
    /* Hero improvements */
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Features */
    .features {
        padding: 60px 20px;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    /* Socials */
    .socials {
        padding: 60px 20px;
    }
    
    .social-step {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .social-step.reverse {
        flex-direction: column !important;
    }
    
    .social-text h2 {
        font-size: 1.8rem;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
    }
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    text-decoration: none;
    color: white;
    padding: 12px 25px;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    background: linear-gradient(180deg, rgba(0,123,255,0.8), rgba(0,123,255,1));
    border-color: rgba(0, 123, 255, 0.5);
    border-top-color: rgba(100, 200, 255, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Afbeeldingen met een blauwe gloed */
.social-image {
    flex: 1;
    position: relative;
}

/* Afbeeldingen met de Havor Neon-glow */
.social-image {
    flex: 1;
    position: relative;
    perspective: 1000px; /* Geeft een subtiel diepte-effect */
}

.social-image img {
    width: 100%;
    border-radius: 24px;
    filter: grayscale(10%) brightness(0.9) contrast(1.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-image:hover img {
    filter: grayscale(0%) brightness(1.05) contrast(1.1);
    transform: scale(1.03) rotateY(-4deg) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 123, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.rules-page {
    background-color: var(--dark-bg);
}

.rules-hero {
    padding: 140px 10% 60px;
    text-align: center;
    background: linear-gradient(rgba(11, 14, 20, 0.8), rgba(11, 14, 20, 0.95)), url('https://images.alphacoders.com/133/1339121.png');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
}

.rules-hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 10px; }
.rules-hero h1 span { color: var(--primary-blue); }

.rules-container { padding: 60px 0; }

.rules-category { margin-bottom: 40px; }

.rules-category h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 123, 255, 0.1);
}

.rule-box {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid transparent;
    transition: 0.3s ease;
}

.rule-box:hover {
    border-left: 4px solid var(--primary-blue);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.rule-box h3 { color: #fff; margin-bottom: 8px; font-weight: 700; }
.rule-box p { opacity: 0.7; font-size: 0.95rem; }

.doc-wrap { max-width: 1200px; margin: 0 auto; padding: 30px 18px 60px; }
.doc-hero { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: 14px; padding: 22px 20px; margin-bottom: 16px; }
.doc-hero h1 { font-size: 28px; margin-bottom: 8px; }
.doc-hero p { opacity: .9; line-height: 1.5; }
.doc-toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin: 16px 0 18px; }
.doc-search { flex: 1; min-width: 260px; padding: 12px 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.25); color: #fff; outline: none; }
.doc-tags { display:flex; gap: 8px; flex-wrap: wrap; }
.doc-tags .tag { padding: 10px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color:#fff; cursor:pointer; }
.doc-tags .tag.active { border-color: rgba(0,123,255,.55); box-shadow: 0 0 0 3px rgba(0,123,255,.15); }
.doc-grid { display: grid; grid-template-columns: 270px 1fr; gap: 16px; }
.doc-nav { position: sticky; top: 18px; align-self: start; padding: 14px; border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); }
.doc-nav-title { font-weight: 700; margin-bottom: 10px; opacity: .95; }
.doc-nav a { display:block; padding: 8px 10px; border-radius: 10px; color: rgba(255,255,255,.92); text-decoration:none; opacity:.9; }
.doc-nav a:hover { background: rgba(0,123,255,.12); opacity: 1; }
.doc-content { display:flex; flex-direction:column; gap: 18px; }
.doc-section { padding: 16px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); margin-bottom: 18px; }
.doc-section:last-child { margin-bottom: 0; }
.doc-section h2 { margin-bottom: 12px; font-size: 20px; }
.doc-content .rule ul { margin: 8px 0 0 1.1em; padding: 0; }
.doc-content .rule li { margin-bottom: 6px; }
.rule { padding: 14px; border-radius: 14px; background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.08); margin-bottom: 10px; }
.rule:last-child { margin-bottom: 0; }
.rule-head { display:flex; justify-content: space-between; gap: 12px; align-items: baseline; flex-wrap: wrap; margin-bottom: 6px; }
.rule-title { font-weight: 700; }
.rule-sanction { font-size: 13px; opacity: .9; padding: 6px 10px; border-radius: 999px; background: rgba(0,123,255,.12); border: 1px solid rgba(0,123,255,.25); }
.doc-note { opacity: .9; line-height: 1.5; margin-bottom: 10px; }
.table-wrap { overflow:auto; border-radius: 14px; border:1px solid rgba(255,255,255,0.08); }
.doc-table { width:100%; border-collapse: collapse; min-width: 640px; background: rgba(0,0,0,0.15); }
.doc-table th, .doc-table td { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); vertical-align: top; }
.doc-table th { text-align:left; background: rgba(255,255,255,0.06); }

@media (max-width: 900px) {
  .doc-grid { grid-template-columns: 1fr; }
  .doc-nav { position: relative; top: 0; }
}

.shop-wrap { max-width: 1200px; margin: 0 auto; padding: 30px 18px 60px; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.shop-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: 14px; padding: 16px; display:flex; flex-direction: column; gap: 10px; }
.shop-card h3 { font-size: 18px; }
.shop-card p { opacity: .9; line-height: 1.45; }
.shop-price { font-size: 18px; font-weight: 800; }
.shop-actions { margin-top: auto; display:flex; gap: 10px; align-items:center; flex-wrap: wrap; }
.shop-actions input { width: 90px; padding: 10px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.25); color:#fff; }
.shop-actions button { padding: 10px 12px; border-radius: 12px; border: none; background: var(--primary-blue); color:#fff; cursor:pointer; font-weight: 700; }
.shop-actions button:disabled { opacity:.6; cursor:not-allowed; }
.shop-badge { font-size: 12px; opacity: .85; padding: 6px 10px; border:1px solid rgba(255,255,255,0.12); border-radius: 999px; background: rgba(0,0,0,0.18); }
.shop-msg { margin-top: 12px; padding: 12px 14px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.20); }
@media (max-width: 980px){ .shop-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .shop-grid{ grid-template-columns: 1fr;} }


.page-offset { padding-top: 110px; }
@media (max-width: 700px){
  .page-offset { padding-top: 95px; }
}

.doc-wrap, .shop-wrap { padding-top: 12px; }

code { background: rgba(0,0,0,0.35); padding: 2px 6px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.10); }

.notice { margin: 14px 0; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.22); }
.notice a { color: var(--primary-blue); font-weight: 700; text-decoration: none; }
.notice.ok { border-color: rgba(40,200,120,0.25); background: rgba(40,200,120,0.08); }
.notice.warn { border-color: rgba(255,190,80,0.22); background: rgba(255,190,80,0.08); }
.notice.info { border-color: rgba(0,123,255,0.22); background: rgba(0,123,255,0.08); }

.pill { display:inline-flex; align-items:center; gap:8px; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); font-size: 13px; opacity: .95; }

.shop-hero { display:grid; grid-template-columns: 1.25fr 0.75fr; gap: 14px; align-items: start; margin-bottom: 14px; }
.shop-hero h1 { font-size: 30px; margin-bottom: 6px; }
.shop-hero p { opacity: .9; line-height: 1.5; }
.shop-hero-badges { margin-top: 10px; display:flex; gap: 8px; flex-wrap: wrap; }
.shop-hero-side .mini-card { padding: 14px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.10); background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.18)); }
.mini-title { font-weight: 800; margin-bottom: 6px; }
.mini-text { opacity: .9; line-height: 1.5; font-size: 14px; }

@media (max-width: 980px){
  .shop-hero { grid-template-columns: 1fr; }
}

.shop-card { position: relative; overflow: hidden; }
.shop-card:before{
  content:'';
  position:absolute;
  inset:-40% -40% auto -40%;
  height: 180px;
  background: radial-gradient(circle at 20% 20%, rgba(0,123,255,0.28), transparent 55%);
  pointer-events:none;
}
.shop-card:hover { transform: translateY(-2px); border-color: rgba(0,123,255,0.30); box-shadow: 0 12px 30px rgba(0,0,0,0.35); transition: .2s ease; }
.shop-card-top{ display:flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.shop-title{ font-weight: 900; font-size: 18px; letter-spacing: .2px; }
.shop-id{ font-size: 12px; opacity: .8; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.18); }
.shop-desc{ opacity: .9; line-height: 1.5; }
.shop-bottom{ margin-top: auto; display:flex; flex-direction: column; gap: 10px; }

.qty{ display:flex; align-items:center; gap: 8px; }
.qty-btn{ width: 38px; height: 38px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.14); background: rgba(0,0,0,0.20); color:#fff; cursor:pointer; font-weight: 900; }
.qty-btn:hover{ border-color: rgba(0,123,255,0.35); }
.qty-input{ width: 90px; text-align:center; }

.btn-buy{ width: 100%; padding: 12px 14px; border-radius: 14px; border: none; background: linear-gradient(180deg, rgba(0,123,255,1), rgba(0,90,200,1)); color:#fff; cursor:pointer; font-weight: 900; letter-spacing: .2px; }
.btn-buy:hover{ filter: brightness(1.05); }
.btn-buy:disabled{ opacity:.6; cursor:not-allowed; }
.shop-hint{ font-size: 12px; opacity: .75; }

.doc-wrap, .shop-wrap { margin-top: 0; }

mark.mark { background: rgba(0,123,255,0.25); color: #fff; padding: 0 4px; border-radius: 6px; border: 1px solid rgba(0,123,255,0.35); }
select,
select option {
  color: #fff;
  background-color: #0b0e14;
}

select option:checked,
select option:hover {
  background-color: #1a2233;
}
.radio-bar{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 16px;

  background:rgba(0,0,0,.85);
  border-top:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color:#fff;
}

.radio-left{display:flex;flex-direction:column;gap:4px;min-width:0;}
.radio-station{font-weight:800;font-size:14px;}
.radio-meta{font-size:12px;opacity:.9;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.radio-meta .dot{margin:0 8px;opacity:.6;}

.radio-btn{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}
.radio-btn:hover{background:rgba(255,255,255,.12);}

body{padding-bottom:64px;}
