/* ==========================================================================
   CSS VARIABLES - APPLE PREMIUM DARK STYLE
   ========================================================================== */
   :root {
    --color-bg: #000000;
    --color-bg-secondary: #0A0A0B;
    
    /* Glassmorphism Cards */
    --color-card-bg: rgba(28, 28, 30, 0.4);
    --color-card-border: rgba(255, 255, 255, 0.08);
    --color-card-hover: rgba(44, 44, 46, 0.6);
    
    /* Text */
    --color-text-main: #F5F5F7;
    --color-text-muted: #86868B;
    
    /* Accents (Premium Casino Feel) */
    --color-accent-gold: #F5D061;
    --color-accent-gradient: linear-gradient(135deg, #F5D061 0%, #E6A11D 100%);
    --color-primary-gradient: linear-gradient(135deg, #5E5CE6 0%, #BF5AF2 100%);
    
    /* Semantic */
    --color-success-bg: rgba(52, 199, 89, 0.1);
    --color-success-border: rgba(52, 199, 89, 0.2);
    --color-success-text: #34C759;
    
    --color-danger-bg: rgba(255, 59, 48, 0.1);
    --color-danger-border: rgba(255, 59, 48, 0.2);
    --color-danger-text: #FF3B30;

    /* Geometry */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}
a { color: var(--color-text-main); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Ambient Glow Effects */
.vgs-ambient-glow {
    position: fixed;
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(94, 92, 230, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}
.vgs-ambient-glow-2 {
    top: auto; bottom: -10%; left: auto; right: -10%;
    background: radial-gradient(circle, rgba(245, 208, 97, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.vgs-container {
    width: 100%; max-width: 1200px;
    margin: 0 auto; padding: 0 24px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.vgs-h1 { font-size: clamp(36px, 5vw, 64px); }
.vgs-h2 { font-size: clamp(28px, 4vw, 48px); }
.vgs-h3 { font-size: clamp(22px, 3vw, 32px); }

.vgs-text-gradient {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.vgs-text-muted { color: var(--color-text-muted); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.vgs-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600; font-size: 15px;
    cursor: pointer; transition: var(--transition);
    border: none; outline: none; text-align: center;
    backdrop-filter: blur(10px);
}
.vgs-btn-primary {
    background: var(--color-primary-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(94, 92, 230, 0.3);
}
.vgs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 92, 230, 0.5);
}
.vgs-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.vgs-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.vgs-header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 100;
    transition: var(--transition);
    padding: 20px 0;
}
.vgs-header.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--color-card-border);
}
.vgs-header-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.vgs-logo-text { font-size: 24px; font-weight: 800; letter-spacing: -1px; }
.vgs-logo-text b { color: var(--color-accent-gold); }

.vgs-nav-wrapper {
    display: flex; align-items: center; gap: 40px;
}
.vgs-menu { display: flex; gap: 32px; }
.vgs-menu > li { position: relative; padding: 10px 0; }

.vgs-nav-item-head {
    display: flex; align-items: center; gap: 4px;
}
.vgs-nav-item-head a {
    font-size: 15px; font-weight: 500; color: var(--color-text-muted);
    transition: var(--transition); text-decoration: none;
}
.vgs-nav-item-head a:hover, .vgs-nav-item-head a.active { color: var(--color-text-main); }

.vgs-dropdown-toggle {
    background: transparent; border: none; color: var(--color-text-muted);
    cursor: pointer; padding: 4px; display: flex; align-items: center;
    justify-content: center; outline: none; transition: var(--transition);
}
.vgs-dropdown-toggle .chevron { width: 14px; height: 14px; transition: var(--transition); }

/* Dropdown Container */
.vgs-dropdown {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
    background: rgba(30, 30, 32, 0.8);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    padding: 8px; min-width: 200px;
    opacity: 0; visibility: hidden; transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Desktop Hover Actions */
@media (min-width: 993px) {
    .has-dropdown:hover .vgs-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .has-dropdown:hover .vgs-dropdown-toggle .chevron { transform: rotate(180deg); color: var(--color-text-main); }
    .has-dropdown:hover .vgs-nav-item-head a { color: var(--color-text-main); }
}

/* Dropdown Items */
.vgs-dropdown-inner { display: flex; flex-direction: column; gap: 4px; }
.vgs-dropdown-item {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    transition: var(--transition); text-decoration: none;
}
.vgs-dropdown-item:hover, .vgs-dropdown-item.active { background: rgba(255, 255, 255, 0.08); }
.vgs-dropdown-item span { font-weight: 600; font-size: 14px; color: var(--color-text-main); transition: var(--transition); }

.vgs-header-actions { display: flex; gap: 12px; }

/* Burger */
.vgs-burger {
    display: none; flex-direction: column; justify-content: space-between;
    width: 30px; height: 20px; background: none; border: none; cursor: pointer; z-index: 101;
}
.vgs-burger span { width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ==========================================================================
   MAIN CONTENT & HERO SECTIONS
   ========================================================================== */
.vgs-main { padding-top: 100px; padding-bottom: 60px; }

.vgs-hero {
    padding: 80px 0; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.vgs-hero p { max-width: 600px; margin: 0 auto 32px auto; font-size: 18px; color: var(--color-text-muted); }
.vgs-hero-actions { display: flex; gap: 16px; justify-content: center; }

/* ==========================================================================
   SEO BLOCKS & CARDS (GLASSMORPHISM)
   ========================================================================== */
.vgs-section { padding: 60px 0; }
.vgs-card {
    background: var(--color-card-bg);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
}
.vgs-seo-content h2 { margin-top: 40px; margin-bottom: 20px; }
.vgs-seo-content h3 { margin-top: 32px; margin-bottom: 16px; }
.vgs-seo-content p { margin-bottom: 20px; color: var(--color-text-muted); }
.vgs-seo-content ul { margin-bottom: 20px; padding-left: 20px; }
.vgs-seo-content ul li { position: relative; margin-bottom: 10px; color: var(--color-text-muted); }
.vgs-seo-content ul li::before {
    content: ''; position: absolute; left: -20px; top: 8px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent-gold);
}

/* ==========================================================================
   PROS & CONS
   ========================================================================== */
.vgs-pros-cons {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0;
}
.vgs-pc-box {
    border-radius: var(--radius-md); padding: 32px;
    backdrop-filter: blur(10px);
}
.vgs-pros { background: var(--color-success-bg); border: 1px solid var(--color-success-border); }
.vgs-cons { background: var(--color-danger-bg); border: 1px solid var(--color-danger-border); }

.vgs-pc-title {
    display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; margin-bottom: 20px;
}
.vgs-pros .vgs-pc-title { color: var(--color-success-text); }
.vgs-cons .vgs-pc-title { color: var(--color-danger-text); }
.vgs-pc-box ul li {
    position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--color-text-main); font-size: 15px;
}
.vgs-pc-box ul li::before {
    content: ''; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
    background-size: contain; background-repeat: no-repeat;
}
.vgs-pros ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334C759' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}
.vgs-cons ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF3B30' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

/* ==========================================================================
   COMPARISON TABLES (APPLE STYLE)
   ========================================================================== */
.vgs-table-wrapper {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    overflow: hidden; margin: 40px 0;
    backdrop-filter: blur(20px);
}
.vgs-table { width: 100%; border-collapse: collapse; text-align: left; }
.vgs-table th, .vgs-table td { padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.vgs-table th { font-weight: 600; color: var(--color-text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.vgs-table tr:last-child td { border-bottom: none; }
.vgs-table tbody tr { transition: var(--transition); }
.vgs-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.vgs-footer {
    border-top: 1px solid var(--color-card-border);
    background: var(--color-bg-secondary);
    padding: 80px 0 40px; margin-top: 60px;
}
.vgs-footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px;
}
.vgs-footer-desc { color: var(--color-text-muted); margin: 20px 0; font-size: 14px; max-width: 300px; }
.vgs-badges { display: flex; gap: 12px; }
.vgs-badge-18, .vgs-badge-responsible {
    padding: 6px 12px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700;
    border: 1px solid var(--color-card-border);
}
.vgs-badge-18 { border-color: var(--color-danger-border); color: var(--color-danger-text); }
.vgs-footer-title { font-size: 16px; margin-bottom: 24px; color: #fff; }
.vgs-footer-links ul li { margin-bottom: 12px; }
.vgs-footer-links ul li a { color: var(--color-text-muted); font-size: 14px; }
.vgs-footer-links ul li a:hover { color: var(--color-accent-gold); }
.vgs-footer-bottom {
    border-top: 1px solid var(--color-card-border); padding-top: 32px;
    display: flex; flex-direction: column; gap: 16px; text-align: center;
}
.vgs-footer-bottom p { color: var(--color-text-muted); font-size: 14px; }
.vgs-footer-disclaimer { font-size: 12px; color: rgba(134, 134, 139, 0.5); max-width: 800px; margin: 0 auto; }

/* ==========================================================================
   RESPONSIVE (MOBILE FIRST APPROACH IN MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .vgs-footer-grid { grid-template-columns: 1fr 1fr; }
    .vgs-nav-wrapper {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: rgba(10, 10, 11, 0.95);
        backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
        flex-direction: column; justify-content: center;
        transition: 0.4s ease-in-out;
    }
    .vgs-nav-wrapper.active { right: 0; }
    
    .vgs-menu { flex-direction: column; text-align: center; gap: 16px; margin-top: 20px; }
    .vgs-nav-item-head { justify-content: center; gap: 8px; }
    .vgs-nav-item-head a { font-size: 22px; }
    
    .vgs-dropdown-toggle { padding: 8px; }
    .vgs-dropdown-toggle .chevron { width: 20px; height: 20px; }
    
    .vgs-dropdown {
        position: static; opacity: 1; visibility: visible;
        transform: none; background: transparent; border: none; box-shadow: none;
        margin-top: 0; padding: 0; min-width: auto;
        max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    }
    
    /* When toggled open on mobile */
    .has-dropdown.open .vgs-dropdown { max-height: 300px; margin-top: 10px; }
    .has-dropdown.open .vgs-dropdown-toggle .chevron { transform: rotate(180deg); color: var(--color-accent-gold); }
    
    .vgs-dropdown-item { justify-content: center; padding: 12px; }
    .vgs-dropdown-item span { font-size: 16px; color: var(--color-text-muted); }
    .vgs-dropdown-item:hover span, .vgs-dropdown-item.active span { color: var(--color-text-main); }
    
    .vgs-header-actions { flex-direction: column; width: 100%; max-width: 300px; margin-top: 40px; }
    .vgs-burger { display: flex; }
    .vgs-burger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .vgs-burger.active span:nth-child(2) { opacity: 0; }
    .vgs-burger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

@media (max-width: 768px) {
    .vgs-pros-cons { grid-template-columns: 1fr; }
    .vgs-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .vgs-footer-desc, .vgs-footer-disclaimer { margin-left: auto; margin-right: auto; }
    .vgs-badges { justify-content: center; }
    .vgs-hero-actions { flex-direction: column; }
    .vgs-table-wrapper { overflow-x: auto; }
    .vgs-table { min-width: 600px; }
    .vgs-card { padding: 24px; }
}