/*!
Theme Name: xxxuo
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: xxxuo
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

xxxuo is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {

    /* ===== BACKGROUNDS ===== */

    --bg-body: #060B16;
    --bg-main: #0B1220;
    --bg-panel: #131822;
    --bg-card: #1A2130;
    --bg-hover: #222B3D;

    /* ===== TEXT COLORS ===== */

    --text-main: #DDE3EC;
    --text-soft: #A8B1C1;
    --text-muted: #8E98A8;

    /* ===== ACCENT COLORS ===== */

    --accent-blue: #4DA3FF;
    --accent-cyan: #65D9FF;
    --accent-purple: #6A63FF;

    /* ===== EXTRA COLORS ===== */

    --success: #58D68D;
    --danger: #FF5A7A;
    --warning: #FFC857;

    /* ===== BORDERS ===== */

    --border-soft: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.14);

    /* ===== SHADOWS ===== */

    --shadow-dark:
        0 10px 30px rgba(0, 0, 0, 0.35);

    --shadow-blue:
        0 0 20px rgba(77, 163, 255, 0.25);

}

/* =========================
   TYPOGRAPHY SYSTEM
========================= */

/* ===== BODY ===== */


html {
    scroll-behavior: smooth;
}

body {

    margin: 0;
    background: var(--bg-body);
    color: var(--text-main);
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== HEADINGS ===== */

h1,
h2,
h3,
h4,
.logo {

    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    margin: 0;
}

/* ===== TITLE SIZES ===== */

h1 {
    font-size: 42px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

/* ===== PARAGRAPH ===== */

p {
    color: var(--text-soft);
}

/* ===== LINKS ===== */

a {

    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--accent-cyan);
}

/* ===== MENU ===== */

.main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-icon {
    width: 30px;
    height: 30px;
    background: #2B3345;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.nav-icon img {
    width: 15px;
    height: 15px;
    display: block;
    transition: 0.3s;
    filter:
        brightness(0) invert(1);
}

.main-nav a:hover .nav-icon img {

    filter:
        brightness(0) saturate(100%) invert(67%) sepia(96%) saturate(1366%) hue-rotate(176deg) brightness(101%) contrast(101%);
}

.hamburger {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 34px;
    padding: 10px 20px;
    cursor: pointer;
}


/* ===== SMALL TEXT ===== */

.small-text {
    font-size: 13px;
    color: var(--text-muted);
}

.wrapper {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.main-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 999;
    background: rgba(22, 30, 48, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 20px 0;
    border-radius: 12px;
}

.main-header ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.main-header ul li a {
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;

}


/* ==============================================================
   HEADER
============================================================== */

.main-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 1200px;
    padding: 20px 25px;

    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;

    z-index: 999;

    background: rgba(22, 30, 48, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

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

.header-logo img {
    width: 140px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-header ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.main-header ul li a {
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
}


/* ==============================================================
   HERO
============================================================== */

.main-hero {
    width: 100%;
    height: 600px;
    min-height: 600px;
    margin-top: 210px;
    padding: 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 50%,
            rgba(34, 211, 238, 0.12),
            transparent 30%),
        radial-gradient(circle at 20% 30%,
            rgba(139, 92, 246, 0.10),
            transparent 35%),
        #080d16;
    border: none;
    border-radius: 0;
}

.hero-content {
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1 1 auto;
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #22d3ee;
}

.hero-text h1 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 40px;
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: 4px;
    color: #f8fafc;
}

.hero-text p {
    max-width: 500px;
    margin: 25px 0 30px;
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #94a3b8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 13px 22px;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.25s ease;
    position: relative;
    z-index: 11;
}

.hero-button-primary {
    background: #22d3ee;
    color: #071018 !important;
}

.hero-button-primary:hover,
.hero-button-primary:focus {
    background: #22d3ee;
    color: #071018 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.25);
}

.hero-button-secondary {
    border: 1px solid #334155;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.02);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus {
    border-color: #22d3ee;
    color: #22d3ee;
}

.hero-logo {
    flex: 0 0 430px;
    width: 430px;
    min-width: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 1;
}

.hero-logo img {
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;

    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;

    filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.18));
}


/* Main Content Start */

.content-parent {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
    margin-top: 20px;
}

.content-parent .content-box {
    width: 100%;
    background-color: #202121;
    min-height: 100px;
    padding: 30px;
    margin: 20px 0;
}

.content-sidebar {
    margin-top: 60px;
}

