:root {
    --bg-dark: #0a0d14;
    --navy-blue: #111622;
    --gold: #d4af37;
    --gold-light: #fbe285;
    --gold-dark: #997a15;
    --text-light: #f8f9fa;
    --text-muted: #8b95a5;
    --glass-bg: rgba(17, 22, 34, 0.4);
    --glass-border: rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Setup */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.7) contrast(1.1);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%),
                linear-gradient(180deg, rgba(10, 13, 20, 0.4) 0%, rgba(10, 13, 20, 0.95) 100%);
    z-index: -1;
}

/* Interactive Particle Canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Let clicks pass through to the wrapper */
}

/* Wrapper for alignment */
.wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

/* Main Container */
.container {
    text-align: center;
    padding: 2.5rem 3.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 680px;
    width: 100%;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Trust Elements */
.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.top-badge svg {
    color: var(--gold-light);
}

/* Logo */
.logo-container {
    margin-bottom: 1.5rem;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.logo-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 15px rgba(212, 175, 55, 0.4));
}

.divider {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
}

.subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Typography */
.main-title {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.gold-text {
    color: var(--gold-light);
    font-weight: 500;
}

.description {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button - Professional High-End Metallic/Glass */
.cta-button {
    display: inline-flex;
    position: relative;
    padding: 1rem 3.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 4px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    z-index: 2;
    position: relative;
    transition: color 0.3s ease;
}

.btn-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.cta-button:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-light);
}

.cta-button:hover .btn-sweep {
    transform: scaleX(1);
}

.cta-button:hover .btn-content {
    color: var(--bg-dark);
}

/* Security Features inside container */
.security-features {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.feature-text strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.feature-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Side Badges (Desktop) */
.side-badges {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.left-badges {
    left: 40px;
}

.right-badges {
    right: 40px;
}

.side-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all 0.4s ease;
    cursor: default;
}

.side-badge:hover {
    opacity: 1;
    color: var(--gold-light);
    transform: scale(1.1);
}

.side-badge svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0));
    transition: filter 0.4s ease;
}

.side-badge:hover svg {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.side-badge span {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        overflow-y: auto; /* Just as a fallback for incredibly tiny screens */
    }
    .wrapper { 
        padding: 1rem 0.5rem; 
        flex-direction: column; 
    }
    .container { 
        padding: 1.8rem 1rem; 
        border-radius: 20px;
    }
    .top-badge { margin-bottom: 1rem; font-size: 0.55rem; padding: 0.3rem 0.8rem; }
    .logo-container { margin-bottom: 1rem; }
    .logo-img { max-width: 200px; }
    .divider { margin: 0.8rem auto; }
    
    .main-title { font-size: 1.4rem; margin-bottom: 0.5rem; }
    .description { font-size: 0.85rem; margin-bottom: 1.5rem; line-height: 1.4; max-width: 100%; }
    
    .cta-button { 
        padding: 1.1rem 2rem; 
        width: 100%; 
        justify-content: center; 
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
        border: 1px solid var(--gold);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    }
    .btn-content { font-size: 0.85rem; letter-spacing: 1.5px; }
    
    .side-badges {
        position: relative;
        top: auto;
        transform: none;
        display: grid;
        grid-template-columns: 140px 140px;
        justify-content: center;
        gap: 0.8rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .left-badges {
        left: auto;
        margin-top: 2rem;
    }
    .right-badges {
        right: auto;
        margin-top: 0.8rem;
    }
    
    .side-badge {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: flex-start;
        opacity: 0.7;
    }
    
    .side-badge svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .side-badge span {
        display: block; /* Restore text for premium look */
        font-size: 0.55rem;
        text-align: left;
        max-width: none;
        letter-spacing: 0.5px;
    }
}

/* Agresif SEO Kamuflajı */
.seo-tag-cloud {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    color: var(--bg-dark); /* Arka planla aynı renk */
    z-index: -999;
}

/* SEO Content Styles */
.seo-literature {
    max-width: 800px;
    margin: 60px auto 20px;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.section-title {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    margin: 40px 0 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.seo-literature h3 {
    color: #fff;
    font-size: 18px;
    margin-top: 30px;
    font-weight: 500;
}

.seo-literature h4 {
    color: #ccc;
    font-size: 16px;
    margin-top: 20px;
}

.seo-literature p {
    margin-bottom: 15px;
    font-size: 14px;
}

/* Accordion FAQ */
.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.6);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    padding: 15px 20px;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.4);
}

.faq-answer p {
    padding: 15px 20px;
    margin: 0;
}

.contact-info {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Navbar Styles */
.top-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal-content {
    background: linear-gradient(145deg, #111, #0a0a0a);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.close-btn {
    color: #D4AF37;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close-btn:hover {
    color: #fff;
    text-shadow: 0 0 10px #D4AF37;
}

/* Modal VIP Typography adjustments */
.modal-content {
    font-weight: 300;
    letter-spacing: 0.5px;
}

.modal-content h2 {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.modal-content h3 {
    color: #E5C158;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-content h4 {
    color: #ccc;
    font-weight: 400;
    font-size: 16px;
    margin-top: 25px;
    letter-spacing: 0.5px;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.vip-icon {
    width: 24px;
    height: 24px;
    stroke: #D4AF37;
}

/* Redesigned Accordion for VIP feel */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    background: transparent;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #D4AF37;
    transition: all 0.4s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    padding-left: 25px;
}


/* Mobile Fixes for Navbar and Modals */
@media (max-width: 768px) {
    .top-navbar {
        padding: 10px 0;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }
    
    .nav-links li a {
        font-size: 11px;
        letter-spacing: 0.5px;
        background: rgba(212, 175, 55, 0.05);
        padding: 5px 10px;
        border-radius: 4px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 15% auto;
        border-radius: 8px;
    }
    
    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .modal-content h3 {
        font-size: 16px;
        margin-top: 25px;
    }
    
    .close-btn {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 13px;
        padding: 12px 15px;
    }
}

.curacao-badge img { transition: transform 0.3s; }
.curacao-badge:hover img { transform: scale(1.1); }
@media(max-width:768px) {
  .curacao-badge img { width: 30px !important; }
}
