@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #10b981;
    --secondary: #14b8a6;
    --accent: #059669;
    --dark: #1f2937;
    --light: #f9fafb;
    --white: #ffffff;
    --text: #374151;
    --border: #e5e7eb;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.brand {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.brand img {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 12px 18px;
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 6px;
}

.hero-full {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-full::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -300px;
    left: -200px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-image-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder {
    width: 100%;
    height: 450px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.primary-btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
    margin-right: 18px;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.primary-btn i,
.secondary-btn i,
.play-btn i,
.cta-button i {
    margin-right: 8px;
}

.secondary-btn {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.full-section {
    padding: 90px 0;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 18px;
}

.section-title-center p {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.game-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(16,185,129,0.15);
    border-color: var(--primary);
}

.game-image {
    height: 240px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-item:hover .game-image img {
    transform: scale(1.15);
}

.game-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.game-body p {
    color: var(--text);
    margin-bottom: 25px;
    font-weight: 300;
    flex-grow: 1;
}

.play-btn {
    display: inline-block;
    padding: 13px 32px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
    align-self: flex-start;
    margin-top: auto;
}

.play-btn:hover {
    background: var(--accent);
}

.alt-bg {
    background: var(--light);
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(16,185,129,0.1);
}

.feature-icon-wrap {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.8rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--text);
    font-weight: 300;
    line-height: 1.8;
}

.stats-full {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.stat-item p {
    font-size: 1.25rem;
    font-weight: 300;
}

.cta-full {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.cta-full h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-full p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 90px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.content-block {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border);
    margin-bottom: 35px;
}

.content-block h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--dark);
}

.content-block h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 18px;
    color: var(--primary);
}

.content-block h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.content-block p {
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.9;
}

.content-block ul {
    margin: 30px 0;
    padding-left: 30px;
}

.content-block ul li {
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.content-block ol {
    margin: 30px 0;
    padding-left: 30px;
}

.content-block ol li {
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.content-block a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.content-block a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.content-block strong {
    font-weight: 600;
    color: var(--dark);
}

.content-block em {
    font-style: italic;
    color: var(--text);
}

.faq-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.faq-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 35px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s;
}

.faq-btn:hover {
    color: var(--primary);
}

.faq-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.faq-btn.active i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-inner {
    padding: 0 35px 28px;
    color: var(--text);
    font-weight: 300;
    line-height: 1.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-block {
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.contact-row {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-info p {
    color: var(--text);
    font-weight: 300;
    margin: 0;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.form-block {
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.input-group {
    margin-bottom: 28px;
}

.input-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(0,0,0,0.4);
}

.input-group textarea {
    resize: vertical;
    min-height: 140px;
}

.map-area {
    margin-top: 50px;
    height: 450px;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text);
}

.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-block h1 {
    font-size: 12rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 25px;
}

.error-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark);
}

.error-block p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 35px;
    font-weight: 300;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 75px 0 30px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-wide {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-wide h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 22px;
}

.footer-wide p {
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 30px;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.footer-links-row a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-links-row a:hover {
    color: var(--primary);
}

.footer-end {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 35px;
    text-align: center;
    font-weight: 300;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    color: var(--white);
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-section ul li i {
    width: 20px;
}

.privacy-box,
.cookie-box,
.terms-box,
.kvkk-box,
.about-box {
    background: var(--light);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

.privacy-box h3,
.cookie-box h3,
.terms-box h3,
.kvkk-box h3,
.about-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-box h3 i,
.cookie-box h3 i,
.terms-box h3 i,
.kvkk-box h3 i,
.about-box h3 i {
    color: var(--primary);
}

.privacy-box h4,
.cookie-box h4,
.terms-box h4,
.kvkk-box h4,
.about-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.privacy-box ul,
.cookie-box ul,
.terms-box ul,
.kvkk-box ul,
.about-box ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-box ul li,
.cookie-box ul li,
.terms-box ul li,
.kvkk-box ul li,
.about-box ul li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.privacy-box p,
.cookie-box p,
.terms-box p,
.kvkk-box p,
.about-box p {
    margin-bottom: 15px;
    line-height: 1.9;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    margin-top: 40px;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.date-info {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 4px solid var(--primary);
}

.date-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-info i {
    color: var(--primary);
}

.company-details {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.company-details p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.company-details a {
    color: var(--primary);
    text-decoration: none;
}

.company-details a:hover {
    text-decoration: underline;
}

.social-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.social-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links-contact a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary);
}

.map-area h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.feature-item {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(16,185,129,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-item p {
    color: var(--text);
    font-weight: 300;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    .nav-menu.active {
        max-height: 700px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 25px;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu a {
        display: block;
        padding: 18px 0;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .game-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .privacy-box,
    .cookie-box,
    .terms-box,
    .kvkk-box,
    .about-box {
        padding: 25px;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .contact-info-block,
    .form-block {
        padding: 30px 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .game-grid-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title-center h2 {
        font-size: 2.2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .primary-btn,
    .secondary-btn {
        display: block;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .container-fluid {
        padding: 0 20px;
    }
    
    .content-block h2 {
        font-size: 2rem;
    }
    
    .privacy-box h3,
    .cookie-box h3,
    .terms-box h3,
    .kvkk-box h3,
    .about-box h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .error-block h1 {
        font-size: 8rem;
    }
}