.content-sidebar .market {
    height: 100px;
    background-image: url(images/bg4.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 35px;
    font-family: roboto;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.content-sidebar .market:hover {
    transform: translateY(-5px);
}

.content-sidebar h4 {
    background-color: #164e63;
    padding: 10px 0 10px 20px;
    font-size: 20px;
    margin-top: 50px;
}

.content-sidebar ul {
    list-style-type: none;
}

.content-sidebar ul li {
    margin: 10px;
    padding: 17px 0;
    border-bottom: 1px solid #3b3b3b;
}

.content-parent i {
    color: #ff9100;
    font-size: 18px;
    margin-right: 5px;
}

/* Main Content End */

.media-section .arrow {
    width: 50px;
    height: 50px;
    background-color: #212a50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 4px;
}

.media-section .arrow-up:hover {
    background: #4DA3FF;
    cursor: pointer;
}

footer {
    width: 100%;
}

footer .arrow-up {
    width: 35px;
    height: 35px;
    background:
        linear-gradient(to bottom,
            #50525C,
            #353740);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 30px auto 0;
    position: relative;
    top: 18px;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: 0.3s;
}

footer .arrow-up:hover {
    background:
        linear-gradient(to bottom,
            #949494,
            #3a3a3a);
    cursor: pointer;
}

footer .arrow-up span {
    font-size: 22px;
    position: relative;
    top: -1px;
}

footer hr {
    height: 1px;
    border: 0;
    outline: 0;
    background-color: #313131;
}

.footer-nav {
    margin-top: 40px;
}

.footer-nav ul li a {
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-nav ul li a {
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.footer-links a {
    width: 25px;
    height: 25px;
    display: flex;
}

.footer-links .footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer-links img {
    width: 40px;
    background: #ffffff;
    border-radius: 50%;
    padding: 5px;
}

.footer-links .social {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
}

/* Dosyalar Start */

.staff-h1,
.goruntuler-h1 {
    text-align: center;
    margin-top: 40px;
}

.staff ul {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

/* Görüntüler Start */

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

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Responsive Start */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    /* =========================
       MOBILE HEADER
    ========================= */

    .main-header {
        position: static;
        width: 100%;
        max-width: 100vw;

        margin: 0;
        padding: 15px 0 0;

        box-sizing: border-box;
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;

        border-radius: 0;
    }

    .header-logo {
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-logo img {
        width: 120px;
        height: auto;
    }

    .main-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 55px;
        height: 45px;

        margin: 10px auto;

        padding: 0;

        background: rgba(255, 255, 255, 0.05);
        border: 0;
        border-radius: 6px;

        color: white;
        font-size: 24px;
        line-height: 1;

        cursor: pointer;
        z-index: 9999;
    }

    /* =========================
       MOBILE MENU
    ========================= */

    .main-header ul {
        display: flex;
        flex-direction: column;
        align-items: center;

        width: 100%;

        padding: 0;
        margin: 0;

        gap: 0;
    }

    .main-header li {
        width: 100%;
    }

    .main-nav ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;

        max-height: 0;
        overflow: hidden;

        margin: 0;
        padding: 0;

        transition: max-height 0.4s ease;
        gap: 0;
    }

    .main-nav ul.open {
        max-height: 600px;
    }

    .main-nav a {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        box-sizing: border-box;
    }

    /* =========================
       MOBILE HERO
    ========================= */

    .main-hero {
        height: auto;
        min-height: 0;
        margin-top: 0;
        border-radius: 0;
    }

    .hero-content {
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 40px;
	line-height: 1.5;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-logo {
        width: 80%;
        min-width: 0;
        flex-basis: auto;
        max-width: 350px;
    }

    /* =========================
       OTHER MOBILE CONTENT
    ========================= */

    .news-boxes,
    .info,
    .statistics-3,
    .statistics-table {
        grid-template-columns: 1fr;
    }

    .statistics .three-box {
        grid-template-columns: 1fr;
    }

    .account-slider {
        flex-direction: column;
    }

    .media-section,
    .media-items {
        flex-direction: column;
    }

    .media-section {
        padding: 15px;
    }

    /* =========================
       MOBILE CONTENT
    ========================= */

    .content-parent {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
    }

    /* MOBILE NEWS */
    .content-main {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .news-card {
        width: 100%;
    }

    /* =========================
       MOBILE FOOTER
    ========================= */

    .footer-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-nav li {
        width: 100%;
    }

    .footer-nav a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .footer-links {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 20px;
        padding: 20px 0;
        text-align: center;
    }

    .footer-links > :first-child {
        text-align: center !important;
        justify-self: center !important;
        width: 100% !important;
    }

    .footer-links .footer-logo {
        justify-content: center !important;
    }

    .footer-links .social {
        justify-content: center !important;
    }


    .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

}

/* Single Page CSS Fix */

.header-home {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.header-inner {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 20px auto;
}

/* Single.php CSS */

.single-page {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.single-post {
    background: #1d1d1d;
    padding: 30px;
    border-radius: 12px;
}

.post-title {
    font-size: 38px;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    color: #999;
    font-size: 15px;
}

.post-thumbnail {
    margin-bottom: 30px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.post-content {
    line-height: 1.8;
    font-size: 18px;
}

.post-tags {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.post-tags a {
    color: #d4af37;
    text-decoration: none;
}

.post-tags a:hover {
    text-decoration: underline;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #444;
}

.prev-post,
.next-post {
    flex: 1;
}

.next-post {
    text-align: right;
}

.prev-post a,
.next-post a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.prev-post a:hover,
.next-post a:hover {
    color: #d4af37;
}

.edit-post-link {
    margin-left: 20px;
}

.edit-post-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.edit-post-link a:hover {
    text-decoration: underline;
}

.date-author {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.edit-post-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.edit-post-link a:hover {
    text-decoration: underline;
}

.archive-thumbnail {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* WordPress Block Widgets */

.content-sidebar .wp-block-heading {
    background-color: #1a2535;
    padding: 10px 0 10px 20px;
    margin: 30px 0 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.content-sidebar .wp-block-group {
    margin: 0;
    padding: 0;
}

.content-sidebar .wp-block-latest-posts,
.content-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-sidebar .wp-block-latest-posts li,
.content-sidebar ul li {
    margin: 10px;
    padding: 17px 0;
    border-bottom: 1px solid #3b3b3b;
}

.content-sidebar .wp-block-latest-posts li a,
.content-sidebar ul li a {
    color: var(--text-main);
    text-decoration: none;
}

.content-sidebar .wp-block-latest-posts li a:hover,
.content-sidebar ul li a:hover {
    color: var(--accent-cyan);
}

.main-nav .home-icon>a::before {
    content: "\f015";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-top: -2px;
    display: inline-block;
    vertical-align: middle;
}

/* Main Menu Icons */

.main-nav .forum-icon>a::before {
    content: "\f075";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-top: -2px;
}

.main-nav .files-icon>a::before {
    content: "\f15b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-top: -2px;
}

.main-nav .gallery-icon>a::before {
    content: "\f03e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-top: -2px;
}

.main-nav .contact-icon>a::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-top: -2px;
}

.main-nav .guilds-icon>a::before {
    content: "\f0c0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-top: -2px;
}

.main-nav .about-icon>a::before {
    content: "\f129";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-top: -2px;
}

/* Footer Menü CSS */

.footer-nav ul#menu-footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-nav ul#menu-footer-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav ul#menu-footer-menu li a {
    font-family: "Rajdhani", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer Links */

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px 0;
}

.footer-links>div:first-child {
    text-align: left;
    font-size: 14px;
}

.footer-links .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links .footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-links .social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.footer-links .social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links .social img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Footer Logo Fix */

.footer-links .footer-logo img {
    width: 130px;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.footer-links .footer-logo a {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Icons CSS */

.footer-links .social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
}

.footer-links .social i {
    font-size: 18px;
}

.footer-links .social a:hover {
    color: var(--accent-cyan);
}

/* ==============================================================
   NEWS / FRONT PAGE
============================================================== */

.news-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 25px 0 0;
    padding: 0 0 3px;
}

.news-eyebrow {
    display: block;
    margin-bottom: 4px;
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-cyan);
}

.news-header h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.content-main {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-content: start;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
    min-width: 0;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(101, 217, 255, 0.28);
    box-shadow: var(--shadow-dark);
}

.news-card>a:first-child {
    display: block;
    overflow: hidden;
}

.news-card .archive-thumbnail {
    width: 100%;
    max-width: none;
    height: 210px;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: transform 0.35s ease;
}

.news-card:hover .archive-thumbnail {
    transform: scale(1.03);
}

.news-card>h2 {
    margin: 22px 22px 10px;
    font-family: "Rajdhani", sans-serif;
    font-size: 25px;
    line-height: 1.15;
}

.news-card>h2 a {
    color: #ffffff;
}

.news-card>h2 a:hover {
    color: var(--accent-cyan);
}

.news-card .date-author {
    margin: 0 22px 14px;
    gap: 14px;
    color: var(--text-muted);
    font-size: 13px;
}

.news-card .meta-item {
    color: var(--text-muted);
}

.news-card .meta-item i {
    color: var(--accent-cyan);
    font-size: 14px;
    margin-right: 0;
}

.news-card>p:not(.date-author) {
    margin: 0 22px 18px;
    color: var(--text-soft);
    line-height: 1.7;
}

.news-card .read-more {
    display: inline-flex;
    align-items: center;
    margin: 0 22px 22px;
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-cyan);
}

.news-card .read-more::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.news-card .read-more:hover::after {
    transform: translateX(4px);
}

.news-empty {
    grid-column: 1 / -1;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
}

/* FINAL MOBILE OVERRIDES */
@media (max-width: 768px) {

    .content-parent {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .content-parent .content-main {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .content-parent .news-card {
        width: 100% !important;
    }

    .footer-links {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        text-align: center !important;
    }

    .footer-links > :first-child {
        text-align: center !important;
        justify-self: center !important;
        width: 100% !important;
    }

    .footer-links .footer-logo {
        justify-content: center !important;
    }

    .footer-links .social {
        justify-content: center !important;
    }

.content-sidebar ul li a {
    display: block;
    text-align: center;
    }
	@media (max-width: 768px) {

    .main-header {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        z-index: 9999 !important;
    }

    .header-home {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 !important;
    }

    .main-hero {
        position: relative !important;
        z-index: 1 !important;
    }
}
.wrapper {
    padding-left: 15px;
    padding-right: 15px;
    }

.skip-link {
    display: none !important;
    }
}

/* Hero Background */

.main-hero {
        background-image:
            linear-gradient(
                rgba(8, 13, 22, 0.50),
                rgba(8, 13, 22, 0.75)
            ),
            url("images/bg5.jpg");

        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

/* Remove Skip Link */

.skip-link,
.skip-link:focus {
    display: none !important;
}

/* Single.php layout */

.single-content {
    grid-template-columns: 1fr !important;
}

/* Page.php width 100% fix */

.page-id-18 .content-main {
    grid-template-columns: 1fr !important;
}

.downloads-page .download-item {
    margin: 20px 0;
}

* Page-goruntuler.php width 100% fix */

.gallery-page {
    grid-column: 1 / -1;
    width: 100%;
}

/* lighbox */

.lightbox {
    cursor: pointer;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .content-main .gallery-page .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 15px;
        width: 100%;
    }
}

/* Gallery */

.gallery-page {
    grid-column: 1 / -1;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-item {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Mobile Gallery */

@media (max-width: 768px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 15px;
    }

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

/* Lighbox */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
}

.lightbox-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.show {
    opacity: 1;
}

.lightbox-overlay img {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-overlay.show img {
    transform: scale(1);
}

/* iletişim page */

.iletisim-page .content-main {
    grid-template-columns: 1fr;
    width: 100% !important;
}


/* Form CSS */

.iletisim-page form {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.iletisim-page form input,
.iletisim-page form textarea {
    background: #102b3b;
    border: 1px solid #18a9cf;
    border-radius: 8px;
    color: #ffffff;
    padding: 15px 18px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.iletisim-page form textarea {
    height: 300px;
    resize: none;
}

.iletisim-page form input::placeholder,
.iletisim-page form textarea::placeholder {
    color: #9fb3c8;
    opacity: 1;
}

.iletisim-page form input:focus,
.iletisim-page form textarea:focus {
    border-color: #22d3ee;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.15);
}

.iletisim-page form button {
    width: 180px;
    padding: 14px 20px;
    background: #18a9cf;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.iletisim-page form button:hover {
    background: #22d3ee;
    transform: translateY(-2px);
}

.iletisim-page form button i {
    color: #ffffff;
}

.content-sidebar .sidebar-box ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-sidebar .sidebar-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.content-sidebar .sidebar-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.content-sidebar .sidebar-social a {
    width: 45px !important;
    height: 45px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box;
    border-radius: 8px;
    text-decoration: none;
    line-height: 1 !important;
}

.content-sidebar .sidebar-social a:nth-child(1) {
    background: #ff0000; /* YouTube */
    color: #ffffff;
}

.content-sidebar .sidebar-social a:nth-child(2) {
    background: #5865f2; /* Discord */
    color: #ffffff;
}

.content-sidebar .sidebar-social a:nth-child(3) {
    background: #000000; /* X */
    color: #ffffff;
}

.content-sidebar .sidebar-social a:nth-child(4) {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); /* Instagram */
    color: #ffffff;
}

.content-sidebar .sidebar-social a:nth-child(5) {
    background: #171a21; /* Steam */
    color: #ffffff;
}

.content-sidebar .sidebar-social a i {
    display: block;
    line-height: 1 !important;
    margin: 0 !important;
}

.sidebar-box:nth-child(2),
.sidebar-box:nth-child(3) {
    margin-top: 40px;
}

.sidebar-box h3 {
    margin-bottom: 30px;
}

/* Single.php article alanı */

.single-page .content-box h2 {
    font-size: 36px;
    margin: 0 0 20px;
    color: #ffffff;
    line-height: 1.2;
}


.content-sidebar .sidebar-article {
    padding: 15px;
    margin-top: 12px;
    background: #132332;
    border: 1px solid #1d4054;
    border-radius: 8px;
}

.content-sidebar .sidebar-article h4 {
    margin: 0 0 8px;
    color: #22d3ee;
    font-size: 16px;
}

.content-sidebar .sidebar-article p {
    margin: 0 0 12px;
    color: #a9bac8;
    font-size: 14px;
    line-height: 1.5;
}

.content-sidebar .sidebar-article > a {
    color: #22d3ee;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.content-sidebar .sidebar-article > a:hover {
    color: #ffffff;
}

.content-sidebar .sidebar-box h3 i {
    color: #22d3ee;
}

.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-sidebar h3,
.content-sidebar h4 {
    color: #cbd5e1;
}


/* ==============================================================
   HAKKIMIZDA SAYFASI
   ============================================================== */

.about-page {
    width: 100%;
    background: var(--bg-body);
    color: var(--text-main);
}

.about-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* HERO */
.about-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url("images/hero-bg.jpg") center / cover no-repeat;
}

.about-hero-overlay,
.about-cta-overlay {
    position: absolute;
    inset: 0;
}

.about-hero-overlay {
    background: linear-gradient(rgba(5,10,18,.35), rgba(5,10,18,.78));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 80px 20px;
    text-align: center;
}

.about-eyebrow {
    display: block;
    margin-bottom: 8px;
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--accent-cyan);
}

.about-hero h1,
.about-section h2,
.about-cta h2 {
    font-family: "Rajdhani", sans-serif;
    color: #fff;
}

.about-hero h1 {
    margin: 0;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1;
}

.about-hero-subtitle {
    margin: 15px 0 0;
    font-size: 22px;
    color: #e8edf5;
}

.about-divider,
.about-title-line {
    display: block;
    width: 90px;
    height: 1px;
    margin: 25px auto;
    background: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(101,217,255,.35);
}

.about-hero-text {
    max-width: 680px;
    margin: 0 auto;
    color: #c2cad7;
    font-size: 16px;
    line-height: 1.8;
}

/* BİZ KİMİZ */
.about-section {
    border-top: 1px solid var(--border-soft);
}

.about-intro {
    padding: 80px 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(77,163,255,.08), transparent 35%),
        var(--bg-main);
}

.about-two-column {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 70px;
    align-items: center;
}

.about-text h2,
.about-vision-content h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-text .about-title-line,
.about-vision-content .about-title-line {
    margin: 20px 0 25px;
}

.about-text p,
.about-vision-content p {
    margin: 0 0 18px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-panel);
    box-shadow: var(--shadow-dark);
}

.about-image img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* BUTTON */
.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 170px;
    margin-top: 10px;
    padding: 12px 18px;
    border: 1px solid rgba(101,217,255,.55);
    background: rgba(255,255,255,.025);
    color: #fff;
    text-decoration: none;
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: .25s ease;
}

.about-button span {
    font-size: 22px;
    line-height: 0;
}

.about-button:hover {
    border-color: var(--accent-cyan);
    background: rgba(101,217,255,.08);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* NEDEN BİZ */
.about-values {
    padding: 75px 0 85px;
    background: var(--bg-body);
}

.about-section-heading {
    margin-bottom: 45px;
    text-align: center;
}

.about-section-heading h2 {
    margin: 0;
    font-size: 48px;
    letter-spacing: 2px;
}

.about-section-heading p {
    max-width: 700px;
    margin: 12px auto 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 15px;
}

.about-value-card {
    min-height: 250px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border-light);
    background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0)), var(--bg-panel);
    transition: .25s ease;
}

.about-value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101,217,255,.45);
    box-shadow: var(--shadow-blue);
}

.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    margin-bottom: 20px;
    color: #d8b078;
    font-size: 34px;
}

.about-value-card h3 {
    margin: 0 0 15px;
    font-family: "Rajdhani", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

.about-value-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

/* VİZYON */
.about-vision {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    min-height: 430px;
    background: var(--bg-main);
}

.about-vision-image {
    min-height: 430px;
    overflow: hidden;
}

.about-vision-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.75);
}

.about-vision-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.about-vision-content .about-title-line {
    margin: 20px 0 25px;
}

.about-vision-content .about-button {
    align-self: flex-start;
}

/* CTA */
.about-cta {
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url("images/hero-bg.jpg") center / cover no-repeat;
}

.about-cta-overlay {
    background: rgba(5,10,18,.72);
}

.about-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-cta h2 {
    margin: 0;
    font-size: 42px;
    letter-spacing: 2px;
}

.about-cta p {
    margin: 10px 0 20px;
    color: #d2d8e2;
}

/* MOBILE */
@media (max-width: 768px) {

    .about-container {
        width: calc(100% - 30px);
    }

    .about-hero {
        min-height: 380px;
    }

    .about-hero-content {
        padding: 65px 15px;
    }

    .about-hero h1 {
        font-size: 46px;
        letter-spacing: 3px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .about-hero-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-intro {
        padding: 55px 0;
    }

    .about-two-column {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-text h2,
    .about-vision-content h2,
    .about-section-heading h2 {
        font-size: 36px;
    }

    .about-text p,
    .about-vision-content p {
        font-size: 14px;
    }

    .about-image img {
        height: 250px;
    }

    .about-values {
        padding: 55px 0;
    }

    .about-value-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-value-card {
        min-height: auto;
    }

    .about-vision {
        grid-template-columns: 1fr;
    }

    .about-vision-image {
        min-height: 260px;
        max-height: 260px;
    }

    .about-vision-content {
        padding: 55px 20px;
    }

    .about-cta {
        min-height: 240px;
    }

    .about-cta h2 {
        font-size: 30px;
        padding: 0 15px;
    }
}

/* =========================================================
   RAVENFALL UO - DOSYALAR SAYFASI
   ========================================================= */

.downloads-page {
    background: #080d16;
    color: var(--text-main);
}

.downloads-page * {
    box-sizing: border-box;
}

.downloads-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* HERO */

.downloads-hero {
    min-height: 420px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(8, 13, 22, .38), rgba(8, 13, 22, .72)),
        url("../images/hero-bg.jpg") center / cover no-repeat;
}

.downloads-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(77, 163, 255, .10), transparent 35%),
        linear-gradient(to bottom, transparent 60%, #080d16 100%);
}

.downloads-hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 40px));
    padding: 70px 0 55px;
}

.downloads-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-cyan);
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.downloads-hero h1 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(48px, 7vw, 76px);
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1;
    color: #fff;
}

