@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b6b;
    --secondary: #ee5a24;
    --accent: #fa8231;
    --dark: #2d3436;
    --light: #f5f6fa;
    --white: #ffffff;
    --gray: #636e72;
    --shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
    --shadow-hover: 0 12px 40px rgba(255, 107, 107, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--dark);
    background: var(--light);
}

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
}

.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-bar .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top-info a {
    color: var(--white);
    text-decoration: none;
    margin-right: 25px;
    transition: opacity 0.3s;
}

.top-info a:hover {
    opacity: 0.9;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social a {
    color: var(--white);
    font-size: 1.05rem;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.top-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

/* Eski top-info-bar için uyumluluk */
.top-info-bar {
    background: var(--primary);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-info-bar .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.info-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.info-left a {
    color: var(--white);
    text-decoration: none;
    margin-right: 25px;
    transition: opacity 0.3s;
}

.info-left a:hover {
    opacity: 0.9;
}

.info-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-right a {
    color: var(--white);
    font-size: 1.05rem;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.info-right a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.main-nav-area {
    padding: 22px 0;
    position: relative;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
    transition: transform 0.3s;
}

.site-logo:hover {
    transform: scale(1.05);
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 5px;
}

.hero-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 90px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.hero-content-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.9;
}

.hero-visual {
    flex: 1;
}

.visual-box {
    background: rgba(255,255,255,0.15);
    border: 3px dashed rgba(255,255,255,0.4);
    border-radius: 15px;
    padding: 100px 50px;
    text-align: center;
    font-size: 1.2rem;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    margin-right: 15px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-btn.outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-btn.outline:hover {
    background: var(--white);
    color: var(--primary);
}

.content-section {
    padding: 70px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 750px;
    margin: 0 auto;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.single-game {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.single-game:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.game-thumb {
    height: 220px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
}

.game-info {
    padding: 28px;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.game-info p {
    color: var(--gray);
    margin-bottom: 20px;
}

.game-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.game-btn:hover {
    background: var(--secondary);
}

.features-area {
    background: var(--white);
}

.features-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: var(--light);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-item p {
    color: var(--gray);
    line-height: 1.8;
}

.stats-banner {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.stat-box h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.stat-box p {
    font-size: 1.15rem;
}

.cta-area {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-area h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.cta-area p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.page-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 80px 0 50px;
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.breadcrumb-list a {
    color: var(--white);
    text-decoration: none;
}

.content-box {
    background: var(--white);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-box h3 {
    font-size: 1.7rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.content-box p {
    margin-bottom: 18px;
    color: var(--gray);
}

.content-box ul {
    margin: 25px 0;
    padding-left: 25px;
}

.content-box ul li {
    margin-bottom: 12px;
    color: var(--gray);
    line-height: 1.8;
}

.content-box h4 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--dark);
}

.content-box strong {
    color: var(--dark);
    font-weight: 600;
}

.content-box em {
    font-style: italic;
    color: var(--gray);
}

/* Terms ve KVKK için özel stiller */
.terms-section,
.kvkk-section,
.cookie-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e1e8ed;
}

.terms-section:last-child,
.kvkk-section:last-child,
.cookie-section:last-child {
    border-bottom: none;
}

.terms-section h3,
.kvkk-section h3,
.cookie-section h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-section h3 i,
.kvkk-section h3 i,
.cookie-section h3 i {
    font-size: 1.4rem;
}

.company-info {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.company-info p {
    margin-bottom: 10px;
}

.update-info {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid var(--primary);
}

.update-info p {
    margin-bottom: 10px;
}

.update-info i {
    margin-right: 8px;
    color: var(--primary);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-single {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.faq-q:hover {
    color: var(--primary);
}

.faq-q i {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.faq-q.active i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-a-inner {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-single {
    display: flex;
    gap: 22px;
    margin-bottom: 32px;
}

.contact-ico {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.contact-text p,
.contact-text a {
    color: var(--gray);
    text-decoration: none;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.map-box {
    margin-top: 45px;
    height: 420px;
    background: var(--light);
    border: 3px dashed #dfe6e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray);
}

.error-content {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-content h1 {
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 30px;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 65px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

/* Eski footer-top için uyumluluk */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

.footer-col h3,
.footer-col h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col h4 {
    font-size: 1.3rem;
}

.footer-col p {
    opacity: 0.85;
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s;
}

.footer-col ul a:hover {
    opacity: 1;
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .top-bar,
    .top-info-bar {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        z-index: 1000;
    }
    
    .main-menu.active {
        max-height: 600px;
    }
    
    .main-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-menu li {
        border-bottom: 1px solid var(--light);
    }
    
    .main-menu a {
        display: block;
        padding: 15px 0;
    }
    
    .hero-content-wrap {
        flex-direction: column;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .game-cards {
        grid-template-columns: 1fr;
    }
    
    .features-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .content-box {
        padding: 30px 20px;
    }
    
    .content-box h2 {
        font-size: 1.8rem;
    }
    
    .content-box h3 {
        font-size: 1.4rem;
    }
    
    .contact-details,
    .contact-form-box {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-box h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .cta-btn {
        display: block;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    
    .page-banner {
        padding: 60px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-banner {
        padding: 40px 0;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .cta-area {
        padding: 60px 0;
    }
    
    .cta-area h2 {
        font-size: 2rem;
    }
    
    .breadcrumb-list {
        flex-wrap: wrap;
        font-size: 0.9rem;
    }
}
