:root {
    /* Ana Logo (M harfi & kanatlar) */
    --gold-light: #F2C66D;
    --gold-medium: #D4A84A;
    --gold-dark: #9E7426;
    
    /* Kılıç (Minecraft tarzı) */
    --turquoise-light: #5FE3D0;
    --diamond-medium: #1FB6A6;
    --turquoise-dark: #0E7F75;
    
    /* Kule */
    --tower-gold: #E0B45A;
    --tower-shadow: #A77A2A;
    
    /* Dış Halka & Işık */
    --neon-blue: #3B7CFF;
    --glow-blue: #6FAEFF;
    --white: #FFFFFF;
    
    /* Arka Plan */
    --sky-blue: #B7DBFF;
    --grass-green: #4CAF50;
    --earth-brown: #7A4A2E;
    --water-blue: #0B2A55;
    --neon-purple: #A86BFF;
    --neon-cyan: #4FDFFF;
    
    /* Alt Yazı Şeridi */
    --banner-navy: #1C2A4A;
    --banner-gold: #E5B85C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to bottom, var(--water-blue) 0%, var(--banner-navy) 100%);
    color: white;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Custom Scrollbar */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--neon-cyan) var(--banner-navy);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--banner-navy);
    border-left: 2px solid var(--water-blue);
    box-shadow: inset 0 0 10px rgba(11, 42, 85, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan) 0%, var(--diamond-medium) 50%, var(--turquoise-dark) 100%);
    border-radius: 6px;
    border: 2px solid var(--banner-navy);
    box-shadow: 
        0 0 10px var(--neon-cyan),
        inset 0 0 10px rgba(95, 227, 208, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--turquoise-light) 0%, var(--neon-cyan) 50%, var(--diamond-medium) 100%);
    box-shadow: 
        0 0 20px var(--turquoise-light),
        0 0 40px var(--neon-cyan),
        inset 0 0 15px rgba(95, 227, 208, 0.8);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-medium) 50%, var(--tower-gold) 100%);
    box-shadow: 
        0 0 30px var(--gold-light),
        inset 0 0 20px rgba(242, 198, 109, 0.8);
}

/* Animated Background Blocks */
.bg-blocks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.block {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.block:nth-child(1) {
    left: 10%;
    top: 20%;
    background: var(--grass-green);
    animation-delay: 0s;
    animation-duration: 15s;
}

.block:nth-child(2) {
    left: 80%;
    top: 40%;
    background: var(--earth-brown);
    animation-delay: 2s;
    animation-duration: 18s;
}

.block:nth-child(3) {
    left: 30%;
    top: 60%;
    background: var(--neon-purple);
    animation-delay: 4s;
    animation-duration: 22s;
    box-shadow: 0 0 20px var(--neon-purple);
}

.block:nth-child(4) {
    left: 70%;
    top: 80%;
    background: var(--neon-cyan);
    animation-delay: 1s;
    animation-duration: 16s;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.block:nth-child(5) {
    left: 50%;
    top: 30%;
    background: var(--diamond-medium);
    animation-delay: 3s;
    animation-duration: 20s;
    box-shadow: 0 0 25px var(--turquoise-light);
}

.block:nth-child(6) {
    left: 15%;
    top: 70%;
    background: var(--gold-medium);
    animation-delay: 5s;
    animation-duration: 19s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    50% {
        transform: translateY(-100px) rotateZ(180deg);
    }
}

/* Particle System */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: rise 8s infinite ease-in;
    opacity: 0;
    box-shadow: 0 0 10px var(--gold-light);
}

@keyframes rise {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5);
    }
}

/* YAKINDA Badge */
.coming-soon {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    transform: rotate(12deg);
    animation: comingSoonFloat 3s infinite ease-in-out;
}

.yakinda-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: var(--banner-gold);
    background: var(--banner-navy);
    padding: 20px 40px;
    border: 4px solid var(--neon-cyan);
    border-radius: 10px;
    display: inline-block;
    box-shadow: 
        0 0 40px var(--neon-cyan),
        0 0 80px var(--turquoise-light),
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 0 0 30px rgba(95, 227, 208, 0.2);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px var(--gold-light),
        0 0 40px var(--neon-cyan);
    letter-spacing: 4px;
    animation: yakindaGlow 2s infinite ease-in-out;
}