.downloads-hero-subtitle {
    margin: 18px 0 14px;
    font-size: 21px;
    color: #e5ebf3;
}

.downloads-divider,
.downloads-title-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 20px auto;
    background: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(101, 217, 255, .35);
}

.downloads-hero-text {
    max-width: 650px;
    margin: 0 auto;
    color: #b9c3d1;
    font-size: 16px;
    line-height: 1.8;
}

/* CONTENT */

.downloads-section {
    padding: 0 0 70px;
}

.downloads-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.downloads-tab {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--text-soft);
    text-decoration: none;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid transparent;
    border-bottom: 0;
    transition: .25s ease;
}

.downloads-tab i {
    font-size: 20px;
}

.downloads-tab:hover,
.downloads-tab.active {
    color: #fff;
    border-color: rgba(101, 217, 255, .35);
    background: linear-gradient(180deg, rgba(19, 37, 52, .75), rgba(8, 13, 22, .3));
    box-shadow: inset 0 -2px 0 var(--accent-cyan);
}

/* LARGE DOWNLOAD CARDS */

.download-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 190px;
    min-height: 225px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: linear-gradient(110deg, #101822, #0b111a);
    transition: border-color .25s ease, transform .25s ease;
}

.download-card:hover {
    border-color: rgba(101, 217, 255, .38);
    transform: translateY(-2px);
}

