:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --primary-neon: #00ff66;
    --secondary-neon: #fc415a;
    --nav-bg: rgba(5, 5, 5, 0.85);
    --card-bg: rgba(15, 15, 20, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Courier New', Courier, monospace; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}


canvas#matrix { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; }

.flashlight-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 999;
    background-color: rgba(0, 0, 0, 0.96);
    mask: radial-gradient(circle 12vmax at var(--mouse-x, 50vw) var(--mouse-y, 50vh), transparent 0%, black 100%);
    -webkit-mask: radial-gradient(circle 12vmax at var(--mouse-x, 50vw) var(--mouse-y, 50vh), transparent 0%, black 100%);
    transition: background-color 0.2s ease;
}

.thief-silhouette {
    position: fixed; bottom: 50px; left: -150px; width: 100px; height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2300ff66" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C9.24 2 7 4.24 7 7C7 9.24 8.5 11.16 10.96 11.83C8.65 12.37 6 13.9 6 18H18C18 13.9 15.35 12.37 13.04 11.83C15.5 11.16 17 9.24 17 7C17 4.24 14.76 2 12 2Z" opacity="0.3"/></svg>');
    background-repeat: no-repeat; background-size: contain; z-index: -1;
    animation: sneakThief 20s linear infinite;
}
@keyframes sneakThief { 0% { transform: translateX(0); } 100% { transform: translateX(120vw); } }
nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 40px !important;      
    background: rgba(5, 5, 5, 0.85) !important;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2) !important;
    backdrop-filter: blur(8px) !important;
    position: relative !important;
    z-index: 1000 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.logo-link {
    text-decoration: none !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.cyber-logo {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    color: #00ff66 !important;
    text-shadow: 0 0 10px #00ff66 !important;
    transition: all 0.4s ease !important;
}
nav .links {
    display: flex !important;
    align-items: center !important; 
    justify-content: center !important;
    gap: 20px !important;
    flex-grow: 1 !important;
    margin: 0 20px !important;
}

/* Tekil Linklerin Ayarları */
nav .links a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    transition: color 0.3s, text-shadow 0.3s !important;
    white-space: nowrap !important; 
}

nav .links a:hover {
    color: #00ff66 !important;
    text-shadow: 0 0 10px #00ff66 !important;
}

#user-welcome {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}
.translate-box {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(0, 243, 255, 0.3) !important;
    border-radius: 10px !important;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.15) !important;
    flex-shrink: 0 !important;
    transition: all 0.4s ease !important;
}

.translate-box:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4) !important;
}
#lang-switch {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: bold !important;
    outline: none !important;
    cursor: pointer !important;
}

#lang-switch option {
    background: #111 !important;
    color: white !important;
}

.translate-btn {
    padding: 6px 15px !important;
    border: 2px solid #00f3ff !important;
    background: transparent !important;
    color: #00f3ff !important;
    font-weight: bold !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.translate-btn:hover {
    background: #00f3ff !important;
    color: black !important;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.8) !important;
    transform: scale(1.05) !important;
}

main { padding: 80px 10vw; text-align: center; position: relative; z-index: 1000; }
.section-title { font-size: 2.5rem; color: var(--primary-neon); margin-bottom: 40px; text-shadow: 0 0 15px var(--primary-neon); }
.neon-text { color: var(--secondary-neon); text-shadow: 0 0 10px var(--secondary-neon); margin-bottom: 15px;}


.desc-text { font-size: 1.4rem; line-height: 1.6; margin-top: 20px; }
.stats-box,.info-box {
    margin-top: 30px; background: var(--card-bg); padding: 30px;
    border-radius: 5px; border-left: 5px solid var(--secondary-neon);
    display: inline-block; text-align: left; max-width: 800px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}
.center-box { text-align: center; display: block; margin: 0 auto; max-width: 600px; }
.info-box p { line-height: 1.7; font-size: 1.1rem; }


.features-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.feature-card {
    background: var(--card-bg); border: 1px solid #333; border-radius: 8px;
    padding: 25px; width: 45%; text-align: left; box-shadow: 0 4px 15px rgba(0,255,102,0.1);
}


