   :root {
        --primary-color: <?= htmlspecialchars($site_settings['theme_primary_color'] ?? '#d834b0', ENT_QUOTES, 'UTF-8'); ?>;
        --secondary-color: <?= htmlspecialchars($site_settings['theme_secondary_color'] ?? '#7b41d6', ENT_QUOTES, 'UTF-8'); ?>;
        --light-text: #ffffff;
        --gray-text: #a5a5c9;
        --card-bg: #17152e;
        --card-border: #2a245c;
        --danger: #ff4444;
        --bg-gradient: linear-gradient(180deg, #0f0d24, #17152e);
        --transition: all 0.3s ease;
        --shadow: 0 8px 24px rgba(216, 52, 176, 0.2);
    }

    * {
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    .container {
        max-width: 1600px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        font-family: 'Poppins', sans-serif;
    }
    .breadcrumb-item a {
        color: var(--gray-text);
        text-decoration: none;
        transition: var(--transition);
    }
    .breadcrumb-item a:hover {
        color: var(--primary-color);
    }
    .breadcrumb-item.active {
        color: var(--primary-color);
    }
    .breadcrumb-item + .breadcrumb-item::before {
        content: ">";
        color: var(--gray-text);
        padding: 0 0.5rem;
    }

    .game-detail-image {
        position: relative;
        padding-top: 56.25%;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        z-index: 1;
    }
    .game-detail-image iframe,
    .game-detail-image div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        pointer-events: auto;
        z-index: 2;
    }
    .game-controls {
        display: flex;
        gap: 8px;
        z-index: 10;
        margin-left: 10px;
        position: relative;
    }
    .fullscreen-btn, .mini-play-btn, .volume-btn {
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        border: none;
        padding: 8px;
        border-radius: 8px;
        cursor: pointer;
        transition: var(--transition);
        z-index: 11;
        touch-action: manipulation;
    }
    .fullscreen-btn:hover, .mini-play-btn:hover, .volume-btn:hover {
        background: var(--primary-color);
    }
    .mini-play-btn.active {
        background: var(--primary-color);
    }
    .volume-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    .volume-slider-container {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 8px;
        padding: 8px;
        z-index: 12;
        display: none;
    }
    .volume-slider {
        width: 100px;
        cursor: pointer;
    }

    .game-mini-window {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 320px;
        height: 180px;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 12px;
        box-shadow: var(--shadow);
        z-index: 1000;
        overflow: hidden;
        user-select: none;
        display: none;
        pointer-events: auto;
    }
    .game-mini-window.active {
        display: block;
    }
    .game-mini-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
        background: rgba(0, 0, 0, 0.5);
        color: var(--light-text);
        z-index: 21;
    }
    .game-mini-title {
        font-size: 0.9rem;
        font-weight: 600;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .game-mini-close {
        background: transparent;
        border: none;
        color: var(--light-text);
        padding: 6px;
        cursor: pointer;
        transition: var(--transition);
        z-index: 22;
        touch-action: manipulation;
    }
    .game-mini-close:hover {
        color: var(--danger);
    }
    #miniGameIframeContainer {
        width: 100%;
        height: calc(100% - 36px);
    }
    .game-mini-iframe {
        width: 100%;
        height: 100%;
        border: none;
        pointer-events: auto;
        z-index: 21;
    }

    .game-fullscreen-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        overflow: hidden;
        pointer-events: auto;
    }
    .game-fullscreen-modal.active {
        display: flex;
    }
    .game-fullscreen-content {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #fullscreenGameIframeContainer {
        width: 100vw;
        height: 100vh;
    }
    .game-fullscreen-iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 0;
        pointer-events: auto;
        z-index: 2001;
        position: absolute;
        top: 0;
        left: 0;
    }
    .game-fullscreen-close {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--primary-color);
        color: #fff;
        border: none;
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: var(--transition);
        z-index: 2002;
        touch-action: manipulation;
    }
    .game-fullscreen-close:hover {
        background: var(--secondary-color);
    }

    @media (min-width: 992px) {
        .game-detail-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--card-border);
            margin-bottom: 3rem;
            box-shadow: var(--shadow);
            transition: transform 0.4s ease;
            font-family: 'Poppins', sans-serif;
        }
        .game-detail-card:hover {
            transform: translateY(-8px);
        }
        .game-detail-header {
            padding: 2rem;
            border-bottom: 1px solid var(--card-border);
        }
        .game-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
            color: var(--light-text);
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(216, 52, 176, 0.3);
        }
        .game-rating {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .stars {
            color: #ffd700;
            font-size: 1.3rem;
        }
        .rating-value {
            font-weight: 700;
            font-size: 1.3rem;
        }
        .game-meta {
            display: flex;
            gap: 2rem;
            font-size: 1rem;
            color: var(--gray-text);
            margin-top: 1.5rem;
        }
        .game-meta > div {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .game-meta i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        .game-meta a {
            color: var(--gray-text);
            text-decoration: none;
            transition: var(--transition);
        }
        .game-meta a:hover {
            color: var(--primary-color);
        }
        .game-actions {
            padding: 2rem;
            display: flex;
            gap: 16px;
            border-bottom: 1px solid var(--card-border);
        }
.favorite-btn, .share-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-size: 1rem;
}
.favorite-btn:focus, .share-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
        .favorite-btn.active {
            background: rgba(255, 68, 68, 0.2);
            border: 1px solid var(--danger);
            color: var(--danger);
        }
        .favorite-btn.active i {
            color: var(--danger);
        }
        .favorite-btn:hover, .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .share-dropdown {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 10px 0;
        }
        .dropdown-item {
            color: var(--light-text);
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .dropdown-item:hover {
            background: var(--primary-color);
            color: #fff;
        }
        .dropdown-item i {
            width: 24px;
            text-align: center;
        }
        .dropdown-divider {
            border-top-color: var(--card-border);
        }
        .game-description, .game-instructions {
            padding: 2rem;
            border-bottom: 1px solid var(--card-border);
        }
        .game-description h2, .game-instructions h2 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--light-text);
            font-weight: 600;
        }
        .description-text, .instructions-text {
            color: var(--gray-text);
            line-height: 1.8;
            font-size: 1rem;
        }
        .game-tags {
            padding: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .game-tag {
            background: var(--card-border);
            color: var(--gray-text);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition);
        }
        .game-tag:hover {
            background: var(--primary-color);
            color: #fff;
            transform: translateY(-2px);
        }
        .game-review-section {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid var(--card-border);
            box-shadow: var(--shadow);
        }
        .game-review-section h2 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        .rating-input {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 2rem;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.6rem;
            color: #ffd700;
        }
        .rating-stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .rating-text {
            font-size: 1rem;
            color: var(--gray-text);
        }
        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--card-border);
            color: var(--light-text);
            border-radius: 12px;
            font-size: 1rem;
            padding: 12px;
            font-family: 'Poppins', sans-serif;
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(216, 52, 176, 0.25);
        }
        .form-label {
            color: var(--light-text);
            font-size: 0.95rem;
            font-weight: 500;
        }
        .btn-yox-primary {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
        }
        .btn-yox-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .game-reviews {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--card-border);
            box-shadow: var(--shadow);
        }
        .game-reviews h2 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        .review-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        .review-card:hover {
            transform: translateY(-4px);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .reviewer-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            object-fit: cover;
        }
        .reviewer-name a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .reviewer-name a:hover {
            color: var(--primary-color);
        }
        .review-date {
            font-size: 0.9rem;
            color: var(--gray-text);
        }
        .review-rating {
            font-size: 1rem;
            color: #ffd700;
        }
        .review-content {
            color: var(--gray-text);
            line-height: 1.8;
            font-size: 1rem;
            margin-top: 1rem;
        }
        .review-actions {
            display: flex;
            gap: 20px;
            margin-top: 1rem;
            font-size: 0.95rem;
        }
        .review-actions div {
            cursor: pointer;
            color: var(--gray-text);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        .review-actions div:hover {
            color: var(--primary-color);
        }
        .like-action.active {
            color: var(--primary-color);
        }
        .no-reviews {
            text-align: center;
            padding: 3rem;
            color: var(--gray-text);
        }
        .no-reviews-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        .similar-games-section, .game-stats-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid var(--card-border);
            box-shadow: var(--shadow);
        }
        .similar-games-section h2, .game-stats-card h2 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
            font-weight: 600;
        }
        .similar-games-section h2::after, .game-stats-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
        }
        .similar-game-card {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
        .similar-game-card:hover {
            transform: translateY(-4px);
        }
        .similar-game-card:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .similar-game-image {
            width: 100px;
            height: 100px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            margin-right: 16px;
            flex-shrink: 0;
        }
        .similar-game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .similar-game-content {
            flex-grow: 1;
        }
        .similar-game-content h3 {
            font-size: 1.1rem;
            margin: 0 0 8px;
            font-weight: 600;
        }
        .similar-game-content h3 a {
            color: var(--light-text);
            text-decoration: none;
            transition: var(--transition);
        }
        .similar-game-content h3 a:hover {
            color: var(--primary-color);
        }
        .similar-game-content .game-meta {
            display: flex;
            gap: 16px;
            font-size: 0.9rem;
            color: var(--gray-text);
        }
        .similar-game-image .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(216, 52, 176, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        .similar-game-image:hover .game-overlay {
            opacity: 1;
        }
        .similar-game-image .play-btn {
            background: var(--primary-color);
            color: #fff;
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transform: translateY(10px);
            transition: var(--transition);
        }
        .similar-game-image:hover .play-btn {
            transform: translateY(0);
        }
        .stats-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .stats-list li {
            display: flex;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .stats-list li:last-child {
            border-bottom: none;
        }
        .stats-list .stat-label {
            color: var(--gray-text);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
        }
        .stats-list .stat-value {
            font-weight: 600;
            color: var(--light-text);
            font-size: 1rem;
        }
    }

    /* Mobil Stili */
    @media (max-width: 991.98px) {
        .container {
            padding-left: 10px;
            padding-right: 10px;
        }
        .row {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .col-12, .col-lg-8, .col-lg-4 {
            width: 100%;
            max-width: 100%;
            margin: 0;
        }
        .game-detail-image {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            z-index: 1;
        }
        .game-detail-image iframe,
        .game-detail-image div {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            pointer-events: auto;
            z-index: 2;
            display: block !important;
        }
        .game-controls {
            gap: 6px;
            justify-content: flex-end;
        }
        .fullscreen-btn, .volume-btn {
            padding: 6px;
            font-size: 0.85rem;
            border-radius: 6px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mini-play-btn {
            display: none;
        }
        .volume-slider-container {
            width: 80px;
            right: -20px;
        }
        .volume-slider {
            width: 100%;
        }
        .game-mini-window {
            display: none !important;
        }
        .game-fullscreen-content {
            width: 100%;
            height: 100%;
        }
        .game-fullscreen-iframe {
            border-radius: 0;
            width: 100%;
            height: 100%;
        }
        .game-fullscreen-close {
            top: 8px;
            right: 8px;
            padding: 6px;
            border-radius: 6px;
            font-size: 0.9rem;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .game-detail-card {
            background: var(--card-bg);
            border-radius: 10px;
            border: 1px solid var(--card-border);
            margin-bottom: 1rem;
            box-shadow: 0 2px 8px rgba(216, 52, 176, 0.1);
        }
        .game-detail-header {
            padding: 0.75rem;
        }
        .game-title {
            font-size: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .game-rating {
            gap: 5px;
            margin-top: 0.5rem;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .stars {
            font-size: 1rem;
        }
        .rating-value {
            font-size: 1rem;
        }
        .game-meta {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }
        .game-meta > div {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .game-meta i {
            font-size: 0.85rem;
        }
        .game-meta a {
            color: var(--gray-text);
            text-decoration: none;
        }
        .game-meta a:hover {
            color: var(--primary-color);
        }
        .game-actions {
            padding: 0.75rem;
            flex-direction: column;
            gap: 0.5rem;
        }
        .favorite-btn, .share-btn {
            width: 100%;
            padding: 8px 10px;
            font-size: 0.85rem;
            border-radius: 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            touch-action: manipulation;
        }
        .favorite-btn.active {
            background: rgba(255, 68, 68, 0.2);
            border: 1px solid var(--danger);
        }
        .game-description, .game-instructions {
            padding: 0.75rem;
        }
        .game-description h2, .game-instructions h2 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .description-text, .instructions-text {
            font-size: 0.85rem;
            line-height: 1.5;
        }
        .game-tags {
            padding: 0.75rem;
            gap: 5px;
        }
        .game-tag {
            padding: 4px 8px;
            font-size: 0.8rem;
            border-radius: 15px;
            background: var(--card-border);
        }
        .game-tag:hover {
            background: var(--primary-color);
        }
        .game-review-section {
            border-radius: 10px;
            padding: 0.75rem;
            margin-bottom: 1rem;
        }
        .game-review-section h2 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        .rating-input {
            gap: 8px;
            margin-bottom: 0.75rem;
        }
        .rating-stars {
            font-size: 1.2rem;
            gap: 4px;
        }
        .rating-stars i {
            padding: 3px;
        }
        .rating-text {
            font-size: 0.85rem;
        }
        .form-control {
            font-size: 0.85rem;
            padding: 6px;
            border-radius: 6px;
        }
        .form-label {
            font-size: 0.85rem;
        }
        .btn-yox-primary {
            padding: 8px 12px;
            font-size: 0.85rem;
            border-radius: 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            touch-action: manipulation;
        }
        .game-reviews {
            border-radius: 10px;
            padding: 0.75rem;
            margin-bottom: 1rem;
        }
        .game-reviews h2 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        .review-card {
            border-radius: 8px;
            padding: 0.75rem;
            margin-bottom: 0.75rem;
        }
        .review-header {
            flex-direction: row;
            align-items: center;
            gap: 8px;
            justify-content: space-between;
        }
        .reviewer-info {
            gap: 8px;
            flex: 1;
        }
        .reviewer-avatar {
            width: 32px;
            height: 32px;
        }
        .reviewer-name a {
            font-size: 0.9rem;
        }
        .review-date {
            font-size: 0.8rem;
        }
        .review-rating {
            font-size: 0.85rem;
        }
        .review-content {
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }
        .review-actions {
            gap: 10px;
            font-size: 0.8rem;
            flex-wrap: wrap;
        }
        .review-actions div {
            padding: 3px;
            touch-action: manipulation;
        }
        .similar-games-section {
            border-radius: 10px;
            padding: 0.75rem;
            margin-bottom: 1rem;
        }
        .similar-games-section h2 {
            font-size: 1.1rem;
            padding-bottom: 0.5rem;
            font-weight: 600;
        }
        .similar-games-section h2::after {
            width: 30px;
            height: 2px;
        }
        .similar-game-card {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 0.75rem;
            padding: 0.5rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            touch-action: manipulation;
        }
        .similar-game-card:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .similar-game-card:last-child {
            margin-bottom: 0;
        }
        .similar-game-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        .similar-game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .similar-game-content {
            flex-grow: 1;
        }
        .similar-game-content h3 {
            font-size: 1.1rem;
            margin: 0 0 8px;
            font-weight: 600;
        }
        .similar-game-content h3 a {
            color: var(--light-text);
            text-decoration: none;
            transition: var(--transition);
        }
        .similar-game-content h3 a:hover {
            color: var(--primary-color);
        }
        .similar-game-content .game-meta {
            display: flex;
            gap: 16px;
            font-size: 0.9rem;
            color: var(--gray-text);
        }
        .similar-game-image .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(216, 52, 176, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        .similar-game-image:hover .game-overlay {
            opacity: 1;
        }
        .similar-game-image .play-btn {
            background: var(--primary-color);
            color: #fff;
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transform: translateY(10px);
            transition: var(--transition);
        }
        .similar-game-image:hover .play-btn {
            transform: translateY(0);
        }

        .stats-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .stats-list li {
            display: flex;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .stats-list li:last-child {
            border-bottom: none;
        }
        .stats-list .stat-label {
            color: var(--gray-text);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
        }
        .stats-list .stat-value {
            font-weight: 600;
            color: var(--light-text);
            font-size: 1rem;
        }
    }

 /* Mobil Stili */
@media (max-width: 991.98px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .col-12, .col-lg-8, .col-lg-4 {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .game-detail-image {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9; /* 16:9 oranını koru */
        background: #000;
        border-radius: 8px;
        margin-bottom: 1rem;
        overflow: hidden;
        z-index: 1;
    }

    .game-detail-image iframe,
    .game-detail-image div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        pointer-events: auto;
        z-index: 2;
        display: block !important; /* Mobil cihazlarda görünürlüğü zorla */
    }

    .game-controls {
        gap: 6px;
        justify-content: flex-end;
    }
    .fullscreen-btn {
        padding: 6px;
        font-size: 0.85rem;
        border-radius: 6px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mini-play-btn {
        display: none; /* Mobil cihazlarda mini oynatma butonunu gizle */
    }

    .game-mini-window {
        display: none !important; /* Mobil cihazlarda mini oynatma penceresini gizle */
    }

    .game-fullscreen-content {
        width: 100%;
        height: 100%;
    }
    .game-fullscreen-iframe {
        border-radius: 0;
        width: 100%;
        height: 100%;
    }
    .game-fullscreen-close {
        top: 8px;
        right: 8px;
        padding: 6px;
        border-radius: 6px;
        font-size: 0.9rem;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .game-detail-card {
        background: var(--card-bg);
        border-radius: 10px;
        border: 1px solid var(--card-border);
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(216, 52, 176, 0.1);
    }

    .game-detail-header {
        padding: 0.75rem;
    }
    .game-title {
        font-size: 1.5rem;
        line-height: 1.2;
        font-weight: 700;
    }
    .game-rating {
        gap: 5px;
        margin-top: 0.5rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .stars {
        font-size: 1rem;
    }
    .rating-value {
        font-size: 1rem;
    }
    .game-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    .game-meta > div {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .game-meta i {
        font-size: 0.85rem;
    }
    .game-meta a {
        color: var(--gray-text);
        text-decoration: none;
    }
    .game-meta a:hover {
        color: var(--primary-color);
    }

    .game-actions {
        padding: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    .favorite-btn, .share-btn {
        width: 100%;
        padding: 8px 10px;
        font-size: 0.85rem;
        border-radius: 20px;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        touch-action: manipulation;
    }
    .favorite-btn.active {
        background: rgba(255, 68, 68, 0.2);
        border: 1px solid var(--danger);
    }

    .game-description, .game-instructions {
        padding: 0.75rem;
    }
    .game-description h2, .game-instructions h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    .description-text, .instructions-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .game-tags {
        padding: 0.75rem;
        gap: 5px;
    }
    .game-tag {
        padding: 4px 8px;
        font-size: 0.8rem;
        border-radius: 15px;
        background: var(--card-border);
    }
    .game-tag:hover {
        background: var(--primary-color);
    }

    .game-review-section {
        border-radius: 10px;
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    .game-review-section h2 {
        font-size: 1.1rem;
        font-weight: 600;
    }
    .rating-input {
        gap: 8px;
        margin-bottom: 0.75rem;
    }
    .rating-stars {
        font-size: 1.2rem;
        gap: 4px;
    }
    .rating-stars i {
        padding: 3px;
    }
    .rating-text {
        font-size: 0.85rem;
    }
    .form-control {
        font-size: 0.85rem;
        padding: 6px;
        border-radius: 6px;
    }
    .form-label {
        font-size: 0.85rem;
    }

    .btn-yox-primary {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 20px;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        touch-action: manipulation;
    }

    .game-reviews {
        border-radius: 10px;
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    .game-reviews h2 {
        font-size: 1.1rem;
        font-weight: 600;
    }
    .review-card {
        border-radius: 8px;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    .review-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        justify-content: space-between;
    }
    .reviewer-info {
        gap: 8px;
        flex: 1;
    }
    .reviewer-avatar {
        width: 32px;
        height: 32px;
    }
    .reviewer-name a {
        font-size: 0.9rem;
    }
    .review-date {
        font-size: 0.8rem;
    }
    .review-rating {
        font-size: 0.85rem;
    }
    .review-content {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    .review-actions {
        gap: 10px;
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    .review-actions div {
        padding: 3px;
        touch-action: manipulation;
    }

    .similar-games-section {
        border-radius: 10px;
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    .similar-games-section h2 {
        font-size: 1.1rem;
        padding-bottom: 0.5rem;
        font-weight: 600;
    }
    .similar-games-section h2::after {
        width: 30px;
        height: 2px;
    }
    .similar-game-card {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 0.75rem;
        padding: 0.5rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        transition: var(--transition);
        touch-action: manipulation;
    }
    .similar-game-card:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    .similar-game-card:last-child {
        margin-bottom: 0;
    }
    .similar-game-image {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }
    .similar-game-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .similar-game-content {
        flex: 1;
    }
    .similar-game-content h3 {
        font-size: 0.85rem;
        margin: 0 0 4px;
        font-weight: 600;
    }
    .similar-game-content h3 a {
        color: var(--light-text);
        text-decoration: none;
        transition: var(--transition);
    }
    .similar-game-content h3 a:hover {
        color: var(--primary-color);
    }
    .similar-game-content .game-meta {
        display: flex;
        gap: 8px;
        font-size: 0.75rem;
        color: var(--gray-text);
    }
    .similar-game-image .game-overlay {
        background: rgba(216, 52, 176, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: var(--transition);
    }
    .similar-game-image .play-btn {
        padding: 3px 6px;
        font-size: 0.7rem;
        border-radius: 12px;
        background: var(--primary-color);
        color: #fff;
        text-decoration: none;
        transform: none;
        transition: var(--transition);
        touch-action: manipulation;
    }
    .similar-game-image:hover .play-btn {
        background: var(--secondary-color);
    }

    .game-stats-card {
        border-radius: 10px;
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    .game-stats-card h2 {
        font-size: 1.1rem;
        padding-bottom: 0.5rem;
        font-weight: 600;
    }
    .game-stats-card h2::after {
        width: 30px;
        height: 2px;
    }
    .stats-list li {
        padding: 8px 0;
    }
    .stats-list .stat-label {
        font-size: 0.85rem;
        gap: 5px;
    }
    .stats-list .stat-value {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .game-title {
        font-size: 1.3rem;
    }
    .game-actions {
        padding: 0.5rem;
        gap: 8px;
    }
    .favorite-btn, .share-btn {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
    .game-description, .game-instructions, .game-tags {
        padding: 0.5rem;
    }
    .game-description h2, .game-instructions h2 {
        font-size: 1rem;
    }
    .description-text, .instructions-text {
        font-size: 0.8rem;
    }
    .game-tags {
        gap: 4px;
    }
    .game-tag {
        padding: 3px 6px;
        font-size: 0.75rem;
    }
    .rating-stars {
        font-size: 1.1rem;
    }
    .game-review-section, .game-reviews {
        padding: 0.5rem;
    }
    .game-review-section h2, .game-reviews h2 {
        font-size: 1rem;
    }
    .review-card {
        padding: 0.5rem;
    }
    .reviewer-avatar {
        width: 28px;
        height: 28px;
    }
    .reviewer-name a {
        font-size: 0.85rem;
    }
    .review-date {
        font-size: 0.75rem;
    }
    .review-content {
        font-size: 0.8rem;
    }
    .btn-yox-primary {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    .similar-games-section, .game-stats-card {
        padding: 0.5rem;
    }
    .similar-game-image {
        width: 50px;
        height: 50px;
    }
    .similar-game-content h3 {
        font-size: 0.8rem;
    }
    .similar-game-content .game-meta {
        gap: 6px;
        font-size: 0.7rem;
    }
}

/* Erişilebilirlik */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.touch-active {
    transform: scale(0.95);
    opacity: 0.8;
}

img.lazy-img, iframe.lazy-iframe {
    opacity: 0;
    transition: opacity 0.3s ease;
}
img.lazy-img[src], iframe.lazy-iframe[src] {
    opacity: 1;
}

/* Oyun ekranı ve benzer oyunlar için düzenleme */
.game-screen-wrapper, .similar-games-wrapper {
    padding: 0;
}

.game-detail-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* 16:9 oranı koru */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.game-detail-image iframe,
.game-detail-image div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
    z-index: 2;
    display: block !important; /* iframe görünürlüğünü zorla */
}

@media (min-width: 992px) {
    .game-screen-wrapper {
        padding: 0;
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .game-detail-image {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9; /* 16:9 oranı koru */
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        z-index: 1;
    }

    .game-detail-image iframe,
    .game-detail-image div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        pointer-events: auto;
        z-index: 2;
        display: block !important;
    }

    .similar-games-section, .game-stats-card {
        flex: 0 0 auto;
        width: 100%;
        position: sticky;
        top: 20px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    .similar-game-card {
        flex-direction: row;
        align-items: center;
    }
    .similar-game-image {
        width: 100px;
        height: 100px;
    }
    .similar-game-content h3 {
        font-size: 1.1rem;
    }
    .similar-game-content .game-meta {
        font-size: 0.9rem;
    }
}

@media (max-width: 991.98px) {
    .game-screen-wrapper {
        width: 100%;
    }
    .similar-games-section, .game-stats-card {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    .similar-game-card {
        flex-direction: row;
        align-items: center;
    }
    .similar-game-image {
        width: 60px;
        height: 60px;
    }
}

/* Sidebar düzenleme */
.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 992px) {
    .sidebar-wrapper {
        position: sticky;
        top: 20px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    .similar-games-section, .game-stats-card {
        position: static;
        width: 100%;
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 991.98px) {
    .sidebar-wrapper {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}