.download-card-image {
    min-height: 225px;
    overflow: hidden;
}

.download-card-image img,
.downloads-small-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.download-card:hover .download-card-image img,
.downloads-small-card:hover .downloads-small-image img {
    transform: scale(1.04);
}

.download-card-content {
    padding: 30px 34px;
}

.download-card-content .downloads-eyebrow {
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: 5px;
}

.download-card-content h2,
.downloads-small-content h2,
.downloads-help h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
}

.download-card-content h2 {
    font-size: 29px;
}

.download-card-content h3 {
    margin: 2px 0 10px;
    color: #e3b779;
    font-family: "Rajdhani", sans-serif;
    font-size: 19px;
    font-weight: 500;
}

.download-card-content p {
    max-width: 570px;
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
}

.download-meta {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.download-meta > div {
    min-width: 145px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, .02);
}

.download-meta i {
    color: var(--accent-cyan);
    font-size: 18px;
}

.download-meta span {
    display: flex;
    flex-direction: column;
    color: var(--text-muted);
    font-size: 11px;
}

.download-meta strong {
    margin-top: 2px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.download-card-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px;
}

.download-button,
.downloads-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 25px;
    border: 1px solid var(--accent-cyan);
    color: #fff;
    text-decoration: none;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .25s ease;
}

.download-button {
    width: 100%;
    background: rgba(0, 180, 230, .04);
}

