/* game/assets/css/index.css - Sadece Giriş Sayfası İçin Profesyonel Stiller */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');

/* Değişkenler ile Profesyonel Renk Paleti */
:root {
    --bg-dark-main: #1d2d3e;
    --bg-content: #2c3e50;
    --accent-orange: #e67e22;
    --text-light: #ecf0f1;
    --text-muted: #bdc3c7;
    --border-color: rgba(52, 152, 219, 0.2);
}

body.landing-page {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    background: var(--bg-dark-main);
    background-image: linear-gradient(rgba(29, 45, 62, 0.8), rgba(0, 0, 0, 0.95)), url('https://cdna.artstation.com/p/assets/images/images/030/145/882/large/yevhen-tsybulenko-final.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
}

/* Header */
.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(29, 45, 62, 0.5);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-sizing: border-box;
}

.landing-header .logo {
    font-family: 'Cinzel', serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--accent-orange);
    text-shadow: 0 0 10px rgba(230, 126, 34, 0.6);
}

.login-btn-nav {
    font-family: 'Poppins', sans-serif;
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s;
}

.login-btn-nav:hover {
    background-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.5);
}

/* Ana Karşılama Alanı */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 4em;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3em;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.cta-button {
    font-family: 'Cinzel', serif;
    background: linear-gradient(45deg, var(--accent-orange), #d35400);
    color: white;
    padding: 20px 60px;
    font-size: 1.6em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.4);
}

.animate-on-load {
    animation: fadeInDown 1.5s ease-out;
}
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }


/* Modal Stilleri */
.modal-overlay {
    z-index: 1000;
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-content {
    position: relative;
    animation: slideIn 0.4s;
}
@keyframes slideIn { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.auth-modal-content {
    width: 90vw;
    max-width: 450px;
}

.auth-form-container {
    padding: 40px;
    background: var(--bg-content);
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--accent-orange);
    box-shadow: 0 0 35px rgba(230, 126, 34, 0.4);
}

.modal-close-btn {
    color: #aaa;
    position: absolute;
    top: 15px; right: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 101;
}
.modal-close-btn:hover { color: #fff; }

.auth-form h1 {
    font-family: 'Cinzel', serif;
    color: var(--accent-orange);
    margin-bottom: 25px;
    font-weight: normal;
}

.auth-form input {
    font-family: 'Poppins', sans-serif;
    background-color: #1f2a38;
    border: 1px solid var(--border-color);
    padding: 15px;
    margin: 10px 0;
    width: 100%;
    color: var(--text-light);
    border-radius: 5px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

.auth-form button {
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
    border: none;
    background-color: var(--accent-orange);
    color: #FFFFFF;
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}
.auth-form button:hover {
    background-color: #d35400;
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.5);
}

.error-auth, .success-auth {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 1em;
    font-weight: bold;
    box-sizing: border-box;
}
.error-auth { color: #f5b7b1; background: rgba(231, 76, 60, 0.2); border: 1px solid #e74c3c; }
.success-auth { color: #a9dfbf; background: rgba(46, 204, 113, 0.2); border: 1px solid #2ecc71; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5em; }
    .hero-content p { font-size: 1.1em; }
    .cta-button { padding: 15px 40px; font-size: 1.2em; }
}

/* Blog için temel stiller */
        .blog-section { padding: 50px 20px; background: #1a1a1a; color: #ecf0f1; }
        .blog-section h2 { text-align: center; font-family: 'Cinzel', serif; font-size: 2.5em; color: #e67e22; margin-bottom: 40px; }
        .blog-posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
        .blog-post-card { background: #2c3e50; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.3s; }
        .blog-post-card:hover { transform: translateY(-10px); }
        .blog-post-card img { width: 100%; height: 200px; object-fit: cover; }
        .blog-post-content { padding: 20px; }
        .blog-post-content h3 { font-family: 'Cinzel', serif; color: #e67e22; margin-top: 0; }
        .blog-post-meta { font-size: 0.8em; color: #bdc3c7; margin-bottom: 15px; }
        .blog-post-excerpt { color: #ecf0f1; line-height: 1.6; }
		
		
		
		/* =================================
   PROFESYONEL BLOG BÖLÜMÜ STİLLERİ
   ================================= */
.blog-section {
    padding: 80px 0;
    background-color: #0f121a; /* Daha koyu, şık bir arkaplan */
    position: relative;
    overflow: hidden;
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title p {
    font-size: 16px;
    color: #a9a9b3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-post-card {
    background-color: #1c1f29;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2c313d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.15);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #a9a9b3;
    margin-bottom: 15px;
}

.post-meta .author {
    color: #e67e22; 
    font-weight: 500;
}

.post-meta i {
    margin-right: 6px;
}

.post-title {
    margin: 0 0 15px 0;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    line-height: 1.4;
}

.post-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #e67e22;
}

.post-excerpt {
    color: #c5c5d0;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    color: #ffffff;
    letter-spacing: 0.5px;
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Mobil Cihazlar İçin Uyumluluk */
@media (max-width: 992px) {
    .blog-posts-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-posts-container {
        grid-template-columns: 1fr;
    }
    .section-title h2 {
        font-size: 28px;
    }
}