/* ============================================
   RADQN Games - Oyunlar Sayfası Özel Stiller
   (shared.css üzerine eklenir)
   ============================================ */

/* ============================================
   Particles Canvas
   ============================================ */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   Games Hero
   ============================================ */
.games-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.games-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 107, 53, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 201, 60, 0.25) 0%, transparent 50%);
    z-index: 1;
}

.games-hero-content {
    position: relative;
    z-index: 2;
}

.games-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 15px;
}

.games-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-primary);
}

/* ============================================
   Game Cards
   ============================================ */
.games-section {
    padding: 60px 0 100px;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.game-item {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
}

.game-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25);
}

.game-item-image {
    width: 200px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.game-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
}

.game-item-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.game-item-badge.new { background: #4ade80; }
.game-item-badge.hot { background: #fb923c; }

.game-item-content {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 15px;
}

.game-item-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.game-item-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.game-item-category {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.game-item-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.game-item-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.game-item-features span {
    background: rgba(255, 107, 53, 0.2);
    color: #ff8c5a;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.game-item-buttons {
    display: flex;
    gap: 12px;
}

.game-item-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.game-item-btn svg {
    width: 20px;
    height: 20px;
}

.game-item-btn.android {
    background: #3DDC84;
    color: #000;
}

.game-item-btn.android:hover {
    background: #2CC974;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(61, 220, 132, 0.4);
}

.game-item-btn.coming-soon {
    background: rgba(255,255,255,0.15);
    color: var(--text-muted);
    cursor: not-allowed;
}

.game-item-btn.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

/* ============================================
   Coming Soon Section
   ============================================ */
.coming-soon-section {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.coming-soon-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.coming-soon-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.coming-soon-card p {
    color: var(--text-secondary);
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 201, 60, 0.7));
        transform: scale(1.02);
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .games-hero {
        min-height: auto;
        padding: 100px 15px 40px;
    }

    .games-hero h1 {
        font-size: 1.8rem;
    }

    .games-hero p {
        font-size: 0.95rem;
    }

    .games-section {
        padding: 40px 0 60px;
    }

    .game-item {
        flex-direction: column;
    }

    .game-item-image {
        width: 100%;
        min-height: 160px;
        height: 160px;
    }

    .game-logo {
        width: 100px;
        height: 100px;
    }

    .game-item-content {
        padding: 20px;
    }

    .game-item-header {
        flex-direction: column;
        gap: 10px;
    }

    .game-item-title {
        font-size: 1.2rem;
    }

    .game-item-description {
        font-size: 0.9rem;
    }

    .game-item-features {
        gap: 6px;
    }

    .game-item-features span {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .game-item-buttons {
        flex-direction: column;
    }

    .game-item-btn {
        justify-content: center;
        padding: 14px 20px;
    }
}

@media print {
    #particles {
        display: none !important;
    }
}
