body {
    background-color: #000000;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Beyaz Fosfor (Modern Orta Boyut) */
.neon-white {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 14px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    opacity: 1;
}

/* Navigasyon Stilleri */
.glass-nav {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    letter-spacing: 2px;
    transition: 0.4s ease;
}

.nav-link-auth {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover, .nav-link-auth:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Kare Kart Tasarımı */
.glass-card-square {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.glass-card-square:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.card-icon { font-size: 50px; margin-bottom: 20px; transition: 0.5s ease; }
.glass-card-square:hover .card-icon { transform: scale(1.2) rotate(5deg); }

.card-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #fff;
}

.card-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 1.2s ease-out forwards;
}

/* Oyun Kartı Özel Tasarımı */
.game-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
    backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
    .game-card { flex-direction: column; text-align: center; gap: 30px; }
}

.game-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.status-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.play-btn {
    background: #fff;
    color: #000;
    font-weight: 900;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
    background: #f0f0f0;
}

/* Sıralama Tablo Stilleri */
.glass-table-container {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 40px;
}

.rank-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.rank-row:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: scale(1.005);
}

.first-place {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.03) 0%, transparent 100%);
}

.rank-badge {
    background: #fff;
    color: #000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.first-place .rank-badge {
    background: #eab308; /* Altın sarısı */
    color: #000;
}

/* Bağlantı Durumu Işığı */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-red {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4444;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Yavaş Dönen Halka */
.animate-spin-slow {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Market Kart Tasarımı */
.shop-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.shop-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.shop-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
}

.shop-duration {
    background: #e67e22; /* Görseldeki turuncu renk */
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 8px;
    text-align: center;
    letter-spacing: 1px;
}

.shop-body {
    padding: 20px;
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.shop-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.shop-features li {
    font-size: 11px;
    color: #777;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.shop-features li span {
    color: #fff;
    margin-right: 5px;
    font-weight: bold;
}

.shop-footer {
    width: 100%;
    padding: 18px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s;
    text-align: center;
}

.shop-footer:hover {
    filter: brightness(1.2);
    letter-spacing: 4px;
}

/* Detay Butonu ve Gizli Liste */
.view-more {
    font-size: 10px;
    font-weight: 800;
    color: #555;
    letter-spacing: 2px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.view-more:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.feature-preview {
    margin-top: 10px;
}

.feature-preview p {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.hidden-details {
    display: none;
    margin-top: 20px;
    text-align: left;
    background: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 15px;
    animation: fadeIn 0.4s ease;
}

.detail-section h4 {
    font-size: 10px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 5px;
}

.detail-section ul {
    margin-bottom: 15px;
}

.detail-section li {
    font-size: 10px;
    color: #666;
    margin-bottom: 5px;
    list-style: none;
}

.detail-section li::before {
    content: '→';
    margin-right: 5px;
    color: #444;
}