#bgCanvas {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}
body {
    margin: 0;
    font-family: Arial;
    color: white;
    overflow-y: auto;

    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(255,200,100,0.04), transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03), transparent 70%),
        linear-gradient(180deg, #050505, #080808 40%, #050505);

    background-attachment: fixed;
}


.container {
    width: calc(100% - 220px);
    margin-left: 220px;
    padding: 80px 20px 20px 20px; /* ?? ÜSTTEN BOŞLUK */
}

h1 {
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: contain; /* cover yerine contain */
}
.card {
    position: relative;
    padding: 15px;
    border-radius: 12px;
    width: 300px;
	
	border: 1px solid rgba(0,150,255,0.2);
	
	box-shadow:
    0 0 20px rgba(0,150,255,0.1),
    inset 0 0 10px rgba(255,255,255,0.05);

    backdrop-filter: blur(6px);

    transition: 0.3s;
}

.card:hover img {
    transform: scale(1.05);
}


.card:hover::before {
    opacity: 1;
}

#imageModal {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

#imageModal {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#modalImg {
    max-width: 90%;
    max-height: 90%;
    margin: auto;

    cursor: zoom-in;

    transition: transform 0.2s ease;
}
/* BAŞLIK ANA */
.card h2 {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 12px auto;
    padding: 6px 16px;
    border-radius: 10px;
    overflow: hidden;
    font-size: 18px;
    font-weight: bold;

    /* RENK GEÇİŞ */
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;

    text-shadow: 0 0 5px rgba(0,0,0,0.5);

    box-shadow: 0 0 10px rgba(0,150,255,0.3);

    text-align: center;
}

/* DÖNEN IŞIK */
.card h2::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(255,255,255,0.4),
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    animation: rotateLight 4s linear infinite;
    opacity: 0;
}

/* İÇ KISIM */
.card h2::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #111;
    border-radius: 6px;
    z-index: -1;
}

/* HOVER AKTİF */
.card h2:hover::before {
    opacity: 1;
}

/* ANİMASYON */
@keyframes rotateLight {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card p {
    display: block;
    margin: 12px auto 0 auto;
    padding: 12px 14px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 90%;

    font-size: 14px;
    line-height: 1.6;

    color: #fff;

    background: linear-gradient(90deg, rgba(255,140,0,0.2), rgba(255,60,0,0.2));
    border: 1px solid rgba(255,120,0,0.3);

    text-align: center;

    box-shadow: 0 0 10px rgba(255,120,0,0.2);
}
.card p:hover {
    color: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.main-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 40px;
    position: relative;
    color: #fff;
    
    /* GLOW */
    text-shadow: 
        0 0 5px rgba(255,255,255,0.3),
        0 0 10px rgba(255,255,255,0.2),
        0 0 20px rgba(255,255,255,0.1);
}

/* ALT ÇİZGİ */
.main-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    margin: 10px auto 0 auto;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    border-radius: 5px;
}
#mouse-light {
    position: fixed;
    width: 150px;
    height: 150px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}
/* ANA BAŞLIK BAR */
.main-title {
    display: block;
    width: fit-content;
    margin: 30px auto 50px auto;
    padding: 12px 30px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-align: center;

    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;

    /* glow */
    box-shadow: 
        0 0 10px rgba(255,255,255,0.05),
        inset 0 0 10px rgba(255,255,255,0.03);

    position: relative;
    overflow: hidden;
}

/* ÜSTTEN IŞIK GEÇİŞ */
.main-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.main-title:hover::before {
    left: 100%;
}
.card h2::before {
    content: "";
    position: absolute;
    inset: 0; /* ?? EN ÖNEMLİ FIX */
    border-radius: 10px;

    background: conic-gradient(
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    animation: rotateLight 3s linear infinite;
    opacity: 0;
}
/* SOL MENÜ */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 220px;
    height: 100%;

    /* ?? CAM + DERİNLİK */
    background: linear-gradient(180deg, rgba(10,10,10,0.95), rgba(0,0,0,0.95));
    backdrop-filter: blur(12px);

    border-right: 1px solid rgba(255,255,255,0.05);

    padding-top: 20px;
    z-index: 999;

    overflow-y: auto;

    /* ?? glow */
    box-shadow:
        0 0 30px rgba(0,150,255,0.15),
        inset 0 0 20px rgba(255,255,255,0.03);
}

/* MENU BAŞLIK */
.sidebar h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: 2px;

    color: #00c6ff;

    position: relative;
}

