/* CSS Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #1f1f1f;
    --orange: #ff8c42;
    --orange-dark: #e67a30;
    --orange-light: #ffa564;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --border-color: #2a2a2a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Stilleri */
.main-header {
    background-color: var(--bg-secondary);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--text-primary);
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid var(--orange);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--text-primary);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
    border: 2px solid var(--orange-light);
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 60px 0;
}

.content-article {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.content-section {
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    color: var(--orange-light);
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    margin-top: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

h4::before {
    content: '▶';
    color: var(--orange);
    margin-right: 10px;
    font-size: 0.9rem;
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* List Styles */
.feature-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.feature-list li {
    padding: 12px 0 12px 40px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.7;
}

.feature-list li::before {
    content: '♠';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 700;
    top: 10px;
}

.feature-list li:hover {
    color: var(--text-primary);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    color: var(--orange);
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 2px solid var(--orange);
}

.conclusion h2 {
    color: var(--orange);
    border-bottom: none;
    display: block;
    margin-bottom: 20px;
}

.conclusion p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.cta-wrapper {
    margin-top: 35px;
}

.btn-cta-large {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--text-primary);
    padding: 20px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);
    border: 2px solid var(--orange-light);
}

.btn-cta-large:hover {
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.7);
}

/* Footer */
.main-footer {
    background-color: var(--bg-secondary);
    padding: 30px 0;
    border-top: 2px solid var(--orange);
    margin-top: auto;
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-disclaimer {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .content-article {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    .feature-list li {
        padding-left: 35px;
    }
    
    .faq-section {
        padding: 25px 20px;
    }
    
    .conclusion {
        padding: 30px 20px;
    }
    
    .btn-cta-large {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .content-article {
        padding: 25px 15px;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .feature-list li::before {
        font-size: 1.1rem;
    }
    
    .btn-cta-large {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--orange);
    color: var(--text-primary);
}

::-moz-selection {
    background-color: var(--orange);
    color: var(--text-primary);
}

/* Focus Styles */
a:focus,
button:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}