.glitch { position: relative; font-size: 3.5rem; font-weight: 900; display: inline-block; color: white; }
.glitch::before,.glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; }
.glitch::before { left: 3px; text-shadow: -2px 0 var(--secondary-neon); animation: glitchAnim1 2s infinite linear alternate-reverse; }
.glitch::after { left: -3px; text-shadow: 2px 0 var(--primary-neon); animation: glitchAnim2 3s infinite linear alternate-reverse; }

@keyframes glitchAnim1 { 0% { clip-path: inset(10% 0 80% 0); } 50% { clip-path: inset(50% 0 30% 0); } 100% { clip-path: inset(20% 0 60% 0); } }
@keyframes glitchAnim2 { 0% { clip-path: inset(20% 0 60% 0); } 50% { clip-path: inset(10% 0 80% 0); } 100% { clip-path: inset(50% 0 30% 0); } }


.cyber-input {
    width: 100%; padding: 15px; margin: 10px 0; border: 1px solid #333;
    background: rgba(0, 0, 0, 0.7); color: var(--primary-neon);
    font-size: 1.2rem; outline: none; border-radius: 3px; transition: 0.3s;
}
.cyber-input:focus { border-color: var(--primary-neon); box-shadow: 0 0 15px rgba(0, 255, 102, 0.3); }

