/* Temel Ayarlar */
:root {
    --background: #0d0d0d;
    --border: #222222;
    --border-alpha: #3a3a3a80;
    --secondary: #141414;
    --thirdy: #1f1f1f;
    --secondary-op: rgba(20, 20, 20, .5);
    --text-color: #fff;
    --text-alt-color: #c2c2c2;
    --primary: #0084FF;
    --main-theme: #ffdde4;
    --s-main-theme: #b18891;
    --area: #2a2a2d;
    --area-alt: #252529;
    --theme: #901d35;
    --colored-text-color: #f2939a;
    --theme-alt: #720922af;
    --opacity-bg: rgba(13, 13, 13, 0.5);
    --opacity-bg-sb: rgba(13, 13, 13, 0.5);
}

.light {
    --background: #ffe5e8;
    --secondary: #fce2e4;
    --thirdy: #EBDCE4;
    --secondary-op: rgba(242, 231, 236, 0.6);
    --area: #F8EDF2;
    --area-alt: #F4E4EB;
    --opacity-bg: rgba(255, 240, 245, 0.6);
    --opacity-bg-sb: rgba(250, 235, 240, 0.5);
    --border: #C7A2B1;
    --border-alpha: rgba(199, 162, 177, 0.4);
    --text-color: #2A0E1E;
    --text-alt-color: #5A2A3C;
    --primary: #B93B6A;
    --main-theme: #ffe5e8;
    --s-main-theme: #C97C9D;
    --theme: #B93B6A;
    --theme-alt: #8C3254;
    --colored-text-color: #f2939a;
    --gradient: linear-gradient(135deg, #B93B6A 0%, #E79CB7 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

@font-face {
    font-family: 'Azonix';
    src: url('../fonts/Azonix.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 0.3125rem;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--main-theme);
    border-radius: 0.3125rem;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text-color);
    font-family: "Figtree";
    line-height: 1.6;
}

body {
    -webkit-user-select: none;
    /* Chrome/Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
    user-select: none;
    /* Standart */
}

/* Resimlerin sürüklenerek indirilmesini engelle */
img {
    -webkit-user-drag: none;
    user-drag: none;
}

/* Özel Sağ Tık Menüsü */
.context-menu {
    display: none;
    position: fixed;
    /* absolute yerine fixed kullanarak scroll kaymalarını önleriz */
    z-index: 999999;
    background: var(--opacity-bg);
    backdrop-filter: blur(20px);
    /* Modern bir dokunuş */
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 0;
    min-width: 200px;
    pointer-events: all;
}

.context-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.context-menu li {
    padding: 10px 15px;
    color: var(--text-color);
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin: 10px;
    gap: 10px;
    border: 1px solid transparent;

}

.context-menu li i {
    width: 16px;
    text-align: center;
    color: var(--colored-text-color);
}

.context-menu li:hover {
    background: var(--opacity-bg);
    border: 1px solid var(--colored-text-color);
}

.context-menu li.separator {
    height: 1px;
    background: var(--opacity-bg);
    margin: 5px 0;
}

.context-menu li.disabled {
    color: var(--text-alt-color);
    cursor: default;
}

.azonix {
    font-family: 'Azonix', sans-serif;
    font-size: 1.2rem;
    color: var(--text-color);
}

.footer {
    background: var(--secondary);
    padding: 40px 20px;
    margin-top: 40px;
    width: 100%;
}

.footer .content {
    display: flex;
    justify-content: space-between;
}

.left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.right-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.right-content li {
    list-style: none;
    margin: 0 10px;
}

.right-content a {
    color: var(--text-color);
    text-decoration: none;
}

.logo img {
    width: 60px;
    height: 60px;
}

/* --- NAVBAR ANA YAPI --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
    /* Başlangıçta arka plan rengin */
    margin: 0;
    /* Başlangıçta margin yok */
    width: 100%;
    /* Tam genişlik */
    border: none;
    border-radius: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Yumuşak geçiş animasyonu */
}

/* --- KAYDIRILINCA AKTİF OLACAK DURUM --- */
.navbar.scrolled {
    margin: 10px;
    width: calc(100% - 20px);
    background: var(--opacity-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 12px 5%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- GİRİŞ YAP BUTONU --- */
.btn-login {
    background: var(--opacity-bg);
    color: var(--text-alt-color);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid var(--border);
    transition: 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    backdrop-filter: blur(20px);
}

.btn-login:hover {
    background: var(--main-theme);
    color: var(--colored-text-color);
}

/* --- MASAÜSTÜ NAV LİNKLERİ & ANİMASYON --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links a {
    text-decoration: none;
    display: flex;
    color: var(--text-alt-color);

    border: 1px solid transparent;
    align-items: center;
    padding: 8px 15px;
    border-radius: 100px;
    transition: 0.3s ease;
}

.nav-links .label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--colored-text-color);
    white-space: nowrap;
}

/* Active & Hover Animasyon Tetikleyici */
.nav-links a:hover {
    color: var(--main-theme);
    background: var(--opacity-bg);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

.nav-links a.active {
    background: var(--main-theme);
    color: var(--colored-text-color);

}

.nav-links a.active .label,
.nav-links a:hover .label {
    color: var(--colored-text-color);
    max-width: 120px;
    opacity: 1;
    margin-left: 8px;
}

/* --- HAMBURGER (Masaüstü Gizli) --- */
.menu-checkbox {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* --- SSS GENEL STİL --- */
.faq-section {
    width: 90%;
    margin-top: 40px;
    margin: auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.05rem;
}

.faq-question i {
    color: var(--main-theme);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: var(--text-alt-color);
    line-height: 1.6;
}

/* --- AKTİF DURUM --- */
.faq-item.active {
    border-color: var(--main-theme);
    background: var(--thirdy);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* İçerik çok uzunsa artırabilirsin */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Masaüstü Varsayılan */
.theme-wrapper {
    position: relative;
}

.theme-popup {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;

    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px;
    width: 250px;

    display: none;
    flex-direction: column;
    gap: 8px;

    z-index: 10005;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: .3s;
    animation: fadeIn 0.3s ease;
}

.theme-popup.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.theme-option,
.version-hisar,
.version-gama {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 100px;
    /* Senin nav-links butonu gibi */
    cursor: pointer;
    color: var(--text-alt-color);
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.theme-option .label,
.version-hisar .label,
.version-gama .label {
    margin-left: 10px;
    font-weight: 500;
}

.theme {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.disp-ver {
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-alt-color);
    margin-left: auto;
    width: 100%;
    font-family: monospace;
}

.theme-option i {
    color: var(--colored-text-color);
    width: 20px;
    text-align: center;
}

/* Aktif ve Hover Durumu */
.theme-option:hover,
.theme-option.active {
    background: var(--main-theme);
    color: var(--colored-text-color);
}

.theme-option.active .label,
.theme-option:hover .label {
    color: var(--colored-text-color);
}

.policy-section {
    padding: 60px 20px;
    color: var(--text-color);
    /* Mevcut değişkenin */
}

.policy-text-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: justify;
}

.policy-text-wrapper h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ff4d4d;
    /* Varsa sitenin vurgu rengi */
}

.policy-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-list li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.key-exchange-section {
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
}

.key-exchange-section h3 {
    color: #00d2ff !important;
    /* Mavi bir siber tonu */
    font-family: 'Exo', sans-serif;
    letter-spacing: 1px;
}

.key-exchange-section code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: #00d2ff;
}

/* Modal Arka Plan Karartma */
.play-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    /* Nav-links'ten daha üstte olması için */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* Modal Görünür Olduğunda */
.play-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Kutusu - Senin .nav-links stilinle aynı */
.play-modal-content {
    background: var(--background) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-color);
    /* Mevcut değişkenine göre ayarla */
    text-align: center;
}

.play-modal-overlay.active .play-modal-content {
    transform: translateY(0);
}

.warning {
    background: linear-gradient(45deg, var(--theme), var(--secondary) 30%);
    margin: 10px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.warning a {
    color: var(--colored-text-color);
    text-decoration: none;
}

/* Kapatma Butonu */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
}

/* İçerik Stilleri */
.modal-header i {
    font-size: 3rem;
    color: var(--colored-text-color);
    margin-bottom: 15px;
}

.modal-header img {
    width: 120px;
    height: 120px;
}

.ip-copy-box {
    background: var(--secondary);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    border: 1px solid var(--border);
    transition: .3s;

}

.ip-copy-box:hover {
    background: var(--colored-text-color);
    color: var(--background);
    border: 1px solid var(--border);
    transform: translateY(-5px);

}

.ip-copy-box:hover .copyIpButton {
    background: var(--main-theme);
    color: var(--background);

}

.ip-copy-box .copyIpButton {
    transition: .3s;
}

.ip-copy-box .copyIpButton:hover {

    transform: translateY(-5px);
}

.version-box {
    padding: 15px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    margin: 20px 0;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.hamburger-actions {
    display: none;
}

.ver-bed {
    background: var(--secondary);
    padding: 8px 12px;
    border-radius: 100px;
    width: 100%;
    border: 1px solid var(--border);
}

.ip-copy-box span {
    font-family: monospace;
    font-weight: bold;
}

.ip-copy-box button {
    background: var(--background);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: inherit;
}

.status-dot {
    height: 10px;
    width: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

strong.azonix {
    font-size: 14px;
}



/* --- MOBİL TASARIM (Senin nav-links ile aynı) --- */
@media (max-width: 768px) {
    .theme-popup {
        display: flex !important;
        /* JS görünürlüğü kontrol edecek */
        position: fixed;
        left: 10px;
        right: 10px;
        width: auto;
        bottom: -100vh;
        /* Başlangıçta gizli */
        top: auto;
        min-height: 250px;
        padding: 30px 20px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
        opacity: 0;
    }

    .theme-popup.show {
        bottom: 100px;
        /* Navigasyonun tam üstünde durması için */
        opacity: 1;
        visibility: visible;
        animation: none;
        /* Kendi transition'ı var */
    }

    .theme-option {
        padding: 18px !important;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.05);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
    }

    .faq-question span {
        font-size: 0.95rem;
        padding-right: 10px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 0 20px 15px 20px;
    }

    /* Mobilde alt boşluk ekleyelim ki footer'a yapışmasın */
    .faq-section {
        padding-bottom: 20px;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- MOBİL TASARIM (MAX-WIDTH: 768PX) --- */
/* --- MOBİL TASARIM (MAX-WIDTH: 768PX) --- */
@media (max-width: 768px) {

    /* --- SENİN NAVBAR AYARLARIN --- */
    .navbar {
        top: auto;
        backdrop-filter: blur(20px);
        bottom: 0;
        margin: 0;
        width: 100%;
        height: 90px;
        z-index: 10001;
        overflow: visible;
        top: auto;
    }

    .navbar.scrolled {
        bottom: 10px;
        margin: 10px;
        width: calc(100% - 20px);
        border-radius: 100px;
    }

    .logo {
        display: block !important;
        z-index: 10002;
    }

    .logo img {
        display: block;
    }

    .nav-actions {
        display: flex !important;
        align-items: center;
        width: 50%;
        justify-content: space-between;
        z-index: 10002;
    }

    .btn-login {
        display: inline-block !important;
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-login .label{
        display: none;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* --- SENİN HERO AYARLARIN --- */
    .hero {
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
    }

    .hero-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .hero-inner {
        position: relative;
        z-index: 2;
        color: var(--text-color);
    }

    .hero-inner h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hamburger-actions {
        display: block;
    }

    /* --- SENİN NAV-LINKS (MENU) AYARLARIN --- */
    .nav-links {
        display: flex !important;
        position: fixed;
        left: 10px;
        right: 10px;
        top: auto !important;
        bottom: -100vh;
        height: auto;
        min-height: 300px;
        background: var(--background) !important;
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        border-radius: 20px;
        border: 1px solid var(--border);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        visibility: hidden;
        opacity: 0;
    }

    .nav-links.show {
        bottom: 100px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        margin: 5px 0;
    }

    .nav-links a {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        padding: 15px !important;
        justify-content: flex-start !important;
        font-size: 1.1rem;
    }

    .nav-links .label {
        max-width: 200px !important;
        opacity: 1 !important;
        display: block !important;
        margin-left: 10px;
    }

    /* --- EKSTRA: HER ŞEYİ ALT ALTA GETİREN TAMAMLAYICI KODLAR --- */

    /* Haberler ve Sidebar'ı alt alta diz */
    .main-wrapper {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 0 15px !important;
    }

    .content,
    .sidebar {
        width: 100% !important;
    }

    /* Haber Kartlarını dikey yap (Resim üstte yazı altta) */
    .news-card {
        flex-direction: column !important;
    }

    .news-img {
        width: calc(100% - 20px) !important;
        height: 200px !important;
    }

    .news-body {
        width: 100% !important;
    }

    /* Sidebar kutularını mobilde düzelt */
    .side-box {
        width: 100% !important;
    }

    /* Footer Sütunlarını Alt Alta Al */
    .footer .row {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .brand-col,
    .footer-col {
        width: 100% !important;
        margin-bottom: 30px !important;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }

    /* --- SENİN ANİMASYON VE ALT BOŞLUK AYARLARIN --- */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .footer-bottom {
        padding-bottom: 100px;
    }
}

/* Hero Section */
/* Hero Section Ana Kapsayıcı */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    /* Videonun dışarı taşmasını engeller */
    background-color: #000;
    /* Video yüklenene kadar siyah ekran */
}

/* Arka Plandaki Video */
.hero-video {

    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Background-size: cover mantığıyla çalışır */
    pointer-events: none;
    /* Videoya tıklanmasını engeller, butonlar rahat çalışır */
    transition: opacity 0.5s ease;
}

.hero-video.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero.video-off {

    background-image: url(../img/wp.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video Üzerindeki Karartma ve Renk Geçişi (Overlay) */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hem karartma hem de senin orijinal değişkenli gradyanın */
    background: linear-gradient(var(--opacity-bg, rgba(0, 0, 0, 0.5)), var(--background, #111));
    z-index: 1;

}

.hero-inner {
    z-index: 2;
}

.hero-inner h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-text {
    font-size: 10px;
    background: var(--colored-text-color);
    color: var(--background);
    padding: 2px;
    border-radius: 100px;
}

.btn {
    padding: 12px 30px;
    border-radius: 1000px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-yellow {
    background: var(--colored-text-color);
    border: 1px solid var(--colored-text-color);
    backdrop-filter: blur(20px);
    color: var(--background);
    transition: .3s;
}

.btn-yellow:hover {
    background: transparent;
    border: 1px solid var(--colored-text-color);
    color: var(--colored-text-color);
}

.btn-yellow:hover,
.btn-discord:hover {
    transform: translateY(-5px);
}

.btn-black {
    background: var(--secondary);
    color: var(--text-color);
    border: 1px solid var(--border);
}

.btn-discord {
    background: transparent;
    backdrop-filter: blur(20px);
    color: var(--text-color);
    border: 1px solid #5865F2;
    transition: .3s;
}

.btn-discord:hover {
    background: #5865F2;
    color: var(--background);
    border: 1px solid #5865F2;
}

/* Grid Yapısı (Responsive) */
.main-wrapper {
    width: 100%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 150px 20px;
}

.main-wrapper .title-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary);

    margin-bottom: 25px;
    padding: 20px 40px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

.news-card {
    background: var(--secondary);
    border-radius: 30px;
    margin-bottom: 25px;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    width: 250px;
    margin: 10px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
}

.news-body {
    padding: 25px;
    flex: 1;
}

.badge {
    background: var(--main-theme);
    color: var(--colored-text-color);
    padding: 6px 12px;
    font-size: 0.7rem;
    border-radius: 30px;
}

/* Sidebar */
.side-box {
    background: var(--secondary);
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.table-row {
    display: flex;
    justify-content: space-between;
    background: var(--background);
    padding: 5px 10px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid var(--border);
}

.table-row img{
    width: 30px;
    height: 30px;
    padding: 1px;
    background: var(--colored-text-color);
    border-radius: 50%;
}

.table-row span{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.shop-item {
    display: flex;
    justify-content: space-between;
    background: var(--background);
    padding: 5px 10px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid var(--border);
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.footer {
    background-color: var(--secondary);
    padding: 80px 0 30px;
}

/* --- LOGO VE MARKA ALANI (DÜZELTİLEN KISIM) --- */
.brand-col {
    width: 35% !important;
    /* Logolara daha geniş alan */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Logolar arası boşluk */
    margin-bottom: 15px;
}

.footer-img {
    height: 60px;
    /* Logoların yüksekliğini buradan eşitleyebilirsin */
    width: auto;
    object-fit: contain;
}

.brand-names {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
}

.centered-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name-nissy {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 700;
}

.name-amp {
    color: var(--main-theme);
    font-size: 18px;
}

.name-nexa {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
}

.nexa-main {
    display: flex;
    align-items: center;
}

.small {
    font-size: 10px
}

.name-nexa span,
.name-nissy span {
    font-size: 12px;
    color: var(--main-theme);
    display: block;
    line-height: 1;
}

.slogan {
    color: var(--text-alt-color);
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
}

/* --- DİĞER SÜTUNLAR --- */
.footer-col {
    width: 21.6%;
    /* Kalan alanı paylaştır */
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--main-theme);
    height: 2px;
    width: 50px;
}

.footer-col ul li a {
    font-size: 16px;
    color: var(--text-alt-color);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--text-color);
    padding-left: 8px;
}

/* Sosyal Medya */
.social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: var(--opacity-bg);
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--text-color);
    transition: 0.3s;
}

/* Genel İkon Ayarları (Geçiş yumuşaklığı için) */
.social-links a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    /* Genişlik ve yükseklik değerlerini tasarımına göre değiştirebilirsin */
    height: 40px;
    border-radius: 50%;
    /* Yuvarlak ikonlar için */
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
}

/* --- DISCORD --- */
.social-links a.discord {
    color: #5865F2;
    /* İkonun ana rengi */
}

.social-links a.discord:hover {
    background-color: #5865F2;
    color: #fff;
}

/* --- YOUTUBE --- */
.social-links a.youtube {
    color: #FF0000;
}

.social-links a.youtube:hover {
    background-color: #FF0000;
    color: #fff;
}

/* --- TIKTOK --- */
.social-links a.tiktok {
    color: #000000;
}

.social-links a.tiktok:hover {
    background-color: #000000;
    color: #fff;
}

/* --- INSTAGRAM --- */
.social-links a.instagram {
    color: #E4405F;
    /* Instagram pembe tonu */
}

.social-links a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    border-color: transparent;
}

/* Copyright Bar */
.footer-bottom {
    width: 100%;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-alt-color);
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom a {
    color: var(--theme);
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom img {
    width: 20px;
    height: 20px;
    margin-top: -5px;
}

.footer-bottom .main-info {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

/* Toast Bildirimi */
#toast-notification {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--opacity-bg);
    color: var(--text-color);
    text-align: center;
    border-radius: 100px;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    padding: 16px;
    position: fixed;
    z-index: 100003;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: visibility 0.3s, opacity 0.3s;
    opacity: 0;
}

#toast-notification.show {
    visibility: visible;
    opacity: 1;
}

/* Responsive */
@media(max-width: 991px) {
    .brand-col {
        width: 100% !important;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

/* MOBILE RESPONSIVE AYARLARI */
@media (max-width: 992px) {
    .main-wrapper {
        grid-template-columns: 1fr;
        /* Sidebar alta kayar */
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobilde menüyü gizle (Hamburger menü yapılabilir) */
    }

    #toast-notification {
        bottom: 120px;
    }

    .main-wrapper .title-content {
        background: linear-gradient(var(--opacity-bg), var(--opacity-bg)), url("https://i.pinimg.com/originals/86/fd/06/86fd0613c53ca5a61251791377ea6af7.gif") no-repeat;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .news-card {
        flex-direction: column;
        /* Görsel üste, metin alta */
    }

    .news-img {
        width: 100%;
        height: 180px;
    }

    .hero {
        height: 50vh;
    }
}