/* Genel Stiller */
:root {
    --primary-color: #ff4e50;
    --secondary-color: #2c3e50;
    --accent-color: #f9a825;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --gray-color: #4a5056;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 15px 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: #4a5056;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #f9f9f9;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e02f31;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #1a2530;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-login {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 700;
}

.btn-login:hover {
    background-color: white;
    color: #e02f31;
}

.btn-register {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-register:hover {
    background-color: #e59400;
    color: var(--secondary-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-app {
    background-color: var(--dark-color);
    color: white;
    margin-right: 10px;
    padding: 12px 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
}

.btn-app i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-app:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Header */
.header {
    background-color: #e02f31;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background-color: #1a2530;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 171px;
    height: 50px;
    transition: var(--transition);
}

.logo a:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    color: white;
    font-weight: 700;
    padding: 5px 10px;
    transition: var(--transition);
}

.nav ul li a:hover {
    color: #ffe066;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.scroll-down {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.scroll-down a {
    color: white;
}

.scroll-down:hover {
    background-color: var(--secondary-color);
}

/* Hero Bölümü */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
}

/* Hero görseli çerçeve stilleri */
.hero-img-framed {
    border: 5px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img-framed:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Bonuslar Bölümü */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bonus-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-10px);
}

.bonus-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-icon i {
    font-size: 2rem;
    color: white;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bonus-card p {
    margin-bottom: 20px;
    color: #4a5056;
}

/* Oyunlar Bölümü */
.game-tabs {
    margin-top: 30px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-btn {
    padding: 12px 24px;
    background-color: #cccccc;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: #000000;
}

.tab-btn.active, .tab-btn:hover {
    background-color: #e02f31;
    color: white;
}

.tab-content {
    margin-top: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.game-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
}

.game-card p {
    padding: 0 15px 10px;
    color: #4a5056;
    font-size: 0.9rem;
}

.game-card .btn {
    margin: 0 15px 15px;
}

/* Mobil Uygulama Bölümü */
.mobil {
    background: linear-gradient(to right, #f5f7fa 0%, #c3cfe2 100%);
}

.mobil-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobil-text {
    flex: 1;
    padding-right: 30px;
}

.mobil-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.feature-list {
    margin: 25px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.app-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.mobil-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobil-image img {
    max-height: 765px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

/* Güvenlik Bölümü */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-feature {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.security-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.security-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Makale Bölümü */
.makale {
    padding: 100px 0;
}

.makale-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.makale-image {
    flex: 1;
}

.makale-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.makale-text {
    flex: 1;
}

.makale-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.makale-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.makale-text .btn {
    margin-top: 10px;
}

/* SSS Bölümü */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
}

.faq-question {
    padding: 20px;
    background-color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #eaeaea;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: var(--transition);
}

.faq-toggle i {
    transition: var(--transition);
}

.faq-question.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #4a5056;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 40px 0 20px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.payment-methods, .social-media, .contact-info {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.payment-icons, .social-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 2rem;
    color: #ffffff;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff4c29;
    transform: translateY(-3px);
}

.contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.contact-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-list a {
    color: #fff;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero .container, .mobil-content, .makale-content {
        flex-direction: column;
    }
    
    .hero-content, .mobil-text, .makale-text, .makale-image {
        flex: auto;
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav, .header-buttons {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .bonus-cards, .security-features {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content, .footer-links, .footer-bottom {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
    }
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 2000;
    padding: 50px 20px;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.mobile-menu-links {
    margin-top: 30px;
}

.mobile-menu-links li {
    margin-bottom: 15px;
}

.mobile-menu-links li a {
    color: white;
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    display: none;
}

.overlay.active {
    display: block;
}

/* Makaleler Başlık Bölümü */
.makaleler-baslik {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 30px;
    margin-bottom: 0;
}

.makaleler-baslik .section-header h2 {
    color: white;
}

.makaleler-baslik .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.makale {
    padding-top: 60px;
}

.makale:first-of-type {
    padding-top: 0;
}

/* SSS Stili */
.faq-answer {
    display: none;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
}

.faq-question {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover .faq-toggle {
    background-color: #e0e0e0;
} 