/* alt çizgi */
.sidebar h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, transparent, #00c6ff, transparent);
}

/* MENU LINK */
.sidebar a {
    display: block;
    padding: 12px 18px;
    margin: 4px 10px;

    border-radius: 8px;

    color: #aaa;
    text-decoration: none;
    font-size: 13px;

    position: relative;

    transition: 0.3s;
}

/* HOVER */
.sidebar a:hover {
    color: white;

    background: rgba(0,150,255,0.1);

    box-shadow:
        0 0 10px rgba(0,150,255,0.3);

    transform: translateX(5px);
}
/* ÜST MENÜ */
.topbar {
    position: fixed;
    top: 0;
    left: 220px; /* sidebar kadar kaydır */
    width: calc(100% - 220px);
    height: 60px;
	box-sizing: border-box;
    background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
    border-bottom: 1px solid rgba(255,255,255,0.05);

    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 20px;

    z-index: 1000;
}

/* BUTONLAR */
.topbar a {
    color: #ccc;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.3s;
}

/* HOVER */
.topbar a:hover {
    background: rgba(0,150,255,0.2);
    color: white;
}
.logo {
    height: 150px;
    margin-right: 40px;
    cursor: pointer;
}

/* ALT BÖLÜM */
.features {
    margin-left: 220px;
    padding: 80px 20px;
    text-align: center;

    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9));
}

/* BAŞLIK */
.features h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

/* KUTU */
.feature-box {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* TEK ÖZELLİK */
.feature {
    max-width: 250px;
}

.feature {
    max-width: 250px;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);

    box-shadow:
        0 0 15px rgba(0,150,255,0.2),
        0 0 30px rgba(0,150,255,0.1);
}

.feature p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* BAŞLANGIÇTA GİZLİ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

/* GÖRÜNÜNCE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* YENİ HEADER */
.new-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}

/* SOL - ORTA - SAĞ DENGESİ */
.new-header .left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.new-header .menu {
    flex: 1;
    text-align: center;
}

.new-header .right {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 200px;
    justify-content: flex-end;
}

.new-header .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand .big {
    font-size: 18px;
    letter-spacing: 2px;
}

.brand .small {
    font-size: 10px;
    color: #d4af37;
}

.menu a {
    margin: 0 15px;
    text-decoration: none;
    color: #aaa;
    font-size: 13px;
}
.menu a {
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}
.menu .active {
    color: #ff3c3c;
}

.menu a:hover {
    color: white;
}

.right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact {
    border: 1px solid #d4af37;
    padding: 6px 12px;
    border-radius: 6px;
    color: #d4af37;
    text-decoration: none;
}

/* MAĞAZA ALANI */
.market-header {
    margin-left: 220px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.market-header h1 {
    font-size: 40px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

/* SEARCH */
.search-box {
    width: 400px;
    margin: auto;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.6);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: white;
}

.search-box span {
    color: #aaa;
}
/* body::after { */
    /* content: ""; */
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* height: 100%; */

    /* background: */
        /* radial-gradient(circle at 50% 10%, rgba(255,255,255,0.06), transparent 60%); */

    /* pointer-events: none; */
    /* z-index: 0; */
/* } */

#searchResults {
    width: 400px;
    margin: 5px auto;
    background: #111;
    border-radius: 8px;
    overflow: hidden;

    display: none;
    z-index: 9999;
}

#searchResults div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #222;
}

#searchResults div:hover {
    background: #222;
}
#loader {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #050505;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader-content {
    text-align:center;
}

.loader-content img {
    width:900px;
    margin-bottom:0px;
}

.spinner {
    width:40px;
    height:40px;
    border:4px solid rgba(255,255,255,0.2);
    border-top:4px solid #00c6ff;
    border-radius:5100%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader p {
    margin-top:15px;
    color:white;
    font-size:14px;
    opacity:0.7;
}
.hero {
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(255,215,0,0.08), transparent 60%),
        /* #050505; */
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 80px;
    letter-spacing: 5px;
    margin: 20px 0;
    color: #fff;

    text-shadow:
        0 0 10px rgba(255,255,255,0.2),
        0 0 30px rgba(255,215,0,0.2);
}

.hero-desc {
    color: #aaa;
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #d4af37;
    border-radius: 20px;
    font-size: 12px;
    color: #d4af37;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.btn.red {
    background: #b52b2b;
    color: white;
}