.strength-meter { width: 100%; height: 8px; background: #222; margin-top: 5px; border-radius: 4px; overflow: hidden; }
.strength-bar { height: 100%; width: 0%; transition: width 0.4s ease, background 0.4s ease; }


.rainbow-btn {
    padding: 15px 40px; font-size: 1.3rem; font-weight: bold; text-transform: uppercase;
    background: linear-gradient(90deg, #ff0055, #591bc5, #00ff66, #00ccff, #ff0055);
    background-size: 400%; color: #fff; border: none; cursor: pointer;
    animation: rainbowLoop 5s infinite linear; transition: transform 0.2s; border-radius: 5px;
}
.rainbow-btn:hover { transform: scale(1.05); }
@keyframes rainbowLoop { 0% { background-position: 0%; } 100% { background-position: 400%; } }


.cards-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.card { width: 300px; height: 380px; perspective: 1200px; }
.card-inner { width: 100%; height: 100%; transition: transform 0.8s; transform-style: preserve-3d; position: relative; }
.card:hover.card-inner { transform: rotateY(180deg); }
.card-front,.card-back {
    position: absolute; width: 100%; height: 100%; backface-visibility: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 20px; text-align: center; background: var(--card-bg);
    border: 1px solid #333; border-radius: 10px;
}
.card-back { transform: rotateY(180deg); background: #111; border-color: var(--primary-neon); }
.profile-img { width: 120px; height: 120px; border-radius: 50%; border: 2px solid var(--primary-neon); margin-bottom: 15px; object-fit: cover; filter: grayscale(100%); transition: filter 0.3s; }
.card:hover.profile-img { filter: grayscale(0%); }
.hover-hint { font-size: 0.8rem; color: var(--secondary-neon); margin-top: 10px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }


.factor-card { height: auto; padding: 30px 20px; border-bottom: 3px solid var(--primary-neon); }
.factor-card p { font-size: 1.1rem; }


.modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; z-index: 2000; }
.modal.hidden { display: none; }
.modal-content { background: #111; padding: 40px; border-radius: 5px; width: 400px; text-align: center; border: 1px solid var(--primary-neon); box-shadow: 0 0 30px rgba(0, 255, 102, 0.2); }
.action-btn { width: 100%; padding: 15px; background: #222; color: var(--primary-neon); border: 1px solid var(--primary-neon); font-weight: bold; cursor: pointer; margin-top: 15px; transition: background 0.3s; }
.action-btn:hover { background: var(--primary-neon); color: black; }
.code-input { text-align: center; font-size: 1.5rem; letter-spacing: 5px; }
.warning-text { color: var(--secondary-neon); }

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.cyber-logo {
    font-size: 2.5rem !important;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon), 0 0 20px var(--primary-neon);
    transition: all 0.4s ease;
    animation: neonPulse 2s infinite alternate; /* Nefes alma animasyonu */
}

.cyber-logo:hover {
    transform: scale(1.1) rotate(-2deg);
    color: #fff;
    text-shadow: 0 0 20px var(--secondary-neon), 0 0 40px var(--secondary-neon);
    cursor: pointer;
}

@keyframes neonPulse {
    0% {
        opacity: 0.8;
        filter: brightness(1);
        transform: scale(1);
    }
    100% {
        opacity: 1;
        filter: brightness(1.5);
        transform: scale(1.05);
    }
}


.cyber-logo:active {
    animation: glitch 0.2s linear infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}
.hacker-steal-container {
    text-align: center;
    margin: 10vh auto;
    padding: 20px;
    height: 150px;
}

.cyber-text {
    font-size: 2.5rem;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    transition: color 0.3s ease;
}

#stealSubtext {
    color: #888;
    font-size: 1.2rem;
    transition: opacity 0.5s ease;
}

.stolen-warning {
    color: #ff003c !important; 
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
    animation: criticalBlink 1s infinite alternate;
}


.fade-out {
    opacity: 0;
}


@keyframes criticalBlink {
    0% { opacity: 1; }
    100% { opacity: 0.4; }
}

.stolen-text {
    color: #ff003c !important;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
    font-family: 'Courier New', Courier, monospace;
}

.wiped-out {
    opacity: 0.2;
    text-decoration: line-through;
    color: #333 !important;
}

.cyber-btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #00f3ff;
    border: 2px solid #00f3ff;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
    animation: neonPulse 1.5s infinite alternate;
}

.cyber-btn:hover {
    background: #00f3ff;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
}

@keyframes neonPulse {
    0% { box-shadow: 0 0 5px rgba(0, 243, 255, 0.2); }
    100% { box-shadow: 0 0 20px rgba(0, 243, 255, 0.8); }
}

.content-wrapper {
    margin-left: auto;
    max-width: 700px;
    text-align: right;
    position: relative;
    z-index: 5;
}

.cyber-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.cyber-desc {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95; 
}

.section-text, .highlight-text {
    color: #ffffff !important;
}

.section-subtitle {
    color: #00f3ff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}


.content-wrapper {
    margin-left: auto;
    max-width: 700px;
    text-align: right;
    position: relative;
    z-index: 5;
}

.cyber-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.cyber-desc {
    color: #888;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-intro-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.section-subtitle {
    color: #00f3ff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.section-text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.6;
}

.highlight-text {
    color: #ffffff;
    font-weight: bold;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-container {
    margin-top: 20px;
}

.cyber-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #00f3ff;
    color: #00f3ff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: rgba(0, 243, 255, 0.05);
}

.cyber-btn:hover {
    background: #00f3ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.system-container {
    display: flex;
    flex-direction: column;
    padding: 100px 8% 50px 8%;
    min-height: 100vh;
}

.content-wrapper {
    margin-left: auto;
    max-width: 700px;
    text-align: right;
    position: relative;
    z-index: 10;
}

.cyber-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.cyber-desc {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-intro-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.section-subtitle {
    color: #00f3ff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.section-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight-text {
    color: #ffffff;
    font-weight: bold;
    margin-top: 20px;
    text-transform: uppercase;
}

.cyber-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #00f3ff;
    color: #00f3ff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cyber-btn:hover {
    background: #00f3ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}
.translate-box{
    display:flex;
    align-items:center;
    gap:15px;

    padding:12px 18px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);

    border:1px solid rgba(0,243,255,0.3);

    border-radius:15px;

    box-shadow:
    0 0 10px rgba(0,243,255,0.15),
    inset 0 0 10px rgba(0,243,255,0.05);

    width:fit-content;

    transition:0.4s;
}

.translate-box:hover{
    transform:translateY(-3px);

    box-shadow:
    0 0 20px rgba(0,243,255,0.4);
}

.translate-icon{
    font-size:20px;
    color:#00f3ff;

    text-shadow:
    0 0 10px #00f3ff;
}

#lang-switch{
    background:transparent;
    border:none;

    color:white;

    font-size:15px;
    font-weight:bold;

    outline:none;
    cursor:pointer;
}

#lang-switch option{
    background:#111;
    color:white;
}