.download-button i {
    color: var(--accent-cyan);
}

.download-button:hover,
.downloads-outline-button:hover {
    color: #061018;
    background: var(--accent-cyan);
    box-shadow: 0 0 22px rgba(101, 217, 255, .18);
}

.download-card-action > span {
    color: var(--text-muted);
    font-size: 12px;
}

/* SMALL CARDS */

.downloads-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.downloads-small-card {
    min-height: 205px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: #0e151e;
}

.downloads-small-image {
    overflow: hidden;
}

.downloads-small-content {
    display: flex;
    gap: 18px;
    padding: 27px;
}

.downloads-small-content > i {
    flex: 0 0 auto;
    color: #e3b779;
    font-size: 28px;
    padding-top: 2px;
}

.downloads-small-content h2 {
    font-size: 23px;
}

.downloads-small-content p {
    margin: 8px 0 17px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.downloads-outline-button {
    min-height: 42px;
    padding: 0 18px;
    border-color: rgba(101, 217, 255, .7);
    font-size: 12px;
    letter-spacing: 1.5px;
}

.downloads-outline-button span {
    font-size: 20px;
    line-height: 0;
}

/* HELP */

.downloads-help {
    min-height: 92px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    padding: 20px 25px;
    border: 1px solid rgba(77, 163, 255, .25);
    background: linear-gradient(90deg, rgba(15, 39, 56, .75), rgba(9, 17, 27, .8));
}

.downloads-help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 30px;
}

.downloads-help h2 {
    font-size: 17px;
    letter-spacing: 1px;
}

.downloads-help p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}

/* CTA */

.downloads-cta {
    min-height: 260px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(7, 13, 22, .48), rgba(7, 13, 22, .78)),
        url("../images/hero-bg.jpg") center / cover no-repeat;
}

.downloads-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #080d16 0%, transparent 35%, transparent 65%, #080d16 100%);
}

.downloads-cta-content {
    position: relative;
    z-index: 1;
    padding: 50px 20px;
}

.downloads-cta-content h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 38px;
    letter-spacing: 3px;
    color: #fff;
}

.downloads-cta-content p {
    margin: 8px 0 20px;
    color: #c5ced9;
}

/* MOBILE */

@media (max-width: 768px) {
    .downloads-hero {
        min-height: 390px;
        margin-top: 0;
    }

    .downloads-hero-content {
        width: calc(100% - 30px);
        padding: 60px 0 45px;
    }

    .downloads-hero h1 {
        font-size: 45px;
        letter-spacing: 3px;
    }

    .downloads-hero-subtitle {
        font-size: 17px;
    }

    .downloads-hero-text {
        font-size: 14px;
        line-height: 1.65;
    }

    .downloads-container {
        width: calc(100% - 30px);
    }

    .downloads-tabs {
        grid-template-columns: 1fr;
    }

    .downloads-tab {
        min-height: 58px;
        border-bottom: 1px solid var(--border-light);
    }

    .download-card {
        grid-template-columns: 1fr;
    }

    .download-card-image {
        height: 190px;
        min-height: 190px;
    }

    .download-card-content {
        padding: 25px 20px;
    }

    .download-card-content h2 {
        font-size: 25px;
    }

    .download-meta {
        flex-direction: column;
    }

    .download-meta > div {
        width: 100%;
    }

    .download-card-action {
        padding: 0 20px 25px;
    }

    .download-button {
        width: 100%;
    }

    .downloads-small-grid {
        grid-template-columns: 1fr;
    }

    .downloads-small-card {
        grid-template-columns: 1fr;
    }

    .downloads-small-image {
        height: 160px;
    }

    .downloads-small-content {
        padding: 22px 20px;
    }

    .downloads-help {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
        padding: 25px 20px;
    }

    .downloads-help-icon {
        margin-bottom: 5px;
    }

    .downloads-help .downloads-outline-button {
        width: 100%;
    }

    .downloads-cta-content h2 {
        font-size: 29px;
    }
}

/* =========================
   DOWNLOADS PAGE
========================= */

.downloads-page {
    padding: 40px;
}

.downloads-header {
    text-align: center;
    margin-bottom: 35px;
}

.downloads-eyebrow {
    display: block;
    margin-bottom: 8px;

    color: var(--accent-cyan);

    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.downloads-header h1 {
    margin: 0 0 12px;

    font-family: "Rajdhani", sans-serif;
    font-size: 36px;
    font-weight: 700;

    color: var(--text-main);
}

.downloads-header p {
    max-width: 600px;
    margin: 0 auto;

    color: var(--text-soft);
    line-height: 1.7;
}


/* Download Cards */

.download-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-card {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 20px;

    background: var(--bg-card);

    border: 1px solid var(--border-soft);
    border-radius: 8px;

    transition: 0.2s;
}

.download-card:hover {
    border-color: rgba(77, 163, 255, 0.35);

    background: var(--bg-hover);

    transform: translateY(-2px);
}


/* Icon */

.download-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(77, 163, 255, 0.10);

    border: 1px solid rgba(77, 163, 255, 0.20);
    border-radius: 8px;

    color: var(--accent-cyan);

    font-size: 20px;
}


/* Text */

.download-info {
    flex: 1;
}

.download-info h2 {
    margin: 0 0 5px;

    font-family: "Rajdhani", sans-serif;
    font-size: 20px;

    color: var(--text-main);
}

.download-info p {
    margin: 0;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.5;
}


/* Button */

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 18px;

    background: var(--accent-blue);

    border-radius: 6px;

    color: #fff;

    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.2s;
}

.download-button:hover {
    background: var(--accent-cyan);
    color: #06101c;
}


/* Mobile */

@media (max-width: 768px) {

    .downloads-page {
        padding: 25px 15px;
    }

    .downloads-header h1 {
        font-size: 30px;
    }

    .download-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .download-info {
        min-width: 0;
    }

    .download-button {
        width: 100%;
        margin-top: 5px;
    }

}

/* ==============================================================
   HOMEPAGE REDESIGN
   Mockup'a göre front-page.php tasarımı
============================================================== */

.home-page {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.home-page * {
    box-sizing: border-box;
}

.home-section-inner,
.home-hero-inner {
    width: min(1200px, calc(100% - 60px));
    margin: 0 auto;
}

/* =========================
   HERO
========================= */

.home-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 10, 18, .88) 0%, rgba(5, 10, 18, .62) 48%, rgba(5, 10, 18, .30) 100%),
        url("images/bg5.jpg") center / cover no-repeat;
    border-bottom: 1px solid rgba(101, 217, 255, .10);
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(3,8,15,.55));
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 60px 0;
}

.home-hero-text {
    flex: 1 1 58%;
    max-width: 650px;
}