.btn.gold {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn:hover {
    transform: scale(1.05);
}
.footer {
    background: #070707;
    margin-top: 100px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 400px;
}

.footer-left h2 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-left p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.footer-middle h3,
.footer-right h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-middle a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-middle a:hover {
    color: white;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

.whatsapp { background: #0f5132; }
.discord { background: #1e3a8a; }
.youtube { background: #7f1d1d; }

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.files-details {
    margin-left: 220px;
    padding: 80px 20px;
    background: transparent;
}

.detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.detail-box {
    width: 300px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(0,150,255,0.2);

    box-shadow:
        0 0 15px rgba(0,150,255,0.15);

    transition: 0.3s;
}

.detail-box:hover {
    transform: translateY(-5px);
}

.detail-box h2 {
    color: #00c6ff;
    margin-bottom: 10px;
}

.detail-box p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}
.support-section {
    margin-left: 220px;
    padding: 100px 20px;
    text-align: center;
    background: transparent;
}

.support-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.support-box {
    padding: 20px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;

    color: white;

    background: linear-gradient(135deg, #111, #1a1a1a);

    border: 1px solid rgba(0,150,255,0.3);

    box-shadow:
        0 0 15px rgba(0,150,255,0.2);

    transition: 0.3s;
}

.support-box:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 25px rgba(0,150,255,0.4),
        0 0 50px rgba(0,150,255,0.2);
}



.support2-section {
    margin-left: 220px;
    padding: 100px 20px;
    text-align: center;
    background: transparent;
}

.support2-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.support2-box {
    padding: 20px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;

    color: white;

    background: linear-gradient(135deg, #111, #1a1a1a);

    border: 1px solid rgba(0,150,255,0.3);

    box-shadow:
        0 0 15px rgba(0,150,255,0.2);

    transition: 0.3s;
}

.support2-box:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 25px rgba(0,150,255,0.4),
        0 0 50px rgba(0,150,255,0.2);
}
.sidebar a::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);

    width: 3px;
    height: 0%;

    background: #00c6ff;

    transition: 0.3s;
}

.sidebar a:hover::before {
    height: 60%;
}
.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #00c6ff;
    border-radius: 10px;
}
.discord-btn {
    background: linear-gradient(135deg, #5865F2, #404eed);
    color: white !important;

    border-radius: 8px;
    padding: 8px 16px;

    font-weight: bold;

    box-shadow:
        0 0 10px rgba(88,101,242,0.5);

    transition: 0.3s;
}

.discord-btn:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 20px rgba(88,101,242,0.8),
        0 0 40px rgba(88,101,242,0.4);
}
/* GENEL BUTTON STYLE */
.menu a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

/* ANASAYFA */
.btn-home {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white !important;
    box-shadow: 0 0 10px rgba(0,150,255,0.5);
}

/* FILES */
.btn-files {
    background: linear-gradient(135deg, #ff7b00, #ff3c00);
    color: white !important;
    box-shadow: 0 0 10px rgba(255,100,0,0.5);
}

/* DESTEK */
.btn-support {
    background: linear-gradient(135deg, #00ff99, #00cc66);
    color: black !important;
    box-shadow: 0 0 10px rgba(0,255,150,0.5);
}

/* HİZMETLER */
.btn-service {
    background: linear-gradient(135deg, #ff00cc, #cc0099);
    color: white !important;
    box-shadow: 0 0 10px rgba(255,0,200,0.5);
}

/* HOVER ORTAK */
.menu a:hover {
    transform: scale(1.07);
    filter: brightness(1.2);
}
/* LOADER ARKA PLAN */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #050505, #000);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* ARKA IŞIK */
.loader-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,150,255,0.2), transparent 70%);
    animation: pulse 3s infinite;
}

/* ORTA */
.loader-center {
    position: relative;
    text-align: center;
}

/* LOGO */
.loader-logo {
    width: 220px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease;
}

/* HALKALAR */
.ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(0,150,255,0.3);
    border-radius: 50%;
    top: -40px;
    left: -15px;
    animation: spin 6s linear infinite;
}

.ring2 {
    width: 300px;
    height: 300px;
    border-color: rgba(255,100,0,0.3);
    animation-duration: 10s;
}

.ring3 {
    width: 350px;
    height: 350px;
    border-color: rgba(0,255,150,0.3);
    animation-duration: 14s;
}

/* TEXT */
.loading-text {
    margin-top: 15px;
    letter-spacing: 3px;
    font-size: 12px;
    color: #aaa;
}

/* PROGRESS */
.progress-bar {
    width: 200px;
    height: 4px;
    background: #111;
    margin: 15px auto;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    animation: loadBar 2s linear forwards;
}