@keyframes comingSoonFloat {
    0%, 100% {
        transform: rotate(12deg) translateY(0);
    }
    50% {
        transform: rotate(12deg) translateY(-15px);
    }
}

@keyframes yakindaGlow {
    0%, 100% {
        box-shadow: 
            0 0 40px var(--neon-cyan),
            0 0 80px var(--turquoise-light),
            0 10px 30px rgba(0, 0, 0, 0.8),
            inset 0 0 30px rgba(95, 227, 208, 0.2);
    }
    50% {
        box-shadow: 
            0 0 60px var(--neon-cyan),
            0 0 120px var(--turquoise-light),
            0 10px 30px rgba(0, 0, 0, 0.8),
            inset 0 0 50px rgba(95, 227, 208, 0.4);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* Logo Container */
.logo-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin-bottom: 60px;
    animation: logoFloat 6s infinite ease-in-out;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Outer Glow Ring */
.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    transform: translate(-50%, -50%);
    border: 8px solid var(--white);
    border-radius: 50%;
    box-shadow: 
        0 0 30px var(--neon-blue),
        0 0 60px var(--glow-blue),
        0 0 90px var(--neon-blue),
        inset 0 0 30px rgba(107, 174, 255, 0.3);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Logo Center */
.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-medium) 50%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px var(--gold-medium),
        0 0 80px rgba(242, 198, 109, 0.5),
        inset -20px -20px 60px rgba(158, 116, 38, 0.8),
        inset 20px 20px 60px rgba(242, 198, 109, 0.4);
    animation: rotate 20s infinite linear;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* M Letter */
.letter-m {
    font-family: 'Press Start 2P', cursive;
    font-size: 140px;
    color: var(--banner-navy);
    text-shadow: 
        4px 4px 0 var(--gold-dark),
        -2px -2px 0 var(--white),
        0 0 30px var(--gold-light);
    font-weight: bold;
    position: relative;
    z-index: 3;
    animation: glitch 4s infinite;
}

/* Logo Image */
.logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 60px var(--neon-blue));
    animation: logoImagePulse 3s infinite ease-in-out;
}

@keyframes logoImagePulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8))
                drop-shadow(0 0 60px var(--neon-blue));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1))
                drop-shadow(0 0 80px var(--turquoise-light));
        transform: scale(1.05);
    }
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow: 
            4px 4px 0 var(--gold-dark),
            -2px -2px 0 var(--white),
            0 0 30px var(--gold-light);
    }
    95% {
        text-shadow: 
            -4px 4px 0 var(--neon-cyan),
            2px -2px 0 var(--neon-purple),
            0 0 40px var(--neon-blue);
    }
}

/* Wings */
.wing {
    position: absolute;
    top: 50%;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-light), var(--tower-gold));
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    transform: translateY(-50%);
    box-shadow: 0 0 20px var(--gold-medium);
    animation: wingFlap 2s infinite ease-in-out;
}

