:root {
    --bg: #050505;
    --surface: #0a0a0a;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Inter', sans-serif;
    
    /* Updated Brand Colors */
    --color-guard: #ff0000;      /* Kırmızı */
    --color-raze: #ffaa00;       /* Turuncu Sarı */
    --color-devil: #ff0000;      /* Kırmızı */
    --color-venom: #00ffcc;      /* Yeşil Mavi Camgöbeği */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    user-select: none; /* Disable text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* --- ENHANCED BACKGROUND EFFECTS --- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 90%);
}

.bg-scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.02), transparent);
    background-size: 100% 400px;
    animation: scan 10s infinite linear;
    z-index: -1;
    pointer-events: none;
}

@keyframes scan {
    from { transform: translateY(-100%); }
    to { transform: translateY(100%); }
}

.bg-squares {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.square-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.05;
    filter: blur(1px);
    animation: float 20s infinite linear;
}

@keyframes float {
    from { transform: translateY(100vh) rotate(0deg); }
    to { transform: translateY(-100px) rotate(360deg); }
}

/* --- HERO (LYREX) --- */
.hero {
    padding: 150px 0 80px;
    text-align: center;
}

.lyrex-photo-container {
    width: 240px;
    height: 240px;
    margin: 0 auto 30px;
    position: relative;
    will-change: transform;
}

/* Lyrex Shockwave */
.lyrex-shockwave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.lyrex-photo-container:hover .lyrex-shockwave {
    animation: shockwavePulse 1s ease-out;
}

@keyframes shockwavePulse {
    0% { transform: scale(1); opacity: 0.5; border-width: 5px; }
    100% { transform: scale(2.5); opacity: 0; border-width: 1px; }
}

/* Global Pulse */
body.power-surge .bg-grid {
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    transition: 0.3s;
}

.lyrex-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    object-fit: cover;
    box-shadow: 0 0 60px rgba(255,255,255,0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
}

.lyrex-photo-container:hover .lyrex-photo {
    box-shadow: 0 0 100px rgba(255,255,255,0.3);
}

.lyrex-photo:hover { 
    transform: scale(1.05); 
    border-color: #fff; 
    box-shadow: 0 0 80px rgba(255,255,255,0.15); 
}

.hero h2 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 15px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #ffffff 40%, #555555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
}

/* --- SECTION LAYOUT --- */
.brand-section {
    max-width: 1200px;
    margin: 150px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 100px;
}

.brand-section.reverse { flex-direction: row-reverse; }

.brand-photo-container {
    flex: 1;
    position: relative;
    will-change: transform;
}

.brand-photo {
    width: 100%;
    height: auto;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
    position: relative;
    z-index: 2;
    background: #000;
    transform: perspective(1000px) rotateX(0) rotateY(0) scale3d(1, 1, 1);
    will-change: transform;
    pointer-events: none; /* Disable direct interaction with img */
}

.brand-glow {
    position: absolute;
    inset: -30px;
    background: var(--glow-color);
    filter: blur(80px);
    opacity: 0.12; /* Optimized subtle glow */
    transition: opacity 0.6s;
    z-index: 1;
    border-radius: 30px;
    will-change: transform, opacity;
}

.brand-photo-container:hover .brand-glow { opacity: 0.4; filter: blur(100px); }
.brand-photo-container:hover .brand-photo { transform: translateY(-15px); border-color: var(--glow-color); }

.brand-info { flex: 1; }
.brand-info h3 { font-size: 4rem; font-weight: 900; margin-bottom: 25px; letter-spacing: -2px; }
.brand-info p { color: var(--text-muted); font-size: 1.25rem; line-height: 1.8; margin-bottom: 40px; }

.brand-actions { display: flex; gap: 20px; }

.brand-btn {
    padding: 18px 40px;
    border: 1px solid var(--glow-color);
    color: var(--glow-color);
    text-decoration: none;
    font-weight: 800;
    border-radius: 15px;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.brand-btn.primary { background: var(--glow-color); color: #000; }

.brand-btn:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 40px var(--glow-color); 
}

/* --- FOOTER --- */
footer {
    padding: 120px 0;
    background: #030303;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-content h2 { font-size: 3rem; margin-bottom: 20px; letter-spacing: 5px; }
.footer-links { display: flex; justify-content: center; gap: 50px; margin: 50px 0; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-size: 1.1rem; }
.footer-links a:hover { color: #fff; text-shadow: 0 0 10px #fff; }

.copyright { color: #222; font-size: 0.8rem; margin-top: 40px; }

/* --- REVEAL ANIMATIONS --- */
.reveal-left { opacity: 0; transform: translateX(-80px); transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(80px); transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up { opacity: 0; transform: translateY(80px); transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1); }

.reveal-left.active, .reveal-right.active, .reveal-up.active { opacity: 1; transform: translate(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .brand-section, .brand-section.reverse { flex-direction: column; text-align: center; gap: 50px; }
    .brand-info h3 { font-size: 3rem; }
    .brand-actions { justify-content: center; }
}