/* ANIMASYONLAR */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity:0.5; }
    50% { transform: scale(1.2); opacity:1; }
    100% { transform: scale(1); opacity:0.5; }
}

@keyframes loadBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #020202, #000);
    z-index: 99999;
    overflow: hidden;
}

/* CANVAS FULL */
#loaderCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ORTA */
.loader-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* LOGO */
.loader-logo {
    width: 260px;
    z-index: 2;
    position: relative;
    animation: logoPulse 2s infinite;
}

/* ENERJİ HALKASI */
.energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    
    background: conic-gradient(
        #00c6ff,
        #ff3c00,
        #00ff99,
        #00c6ff
    );

    filter: blur(20px);
    opacity: 0.7;

    animation: spin 4s linear infinite;
}

/* TEXT */
.loading-text {
    margin-top: 25px;
    letter-spacing: 4px;
    font-size: 12px;
    color: #aaa;
}

/* ANİMASYON */
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes logoPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px #00c6ff); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px #00c6ff); }
    100% { transform: scale(1); filter: drop-shadow(0 0 5px #00c6ff); }
}

.card .highlight {
    margin-top: 10px;
    padding: 10px;

    font-size: 13px;
    font-weight: bold;

    color: #fff;

    background: linear-gradient(90deg, rgba(0,255,150,0.2), rgba(0,200,255,0.2));
    border: 1px solid rgba(0,255,200,0.5);

    border-radius: 8px;

    text-align: center;

    box-shadow:
        0 0 10px rgba(0,255,200,0.3),
        0 0 20px rgba(0,255,200,0.1);

    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(0,255,200,0.3); }
    50% { box-shadow: 0 0 20px rgba(0,255,200,0.7); }
    100% { box-shadow: 0 0 10px rgba(0,255,200,0.3); }
}
#previewBox {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);

    width: 160px;

    background: rgba(0,0,0,0.6);
    border-radius: 10px;

    padding: 8px;

    border: 1px solid rgba(0,150,255,0.3);

    box-shadow:
        0 0 10px rgba(0,150,255,0.3);

    text-align: center;

    transition: 0.3s;
}

#previewBox:hover {
    transform: translateY(-50%) scale(1.05);
}

#previewImg {
    width: 100%;
    border-radius: 6px;
}

#previewCount {
    margin-top: 6px;
    font-size: 12px;
    color: #00c6ff;
    font-weight: bold;
}
.maps-section {
    margin-left: 220px;
    padding: 80px 20px;
}

/* GRID YAPI */
.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* MAP KUTUSU */
.map-box {
    position: relative;
    overflow: hidden;

    border-radius: 12px;

    border: 1px solid rgba(0,150,255,0.2);

    box-shadow:
        0 0 20px rgba(0,150,255,0.1);

    transition: 0.3s;
}

/* RESİM */
.map-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;

    transition: 0.3s;
}

/* HOVER EFFECT */
.map-box:hover img {
    transform: scale(1.08);
}

/* AÇIKLAMA */
.map-box p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    margin: 0;
    padding: 12px;

    font-size: 14px;
    font-weight: bold;

    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));

    color: #fff;

    text-align: center;
}

img {
    user-select: none;
    -webkit-user-drag: none;
}

.highlight-hero {
    display: inline-block;
    margin-top: 20px;

    padding: 18px 30px;

    font-size: 18px;
    font-weight: bold;

    color: #fff;

    background: linear-gradient(135deg, rgba(0,150,255,0.2), rgba(0,255,200,0.2));
    border: 1px solid rgba(0,200,255,0.4);

    border-radius: 12px;

    text-align: center;

    box-shadow:
        0 0 15px rgba(0,200,255,0.3),
        0 0 40px rgba(0,200,255,0.15);

    backdrop-filter: blur(6px);

    animation: heroGlow 2.5s infinite;
}

.highlight-hero span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #00e6ff;
    font-weight: normal;
}

/* glow animasyon */
@keyframes heroGlow {
    0% { box-shadow: 0 0 10px rgba(0,200,255,0.2); }
    50% { box-shadow: 0 0 30px rgba(0,200,255,0.6); }
    100% { box-shadow: 0 0 10px rgba(0,200,255,0.2); }
}
.hero-btn {
    display: inline-block;
    margin-top: 15px;

    padding: 10px 25px;

    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    border-radius: 8px;

    text-decoration: none;
    font-weight: bold;

    box-shadow: 0 0 10px rgba(0,150,255,0.5);
}

.hero-btn:hover {
    transform: scale(1.05);
}