.home-eyebrow,
.home-section-eyebrow {
    display: block;
    color: var(--accent-cyan);
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-eyebrow {
    margin-bottom: 14px;
}

.home-hero-text h1 {
    margin: 0;
    color: #f8fafc;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(58px, 7vw, 88px);
    line-height: .9;
    font-weight: 700;
    letter-spacing: 4px;
}

.home-hero-lead {
    margin: 16px 0 12px;
    color: #eef5ff;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 500;
}

.home-hero-description {
    max-width: 520px;
    margin: 0 0 30px;
    color: #b7c2d2;
    font-size: 16px;
    line-height: 1.7;
}

.home-hero-buttons,
.home-cta-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.home-button {
    min-width: 170px;
    min-height: 48px;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.home-button:hover {
    transform: translateY(-2px);
}

.home-button-primary {
    color: #061018 !important;
    background: #22d3ee;
    box-shadow: 0 0 22px rgba(34, 211, 238, .22);
}

.home-button-primary:hover {
    background: #67e8f9;
    box-shadow: 0 0 30px rgba(34, 211, 238, .35);
}

.home-button-secondary {
    color: #e2e8f0 !important;
    background: rgba(5, 12, 22, .45);
    border: 1px solid rgba(148, 163, 184, .45);
}

.home-button-secondary:hover {
    border-color: rgba(101, 217, 255, .65);
    background: rgba(20, 35, 50, .65);
}

.home-hero-logo {
    flex: 0 0 390px;
    width: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-logo .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-logo img {
    width: 100%;
    max-width: 390px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 18px rgba(255,255,255,.08));
}

/* =========================
   INTRO
========================= */

.home-intro {
    position: relative;
    padding: 78px 0 82px;
    background:
        radial-gradient(circle at 50% 0%, rgba(34, 211, 238, .055), transparent 38%),
        #0a111d;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.home-section-heading {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.home-section-heading .home-section-eyebrow {
    margin-bottom: 8px;
}

.home-section-heading h2,
.home-news-heading h2,
.home-cta-content h2 {
    margin: 0;
    color: #f8fafc;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.home-section-heading h2 {
    font-size: clamp(34px, 4vw, 46px);
}

.home-section-heading > p {
    max-width: 760px;
    margin: 15px auto 0;
    color: #9eabba;
    font-size: 15px;
    line-height: 1.75;
}

.home-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-feature {
    min-height: 185px;
    padding: 28px 25px;
    text-align: center;
    background: rgba(18, 27, 40, .78);
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 7px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(101, 217, 255, .28);
    box-shadow: 0 12px 35px rgba(0,0,0,.22);
}

.home-feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ddfff;
    font-size: 25px;
    background: rgba(34, 211, 238, .07);
    border: 1px solid rgba(34, 211, 238, .15);
    border-radius: 8px;
}

.home-feature h3 {
    margin: 0 0 8px;
    color: #e8eef7;
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.home-feature p {
    margin: 0;
    color: #8f9bad;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   NEWS
========================= */

.home-news {
    padding: 70px 0 76px;
    background: #080f1a;
}

.home-news-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.home-news-heading h2 {
    margin-top: 2px;
    font-size: 38px;
}

.home-news-heading p {
    margin: 5px 0 0;
    color: #8f9bad;
    font-size: 14px;
}

.home-news-all {
    flex-shrink: 0;
    min-height: 42px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dce6f2 !important;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 5px;
    font-family: "Rajdhani", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none !important;
}

.home-news-all:hover {
    color: var(--accent-cyan) !important;
    border-color: rgba(101, 217, 255, .38);
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-news-card {
    min-width: 0;
    overflow: hidden;
    background: #111a27;
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 7px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(101, 217, 255, .30);
    box-shadow: 0 14px 35px rgba(0,0,0,.24);
}

.home-news-image {
    display: block;
    height: 205px;
    overflow: hidden;
    background: linear-gradient(135deg, #111b2b, #17253a);
}

.home-news-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-news-card:hover .home-news-image img {
    transform: scale(1.035);
}

.home-news-image-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3c6b87;
    font-size: 42px;
}

.home-news-body {
    padding: 18px 18px 20px;
}

.home-news-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    color: #748297;
    font-size: 11px;
}

.home-news-meta i {
    margin-right: 4px;
    color: #4ddfff;
}

.home-news-body h3 {
    margin: 11px 0 8px;
    font-family: "Rajdhani", sans-serif;
    font-size: 22px;
    line-height: 1.15;
}

.home-news-body h3 a {
    color: #eef4fb !important;
    text-decoration: none !important;
}

.home-news-body h3 a:hover {
    color: var(--accent-cyan) !important;
}

.home-news-body > p {
    margin: 0 0 17px;
    color: #8e9aac;
    font-size: 13px;
    line-height: 1.65;
}

.home-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan) !important;
    font-family: "Rajdhani", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none !important;
}

.home-news-read-more i {
    transition: transform .2s ease;
}

.home-news-read-more:hover i {
    transform: translateX(4px);
}

.home-news-empty {
    grid-column: 1 / -1;
    padding: 35px;
    text-align: center;
    background: #111a27;
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 7px;
}

/* =========================
   CTA
========================= */

.home-cta {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(5, 10, 18, .62), rgba(5, 10, 18, .72)),
        url("images/bg5.jpg") center 58% / cover no-repeat;
    border-top: 1px solid rgba(101, 217, 255, .08);
    border-bottom: 1px solid rgba(101, 217, 255, .08);
}

.home-cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 15%, rgba(3,8,15,.55) 100%);
}

.home-cta-content {
    position: relative;
    z-index: 2;
    width: min(800px, calc(100% - 40px));
    padding: 58px 20px;
    text-align: center;
}

.home-cta-content .home-section-eyebrow {
    margin-bottom: 7px;
}

.home-cta-content h2 {
    font-size: clamp(38px, 5vw, 54px);
}

.home-cta-content p {
    margin: 10px 0 24px;
    color: #c1ccd9;
    font-size: 15px;
    line-height: 1.65;
}

.home-cta-buttons {
    justify-content: center;
}

.home-button-discord {
    color: #f5f3ff !important;
    background: rgba(83, 69, 190, .85);
    border: 1px solid rgba(145, 130, 255, .55);
    box-shadow: 0 0 20px rgba(99, 80, 220, .16);
}

.home-button-discord:hover {
    background: rgba(101, 82, 225, .95);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .home-section-inner,
    .home-hero-inner {
        width: calc(100% - 30px);
    }

    .home-hero {
        min-height: 0;
        background: #080f1a;
    }

    .home-hero-inner {
        min-height: 0;
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        padding: 60px 0;
        text-align: center;
    }

    .home-hero-text {
        width: 100%;
        max-width: 100%;
    }

    .home-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .home-hero-text h1 {
        font-size: 58px;
    }

    .home-hero-lead {
        font-size: 22px;
    }

    .home-hero-description {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }

    .home-hero-buttons,
    .home-cta-buttons {
        justify-content: center;
    }

    .home-hero-logo {
        width: min(280px, 75%);
        flex: 0 0 auto;
    }

    .home-hero-logo img {
        max-width: 100%;
    }

    .home-intro,
    .home-news {
        padding: 55px 0;
    }

    .home-section-heading {
        margin-bottom: 30px;
    }

    .home-section-heading h2 {
        font-size: 32px;
    }

    .home-features,
    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .home-feature {
        min-height: auto;
    }

    .home-news-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .home-news-heading h2 {
        font-size: 34px;
    }

    .home-news-all {
        align-self: flex-start;
    }

    .home-news-image {
        height: 210px;
    }

    .home-cta {
        min-height: 0;
    }

    .home-cta-content {
        padding: 55px 10px;
    }
}