.translate-btn{

    padding:10px 25px;

    border:2px solid #00f3ff;

    background:transparent;

    color:#00f3ff;

    font-weight:bold;

    border-radius:8px;

    cursor:pointer;

    transition:0.4s;

    text-transform:uppercase;

    letter-spacing:2px;

    box-shadow:
    0 0 10px rgba(0,243,255,0.2);

}

.translate-btn:hover{

    background:#00f3ff;

    color:black;

    box-shadow:
    0 0 25px rgba(0,243,255,0.8);

    transform:scale(1.05);

}

.translate-btn:active{

    transform:scale(0.95);

}
.products-page {
    padding: 60px 10vw 100px;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}
.glass-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 40px; 
    max-width: 1200px; 
    margin: 40px auto 0;
    padding: 0 20px;
}
.glass-product-card {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}
.glass-product-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 102, 0.15), transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s ease-in-out;
    pointer-events: none;
}

.glass-product-card:hover::before {
    transform: rotate(45deg) translateY(100%);
}

.glass-product-card:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 15px 40px rgba(0, 255, 102, 0.25), inset 0 0 20px rgba(0, 255, 102, 0.05);
}

.product-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.4));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.glass-product-card:hover .product-icon {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 0 25px var(--primary-neon));
}

.glass-product-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price {
    font-size: 2rem;
    color: #fff;
    font-weight: 900;
    margin: 15px 0 25px 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

.add-to-cart {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
    cursor: pointer;
}
.single-product {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.product-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(0, 243, 255, 0.4);
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    transition: all 0.4s ease;
}

.glass-product-card:hover .product-image {
    border-color: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.4);
    transform: scale(1.02);
}

.test-page {
    padding: 60px 5vw;
    position: relative;
    z-index: 10;
}

.question-block {
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-neon);
    margin-bottom: 20px;
}

.cyber-radio {
    display: block;
    cursor: pointer;
    margin: 10px 0;
    font-size: 1.1rem;
    color: #ccc;
    transition: 0.3s;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.cyber-radio:hover {
    background: rgba(0, 255, 102, 0.1);
    border-color: rgba(0, 255, 102, 0.3);
    color: #fff;
}

.cyber-radio input[type="radio"] {
    margin-right: 10px;
    accent-color: var(--primary-neon);
    transform: scale(1.2);
}

.cyber-badge {
    display: inline-block;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0f172a, #050505);
    border-radius: 50%;
    position: relative;
    border: 4px solid var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.5), inset 0 0 20px rgba(0, 255, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: badgeFloat 3s ease-in-out infinite, neonPulse 2s infinite alternate;
    transition: opacity 0.5s, transform 0.5s;
}

.cyber-badge.hidden {
    opacity: 0;
    transform: scale(0.5);
    display: none;
}

.badge-inner {
    text-align: center;
}

.badge-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px var(--primary-neon));
}

.badge-text {
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--primary-neon);
}

@keyframes badgeFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
.progress-container {
    width: 100%;
    height: 8px;
    background: #222;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-neon);
    box-shadow: 0 0 10px var(--primary-neon);
    transition: width 0.4s ease-in-out;
}

.quiz-option {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #e0e0e0;
    transition: all 0.3s;
}

.quiz-option:hover {
    background: rgba(0, 255, 102, 0.1);
    border-color: var(--primary-neon);
    transform: translateX(10px);
}

.quiz-option.selected {
    background: rgba(0, 255, 102, 0.2);
    border-color: var(--primary-neon);
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}
.badge-image-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 50%;
    filter: brightness(0.6) drop-shadow(0 0 10px var(--primary-neon));
    transition: all 0.4s ease;
}

.badge-inner {
    position: relative;
    z-index: 2;      
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.cyber-badge {
    display: inline-block;
    width: 220px;        
    height: 220px;
    background: #050505;
    border-radius: 50%;
    position: relative;
    border: 4px solid var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.4);
    margin: 0 auto;
    overflow: hidden; 
    animation: badgeFloat 3s ease-in-out infinite;
}

.cyber-badge:hover .badge-image-logo {
    transform: scale(1.1);
    filter: brightness(0.8) drop-shadow(0 0 20px var(--primary-neon));
}
main.products-page {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 60px 0 100px 0 !important;
    box-sizing: border-box !important;
}