.wing-left {
    left: -80px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.wing-right {
    right: -80px;
}

@keyframes wingFlap {
    0%, 100% {
        transform: translateY(-50%) scaleX(1);
    }
    50% {
        transform: translateY(-50%) scaleX(1.2);
    }
}

/* Sword */
.sword {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 200px;
    animation: swordGlow 2s infinite ease-in-out;
}

.sword-blade {
    width: 40px;
    height: 150px;
    background: linear-gradient(to bottom, var(--turquoise-light), var(--diamond-medium), var(--turquoise-dark));
    clip-path: polygon(50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
    box-shadow: 
        0 0 30px var(--turquoise-light),
        0 0 60px var(--diamond-medium),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.sword-handle {
    width: 60px;
    height: 30px;
    background: var(--tower-gold);
    margin: -5px auto 0;
    box-shadow: 0 0 15px var(--tower-shadow);
}

.sword-pommel {
    width: 40px;
    height: 20px;
    background: var(--gold-dark);
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
}

@keyframes swordGlow {
    0%, 100% {
        filter: brightness(1);
        transform: translateX(-50%) translateY(0);
    }
    50% {
        filter: brightness(1.5);
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Title */
.title {
    font-family: 'Press Start 2P', cursive;
    font-size: 48px;
    color: var(--banner-gold);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 
        3px 3px 0 var(--banner-navy),
        6px 6px 20px rgba(0, 0, 0, 0.8),
        0 0 40px var(--gold-light);
    letter-spacing: 4px;
    animation: titlePulse 4s infinite ease-in-out;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            3px 3px 0 var(--banner-navy),
            6px 6px 20px rgba(0, 0, 0, 0.8),
            0 0 40px var(--gold-light);
    }
    50% {
        text-shadow: 
            3px 3px 0 var(--banner-navy),
            6px 6px 20px rgba(0, 0, 0, 0.8),
            0 0 60px var(--neon-cyan);
    }
}

/* Subtitle Banner */
.subtitle-banner {
    background: var(--banner-navy);
    padding: 20px 60px;
    border: 4px solid var(--banner-gold);
    box-shadow: 
        0 0 30px var(--neon-blue),
        inset 0 0 20px rgba(59, 124, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.subtitle-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 184, 92, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.subtitle {
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    color: var(--banner-gold);
    letter-spacing: 8px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Countdown Timer */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(28, 42, 74, 0.8);
    border: 3px solid var(--neon-cyan);
    border-radius: 10px;
    padding: 20px 30px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(95, 227, 208, 0.3),
        inset 0 0 20px rgba(95, 227, 208, 0.1);
    animation: countdownPulse 2s infinite ease-in-out;
}

.countdown-item:hover {
    transform: scale(1.1);
    border-color: var(--turquoise-light);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 40px var(--turquoise-light);
}

.countdown-number {
    font-family: 'Press Start 2P', cursive;
    font-size: 48px;
    color: var(--banner-gold);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px var(--gold-light);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: var(--turquoise-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown-separator {
    font-family: 'Press Start 2P', cursive;
    font-size: 48px;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    animation: blink 1s infinite;
}

@keyframes countdownPulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(95, 227, 208, 0.3),
            inset 0 0 20px rgba(95, 227, 208, 0.1);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(95, 227, 208, 0.6),
            inset 0 0 30px rgba(95, 227, 208, 0.2);
    }
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0.3;
    }
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
}

.card {
    background: rgba(28, 42, 74, 0.8);
    border: 3px solid var(--neon-blue);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(59, 124, 255, 0.3),
        inset 0 0 20px rgba(111, 174, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 227, 208, 0.1) 0%, transparent 70%);
    animation: cardGlow 8s infinite;
}

@keyframes cardGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(25%, 25%);
    }
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--turquoise-light);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 40px var(--turquoise-light);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px currentColor);
}

.card h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: var(--banner-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--sky-blue);
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon {
        top: 20px;
        right: 20px;
        transform: rotate(8deg);
    }
    
    .yakinda-text {
        font-size: 20px;
        padding: 15px 30px;
        letter-spacing: 2px;
    }
    
    .logo-container {
        width: 300px;
        height: 300px;
    }
    
    .logo-center {
        width: 200px;
        height: 200px;
    }
    
    .logo-image {
        width: 140px;
        height: 140px;
    }
    
    .letter-m {
        font-size: 100px;
    }
    
    .glow-ring {
        width: 280px;
        height: 280px;
    }
    
    .title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 14px;
        letter-spacing: 4px;
    }
    
    .wing {
        width: 80px;
        height: 60px;
    }
    
    .wing-left {
        left: -50px;
    }
    
    .wing-right {
        right: -50px;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 90px;
        padding: 15px 20px;
    }
    
    .countdown-number {
        font-size: 32px;
    }
    
    .countdown-separator {
        font-size: 32px;
    }
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    background: linear-gradient(to top, var(--banner-navy) 0%, rgba(28, 42, 74, 0.95) 100%);
    border-top: 3px solid var(--neon-blue);
    padding: 40px 20px;
    margin-top: 80px;
    z-index: 10;
    box-shadow: 
        0 -10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(59, 124, 255, 0.3),
        inset 0 10px 30px rgba(59, 124, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.copyright {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--sky-blue);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(183, 219, 255, 0.5);
}

.powered-by {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--turquoise-light);
    letter-spacing: 1px;
}

.neura {
    color: var(--banner-gold);
    font-weight: 700;
    text-shadow: 
        0 0 10px var(--gold-light),
        0 0 20px var(--gold-medium);
    transition: all 0.3s ease;
    display: inline-block;
}

.neura:hover {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 20px var(--neon-cyan),
        0 0 40px var(--turquoise-light);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 20px;
        margin-top: 60px;
    }
    
    .copyright {
        font-size: 14px;
    }
    
    .powered-by {
        font-size: 12px;
    }
}