@media (max-width: 480px) {
    .home-button {
        width: 100%;
    }

    .home-hero-buttons,
    .home-cta-buttons {
        width: 100%;
    }

    .home-hero-text h1 {
        font-size: 48px;
        letter-spacing: 2px;
    }
}

/* Ana sayfa - header boşluğu */
.home-page {
    padding-top: 80px !important;
}

/* ==============================================================
   MOBILE HEADER — LOGO LEFT / HAMBURGER RIGHT
   ============================================================== */

@media (max-width: 768px) {

    .main-header {
        position: relative !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        max-width: 100vw !important;
        min-height: 80px;

        padding: 10px 15px !important;
        box-sizing: border-box !important;

        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .ravenfall-brand {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        width: auto !important;
        height: auto !important;
        margin: 0 !important;
    }

    .ravenfall-brand img {
        display: block !important;
        width: 105px !important;
        height: auto !important;
    }

    .main-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        width: auto !important;
        margin: 0 !important;
    }

    .ravenfall-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 54px !important;
        height: 46px !important;

        margin: 0 !important;
        padding: 0 !important;
    }
}

/* ==========================================================
   RAVENFALL HEADER — DESKTOP + MOBILE
   ========================================================== */

.ravenfall-header {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    min-height: 90px;
    padding: 10px 20px !important;
    box-sizing: border-box !important;
}

.ravenfall-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 110px !important;
    width: 110px !important;
    height: 80px !important;
    margin: 0 !important;
}

.ravenfall-brand img {
    display: block !important;
    width: 100px !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 80px !important;
    object-fit: contain !important;
}

.ravenfall-nav {
    flex: 1 1 auto !important;
    width: auto !important;
    margin: 0 !important;
}

.ravenfall-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.ravenfall-menu li {
    width: auto !important;
    margin: 0 !important;
}

.ravenfall-menu li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;

    white-space: nowrap !important;
    padding: 8px 4px !important;
}

.ravenfall-menu-toggle {
    display: none !important;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    .ravenfall-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        max-width: 100% !important;
        min-height: 80px;

        padding: 10px 15px !important;
        box-sizing: border-box !important;

        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }

    .ravenfall-brand {
        flex: 0 0 auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        width: 105px !important;
        height: auto !important;
        margin: 0 !important;
    }

    .ravenfall-brand img {
        width: 105px !important;
        max-width: 105px !important;
        max-height: none !important;
        height: auto !important;
    }

    .ravenfall-nav {
        flex: 0 0 auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        width: auto !important;
        margin: 0 !important;
    }

    .ravenfall-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 54px !important;
        height: 46px !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .ravenfall-menu {
        display: none !important;

        position: absolute !important;
        top: 100% !important;
        right: 0 !important;

        width: 100% !important;
        z-index: 10000 !important;

        flex-direction: column !important;
        gap: 0 !important;
    }

    .ravenfall-menu.is-open {
        display: flex !important;
    }

    .ravenfall-menu li {
        width: 100% !important;
    }

    .ravenfall-menu li a {
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: flex-start !important;
        padding: 15px 20px !important;
    }
}

/* ==========================================================
   MOBILE HEADER
   LOGO LEFT — HAMBURGER RIGHT — VERTICAL CENTER
   ========================================================== */

@media (max-width: 768px) {

    .ravenfall-header {
        position: relative !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        max-width: 100% !important;
        min-height: 80px !important;

        margin: 0 !important;
        padding: 10px 15px !important;
        box-sizing: border-box !important;

        top: auto !important;
        left: auto !important;
        transform: none !important;
    }

    /* LOGO — SOL */
    .ravenfall-brand {
        flex: 0 0 auto !important;

        width: 120px !important;
        height: 90px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        margin: 0 !important;
    }

    .ravenfall-brand img {
        display: block !important;

        width: 120px !important;
        height: auto !important;
        max-width: 120px !important;
        max-height: 90px !important;

        object-fit: contain !important;
    }

    /* NAV + HAMBURGER — SAĞ */
    .ravenfall-nav {
        flex: 0 0 auto !important;

        width: auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        margin: 0 !important;
    }

    .ravenfall-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 54px !important;
        height: 46px !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }

    /* AÇILAN MENÜ */
    .ravenfall-menu {
        position: absolute !important;

        top: 100% !important;
        right: 15px !important;

        width: calc(100vw - 30px) !important;
        max-width: 430px !important;

        z-index: 10000 !important;
    }
}

/* ==============================================================
   RAVENFALL MENU REDESIGN
   Added as a final override block to preserve existing styles.
============================================================== */

.ravenfall-header {
    top: 18px;
    width: calc(100% - 30px);
    max-width: 1280px;
    min-height: 104px;
    box-sizing: border-box;
    padding: 10px 18px 10px 14px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    background:
        linear-gradient(180deg, rgba(10, 15, 24, 0.96), rgba(5, 10, 17, 0.92)),
        radial-gradient(circle at 12% 50%, rgba(101, 217, 255, 0.08), transparent 28%);
    border: 1px solid rgba(221, 183, 112, 0.42);
    border-radius: 3px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(10px);
}

.ravenfall-header::before,
.ravenfall-header::after {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(221, 183, 112, 0.55), transparent);
    pointer-events: none;
}

.ravenfall-header::before {
    left: 6px;
}

.ravenfall-header::after {
    right: 6px;
}

.ravenfall-brand {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    position: relative;
    z-index: 2;
}

.ravenfall-brand::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 4px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(101, 217, 255, 0.65), transparent);
    box-shadow: 0 0 10px rgba(101, 217, 255, 0.35);
}

.ravenfall-brand img {
    display: block;
    width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ravenfall-brand:hover img {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 8px 18px rgba(101, 217, 255, 0.15));
}

.ravenfall-nav {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ravenfall-menu {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.ravenfall-menu li {
    position: relative;
    min-width: 0;
}

.ravenfall-menu li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(221, 183, 112, 0.22), transparent);
}

.ravenfall-menu a {
    position: relative;
    min-height: 78px;
    padding: 8px 7px 13px !important;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px !important;
    color: #e5d6bd;
    font-family: "Rajdhani", sans-serif;
    font-size: 14px !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.25s ease, background-color 0.25s ease, text-shadow 0.25s ease;
}

.ravenfall-menu a::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 5px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: #65d9ff;
    box-shadow: 0 0 10px rgba(101, 217, 255, 0.75);
    transition: transform 0.25s ease;
}