.glass-products-grid {
    display: flex !important;
    position: relative !important;
    left: 0 !important; right: 0 !important;
    margin: 40px auto 0 auto !important;
    justify-content: center !important; 
    align-items: center !important;
    width: 100% !important;
    max-width: 900px !important;
    gap: 30px !important;
}
.glass-product-card {
    margin: 0 !important; 
}
.thief-silhouette, 
[class*="silhouette"], 
[id*="silhouette"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
.ghost-button {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    font-size: 2.5rem !important;
    color: transparent !important;
    text-decoration: none !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
}

.ghost-button:hover {
    color: #fc415a !important;
    opacity: 1 !important;
    text-shadow: 0 0 15px #fc415a, 0 0 30px #fc415a !important;
    transform: scale(1.2) !important;
    cursor: crosshair !important;
}
#recovery-btn-container .cyber-btn {
    position: relative;
    display: inline-block;
    padding: 15px 35px;
    background: rgba(10, 15, 20, 0.9);
    border: 2px solid #00f3ff;
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.8);
    font-weight: 900;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    animation: cyber-float 3s ease-in-out infinite, neon-pulse 2s infinite alternate;
    
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

@keyframes cyber-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
@keyframes neon-pulse {
    0% { box-shadow: 0 0 5px rgba(0, 243, 255, 0.2), inset 0 0 5px rgba(0, 243, 255, 0.1); }
    100% { box-shadow: 0 0 20px rgba(0, 243, 255, 0.7), inset 0 0 15px rgba(0, 243, 255, 0.4); }
}
#recovery-btn-container .cyber-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    transform: skewX(-25deg);
    animation: cyber-scan 3s infinite;
    z-index: -1;
}

@keyframes cyber-scan {
    0% { left: -150%; }
    20% { left: 150%; } 
    100% { left: 150%; }
}
#recovery-btn-container .cyber-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 243, 255, 0.15) 3px, rgba(0, 243, 255, 0.15) 4px);
    z-index: -2;
    pointer-events: none;
}
#recovery-btn-container .cyber-btn:hover {
    background: rgba(0, 243, 255, 0.2);
    color: #ffffff !important;
    letter-spacing: 3px;
    box-shadow: 0 0 40px #00f3ff, inset 0 0 20px #00f3ff;
    border-color: #ffffff;
}

#recovery-btn-container .cyber-btn span {
    color: #00ff66 !important;
    text-shadow: 0 0 15px #00ff66;
    transition: 0.3s;
}
#recovery-btn-container .cyber-btn:hover span {
    color: #ffffff !important;
    text-shadow: 0 0 20px #ffffff;
}
/* ==========================================================================
   MAHNET ÖZEL: KESİNTİSİZ KAPI GEÇİŞ ANİMASYONU
   ========================================================================== */

.cyber-gate {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 50vh;
    background: #05070a;
    z-index: 999998;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    background-image: linear-gradient(rgba(0, 255, 102, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 255, 102, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Başlangıçta Kapılar KAPALI DURUR (Yeni sayfa açılırken beyaz ekranı gizler) */
.gate-top {
    top: 0;
    transform: translateY(0);
    border-bottom: 3px solid #00ff66;
    box-shadow: 0 10px 40px rgba(0, 255, 102, 0.2);
}

.gate-bottom {
    bottom: 0;
    transform: translateY(0);
    border-top: 3px solid #00ff66;
    box-shadow: 0 -10px 40px rgba(0, 255, 102, 0.2);
}

/* Yazı Başlangıçta GÖRÜNÜR DURUR */
.cyber-gate-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    z-index: 999999;
    opacity: 1;
    pointer-events: none;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 8px;
    text-shadow: 0 0 20px #00ff66, 0 0 40px #00ff66;
    transition: opacity 0.4s ease;
    animation: text-glitch 0.2s infinite alternate;
}

/* --- SAYFA YÜKLENDİKTEN SONRA KAPILAR AÇILIR --- */
body.gates-opened .gate-top {
    transform: translateY(-100%);
}

body.gates-opened .gate-bottom {
    transform: translateY(100%);
}

body.gates-opened .cyber-gate-text {
    opacity: 0;
    animation: none;
}

@keyframes text-glitch {
    0% { transform: translate(-50%, -50%) skewX(0deg); }
    100% { transform: translate(-52%, -50%) skewX(2deg); }
}
/* ==========================================================================
   MAHNET ÖZEL: SİBER İMLEÇ VE SONAR EFEKTİ
   ========================================================================== */

/* Varsayılan işletim sistemi imlecini tamamen gizle */
body, a, button, input, textarea, select {
    cursor: none !important;
}

/* 1. Merkezdeki keskin nişancı noktası (Çekirdek) */
.cyber-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: #00ff66;
    border-radius: 50%;
    pointer-events: none; /* Tıklamaları engellememesi için */
    z-index: 9999999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #00ff66, 0 0 20px #00ff66;
    transition: width 0.2s, height 0.2s, background 0.2s;
}

/* 2. Noktayı süzülerek takip eden radar halkası */
.cyber-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 243, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999998;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2), inset 0 0 10px rgba(0, 243, 255, 0.2);
    transition: width 0.2s, height 0.2s;
}

