/* ============================================
   BEDAVA ELMAS - Premium CSS Design
   ============================================ */

:root {
    --primary: #00bcd4;
    --primary-dark: #0097a7;
    --primary-light: #e0f7fa;
    --secondary: #1a1a2e;
    --accent: #ff6b6b;
    --bg-body: #ffffff;
    --bg-light: #f8fafb;
    --card-bg: #ffffff;
    --text-main: #1a1a2e;
    --text-dim: #6c7a89;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* ============================================
   HEADER / HERO
   ============================================ */
header {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 50%, #ffffff 100%);
    padding-bottom: 80px;
}

.hero-content {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.35);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.45);
}

.btn-primary i {
    font-size: 1rem;
}

.btn-launch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 200px;
    padding: 14px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-launch:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.4);
}

/* ============================================
   FEATURES / GAME CARDS
   ============================================ */
.features {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.features h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.game-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.game-titles h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 4px;
}

.game-titles span {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
section.content {
    padding: 60px 0;
}

.glass-panel {
    background: var(--card-bg);
    border: 1px solid rgba(0, 188, 212, 0.1);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.glass-panel h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.glass-panel h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 25px 0 15px;
}

.glass-panel p {
    color: var(--text-dim);
    margin-bottom: 15px;
    line-height: 1.8;
}

.glass-panel ul,
.glass-panel ol {
    margin-left: 20px;
    color: var(--text-dim);
}

.glass-panel li {
    margin-bottom: 10px;
}

.glass-panel img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
    margin-bottom: 12px;
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-header:hover {
    background: rgba(0, 188, 212, 0.05);
}

.faq-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    color: var(--text-dim);
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 25px 20px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 50px 0;
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dim);
}

footer a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-content {
        padding: 50px 15px 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 16px 35px;
        font-size: 0.95rem;
    }

    .nav-links {
        display: none;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .features h2 {
        font-size: 1.6rem;
    }

    .glass-panel {
        padding: 25px 20px;
    }

    .glass-panel h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .btn-primary {
        width: 100%;
        max-width: 280px;
    }

    .btn-launch {
        max-width: 100%;
    }
}

/* ============================================
   CAPTCHA LOCKER REPLACEMENT
   ============================================ */
.captcha-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    animation: fadeIn 0.5s ease-in;
}

.captcha-button {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: #333;
    width: fit-content;
}

.captcha-button:hover {
    background: #f1f1f1;
}

.captcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 3px;
    margin-right: 15px;
    background: white;
    position: relative;
}

.captcha-text {
    font-size: 14px;
    font-weight: 400;
    margin-right: 50px;
    text-align: left;
}

.captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: normal;
}

.captcha-logo img {
    width: 30px !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.captcha-logo span {
    font-size: 8px;
    color: #555;
    margin-top: 2px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}