.ravenfall-menu a::before {
    content: "";
    position: absolute;
    inset: 4px 3px;
    background: linear-gradient(180deg, rgba(101, 217, 255, 0.10), transparent 70%);
    border: 1px solid transparent;
    opacity: 0;
    transition: opacity 0.25s ease, border-color 0.25s ease;
    pointer-events: none;
}

.ravenfall-menu a i {
    position: relative;
    z-index: 1;
    font-size: 22px;
    color: #d7bd8f;
    transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.ravenfall-menu a span {
    position: relative;
    z-index: 1;
}

.ravenfall-menu a:hover,
.ravenfall-menu a:focus-visible {
    color: #ffffff;
    background: rgba(101, 217, 255, 0.045);
    text-shadow: 0 0 10px rgba(101, 217, 255, 0.28);
}

.ravenfall-menu a:hover::before,
.ravenfall-menu a:focus-visible::before {
    opacity: 1;
    border-color: rgba(101, 217, 255, 0.10);
}

.ravenfall-menu a:hover::after,
.ravenfall-menu a:focus-visible::after {
    transform: scaleX(1);
}

.ravenfall-menu a:hover i,
.ravenfall-menu a:focus-visible i {
    color: #65d9ff;
    transform: translateY(-1px);
    text-shadow: 0 0 12px rgba(101, 217, 255, 0.65);
}

body.home .ravenfall-menu li:first-child > a,
body.front-page .ravenfall-menu li:first-child > a {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(101, 217, 255, 0.10), rgba(101, 217, 255, 0.025));
}

body.home .ravenfall-menu li:first-child > a::after,
body.front-page .ravenfall-menu li:first-child > a::after {
    transform: scaleX(1);
}

body.home .ravenfall-menu li:first-child > a i,
body.front-page .ravenfall-menu li:first-child > a i {
    color: #65d9ff;
    text-shadow: 0 0 12px rgba(101, 217, 255, 0.65);
}

.ravenfall-play {
    width: 100%;
    min-height: 62px;
    box-sizing: border-box;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    justify-self: end;
    position: relative;
    color: #fff4dd;
    background:
        linear-gradient(180deg, rgba(123, 14, 16, 0.98), rgba(59, 7, 10, 0.98)),
        #5a0b0e;
    border: 1px solid rgba(226, 168, 90, 0.78);
    border-radius: 2px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(95, 18, 19, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.32);
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-transform: uppercase;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ravenfall-play::before,
.ravenfall-play::after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    width: 8px;
    border-top: 1px solid rgba(239, 199, 126, 0.75);
    border-bottom: 1px solid rgba(239, 199, 126, 0.75);
}

.ravenfall-play::before {
    left: 6px;
    border-left: 1px solid rgba(239, 199, 126, 0.75);
}

.ravenfall-play::after {
    right: 6px;
    border-right: 1px solid rgba(239, 199, 126, 0.75);
}

.ravenfall-play i {
    color: #ffd28e;
    font-size: 13px;
}

.ravenfall-play:hover,
.ravenfall-play:focus-visible {
    color: #ffffff;
    border-color: #ffd18b;
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(194, 38, 31, 0.32),
        0 10px 24px rgba(0, 0, 0, 0.35);
}

.ravenfall-menu-toggle {
    display: none;
}

@media (max-width: 1050px) and (min-width: 769px) {
    .ravenfall-header {
        grid-template-columns: 155px minmax(0, 1fr);
        padding-left: 10px;
        padding-right: 10px;
    }

    .ravenfall-brand {
        width: 155px;
    }

    .ravenfall-menu a {
        font-size: 12px !important;
    }

}

@media (max-width: 768px) {
    .ravenfall-header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 80px !important;
        margin: 0 !important;
        padding: 10px 15px !important;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0 !important;
        border-radius: 0;
    }

    .ravenfall-header::before,
    .ravenfall-header::after {
        display: none;
    }

    .ravenfall-brand {
        flex: 0 0 auto !important;
        width: 120px !important;
        height: 90px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        justify-self: auto !important;
        margin: 0 !important;
    }

    .ravenfall-brand img {
        width: 120px !important;
        max-width: 120px !important;
        max-height: 90px !important;
        height: auto;
    }

    .ravenfall-nav {
        flex: 0 0 auto !important;
        width: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
    }

    .ravenfall-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 54px !important;
        height: 46px !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #e5d6bd;
        background: rgba(255,255,255,.045);
        border: 1px solid rgba(221,183,112,.30);
        border-radius: 2px;
        font-size: 21px;
        cursor: pointer;
    }

    .ravenfall-menu-toggle:hover,
    .ravenfall-menu-toggle:focus-visible {
        color: #65d9ff;
        border-color: rgba(101,217,255,.52);
        box-shadow: 0 0 14px rgba(101,217,255,.14);
    }

    .ravenfall-menu {
        position: absolute;
        top: 100%;
        right: 15px;
        width: min(calc(100vw - 30px), 430px);
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .35s ease, opacity .25s ease, visibility .25s ease;
        border-top: 1px solid rgba(221,183,112,.18);
        z-index: 10000;
    }

    .ravenfall-menu.is-open {
        max-height: 520px;
        opacity: 1;
        visibility: visible;
    }

    .ravenfall-menu li {
        width: 100%;
    }

    .ravenfall-menu li + li::before {
        display: none;
    }

    .ravenfall-menu a {
        min-height: 55px;
        flex-direction: row !important;
        justify-content: flex-start !important;
        padding: 10px 16px !important;
        gap: 13px !important;
        border-bottom: 1px solid rgba(221,183,112,.10);
        font-size: 14px !important;
        text-align: left;
    }

    .ravenfall-menu a::after {
        left: 0;
        right: auto;
        top: 0;
        bottom: 0;
        width: 3px;
        height: auto;
        transform: scaleY(0);
        transform-origin: center;
    }

    .ravenfall-menu a:hover::after,
    .ravenfall-menu a:focus-visible::after {
        transform: scaleY(1);
    }

    .ravenfall-menu a i {
        width: 22px;
        font-size: 19px;
        text-align: center;
    }
}


/* ===== RAVENFALL MENU: FIT ALL ITEMS IN ONE ROW ===== */
.ravenfall-menu {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.ravenfall-menu a {
    font-size: 13px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.ravenfall-menu a i {
    font-size: 21px;
}

@media (max-width: 1050px) and (min-width: 769px) {
    .ravenfall-header {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .ravenfall-brand {
        width: 150px;
    }

    .ravenfall-menu {
        grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    }

    .ravenfall-menu a {
        font-size: 11.5px !important;
        gap: 5px !important;
    }

    .ravenfall-menu a i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .ravenfall-menu {
        background: rgba(11, 18, 32, 0.98) !important;
        border: 1px solid rgba(101, 217, 255, 0.12);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(8px);
    }
}

.footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    text-align: center !important;
}

.footer-links > div {
    width: auto !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.footer-links .footer-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.footer-links .social {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
}