/* Tıklanabilir öğelerin üzerine gelince (Hover - Kilitlenme Modu) */
.cyber-cursor-dot.hovered {
    background: #00f3ff;
    box-shadow: 0 0 15px #00f3ff;
    width: 10px;
    height: 10px;
}

.cyber-cursor-ring.hovered {
    width: 50px;
    height: 50px;
    border-color: #00ff66;
    background: rgba(0, 255, 102, 0.05);
    border-style: dashed;
    animation: ring-spin 4s linear infinite;
}

@keyframes ring-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Tıklama anında yayılan Sonar (Radar) Dalgası */
.sonar-wave {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #00ff66;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999997;
    transform: translate(-50%, -50%);
    animation: sonar-expand 0.6s ease-out forwards;
}

@keyframes sonar-expand {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
        border-width: 3px;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        border-width: 1px;
    }
}
/* ==========================================================================
   MAHNET ÖZEL: GİZLİ GRUP FOTOĞRAFI TASARIMI
   ========================================================================== */

.grup-foto-kart {
    position: relative;
    text-align: center;
    max-width: 800px; /* Fotoğrafın ekrandaki maksimum genişliği */
    width: 90%;
}

/* Siber Çerçeve */
.cyber-cerceve {
    position: relative;
    border: 2px dashed #444;
    padding: 10px;
    background: #050505;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Çerçevenin üzerine gelince neon yeşile dönmesi */
.cyber-cerceve:hover {
    border: 2px solid #00ff66;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.2), inset 0 0 20px rgba(0, 255, 102, 0.1);
}

/* Fotoğrafın kendisi (Başlangıçta Orijinal Renkli Hali) */
.cyber-grup-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0%); /* Renkler normal */
    transition: all 0.5s ease;
    border-radius: 3px;
}

/* Üzerine gelince GİZLİLİK MODU (Siyah-Beyaz ve Keskin) */
.cyber-cerceve:hover .cyber-grup-img {
    filter: grayscale(100%) contrast(120%);
}

/* Gizlilik Şeridi Katmanı */
.foto-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 255, 102, 0.05) 10px,
        rgba(0, 255, 102, 0.05) 20px
    );
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* Yazının fotoğrafa sağ tıklamayı engellememesi için */
}

/* Üzerine gelince şeridin belirmesi */
.cyber-cerceve:hover .foto-overlay {
    opacity: 1;
}

/* "KİMLİKLER ŞİFRELENDİ" Yazısı */
.overlay-text {
    background: rgba(5, 5, 5, 0.9);
    color: #00ff66;
    padding: 15px 30px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 4px;
    border: 1px solid #00ff66;
    text-shadow: 0 0 10px #00ff66;
    text-transform: uppercase;
}

/* Fotoğraf Altındaki Başlık */
.grup-baslik {
    color: #00ff66;
    margin-top: 25px;
    font-family: monospace;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
    letter-spacing: 3px;
}

.cyber-cursor-dot, .cyber-cursor-ring {
    z-index: 9999999999 !important;
    pointer-events: none !important; 
}
.cyber-mimar-img, .grup-foto-kart, .cyber-cerceve {
    pointer-events: auto; 
}
body {
    cursor: none !important;
}