/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --tertiary-bg: #2a2a2a;
    --accent-color: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --hover-color: #ffed4e;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: var(--secondary-bg);
    border-bottom: 2px solid var(--accent-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--tertiary-bg) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 700;
    line-height: 1.3;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section > h2 {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
}

/* Info Box */
.info-box {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.2);
}

.info-box h3 {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.info-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.faq-section h2 {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.15);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-bg);
    border-top: 2px solid var(--accent-color);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-links h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.footer-info p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links li:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    background-color: var(--tertiary-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.footer-disclaimer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
}

.footer-disclaimer strong {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 15px;
    }

    .content-section > h2 {
        font-size: 26px;
    }

    .info-box {
        padding: 20px;
    }

    .info-box h3 {
        font-size: 20px;
    }

    .info-box p {
        font-size: 15px;
    }

    .faq-section h2 {
        font-size: 26px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-description {
        font-size: 15px;
    }

    .content-section > h2 {
        font-size: 22px;
    }

    .info-box {
        padding: 15px;
    }

    .info-box h3 {
        font-size: 18px;
    }
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Selection Style */
::selection {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

/* Link Focus */
a:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-nav,
    .footer-links {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .info-box {
        border: 1px solid #000;
        page-break-inside: avoid;
    }
}