<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background: radial-gradient(circle at center, #1e293b, #0f172a);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.cyber-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cyber-btn:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 1.5s;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

.bg-grid {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
}

/* Yeni animasyonlu arka plan */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -20;
    overflow: hidden;
}

.animated-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg, #6366f1, #8b5cf6, #ec4899, #3b82f6, #10b981);
    background-size: 500% 500%;
    animation: gradientBg 15s ease infinite;
    opacity: 0.7;
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Eklenen overlay katmanÄ± */
.game-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -15;
    background: radial-gradient(circle at center, transparent, #0f172a 85%);
}

/* Logo stili ve animasyonu */
.game-logo {
    width: 330px;
    height: auto;
    align-items: center;
    transition: all 0.5s ease;
    animation: colorfulShadow 15s ease infinite;
}

.game-logo:hover {
    opacity: 1;
    transform: scale(1.09);
    animation: none;
    filter: drop-shadow(0 0 20px rgba(63, 218, 216, 0.9));
}

@keyframes colorfulShadow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.8)); /* game-primary - mor mavi */
    }
    20% {
        filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8)); /* game-secondary - mor */
    }
    40% {
        filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.8)); /* game-accent - pembe */
    }
    60% {
        filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.8)); /* yeÅŸil */
    }
    80% {
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8)); /* mavi */
    }
}

/* Skor tablosu kaydÄ±rma Ã§ubuÄŸu stilleri */
.scoreboard-container::-webkit-scrollbar {
    width: 8px;
}

.scoreboard-container::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 4px;
}

.scoreboard-container::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.4);
    border-radius: 4px;
}

.scoreboard-container::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.6);
}

.scoreboard-container {
    scrollbar-color: rgba(139, 92, 246, 0.4) rgba(30, 41, 59, 0.4);
    scrollbar-width: thin;
}

/* ZiyaretÃ§i paneli scroll tasarÄ±mÄ± */
.guest-scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.guest-scroll::-webkit-scrollbar-track {
    background: transparent;
    margin: 4px;
}

.guest-scroll::-webkit-scrollbar-thumb {
    background: #ec4899;
    border-radius: 50px;
    opacity: 0.5;
}

.guest-scroll::-webkit-scrollbar-thumb:hover {
    background: #ec4899;
    opacity: 0.8;
}

.guest-scroll {
    scrollbar-width: thin;
    scrollbar-color: #ec4899 transparent;
}

.guest-scroll:hover::-webkit-scrollbar-thumb {
    background: #ec4899;
}

/* Firefox iÃ§in scroll tasarÄ±mÄ± */
@supports (scrollbar-color: #ec4899 transparent) {
    .guest-scroll {
        scrollbar-color: #ec4899 transparent;
        scrollbar-width: thin;
    }
}


@media (max-width: 768px) {
    .scoreboard-mobile {
        position: relative !important;
        z-index: 10;
        margin-bottom: 1.5rem;
        margin-top: 3.5rem;
    }
    
    .buttons-mobile {
        position: relative !important;
        z-index: 5;
    }
}



 /* Sade Oyun TemalÄ± Dil SeÃ§ici Stilleri */
 .game-lang-selector {
    position: relative;
    display: inline-block;
}

/* Ana dil butonu */
.game-btn-lang {
    background-color: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.5rem;
    padding: 0.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    outline: none;
}

.game-btn-lang:hover {
    background-color: rgba(30, 41, 59, 0.7);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Dropdown menÃ¼ */
.game-lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: auto;
    margin-top: 0.3rem;
    background-color: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    padding: 0.3rem;
    transition: all 0.2s;
}

.game-lang-dropdown.show {
    display: block;
}

/* Dil seÃ§enekleri */
.game-lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    margin-bottom: 0.2rem;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: all 0.2s;
}

.game-lang-option:last-child {
    margin-bottom: 0;
}

.game-lang-option:hover {
    background-color: rgba(99, 102, 241, 0.2);
}

.game-lang-option.active {
    background-color: rgba(99, 102, 241, 0.25);
}

/* Bayrak stili */
.game-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
 }</pre></body></html>