:root {
    --primary-color: #6e37b6;
    --primary-dark: #5a2e97;
    --accent-color: #ff73df;
    --dark-bg: #16122c;
    --dark-card: #211838;
    --dark-border: #362a50;
    --text-light: #f8f9fa;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* Modern oyun header stili */
.game-header {
    position: relative;
    background: none;
    margin-bottom: 0px;
    padding: 15px 0;
    border-bottom: 4px solid rgb(187 131 255);
}

.header-overlay {
    display: none;
}

.navbar {
    position: relative;
    z-index: 1050;
    padding: 15px 0;
}

.navbar-brand .brand-logo {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-brand .site-logo {
    display: flex;
    align-items: center;
}

.navbar-brand .site-logo img {
    max-height: 35px;
    transition: transform 0.3s ease;
}

.navbar-brand .site-logo img:hover {
    transform: scale(1.05);
}

.navbar-brand .brand-logo i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.nav-link {
    padding: 10px 16px !important;
    margin: 0 3px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    background-color: rgba(110, 55, 182, 0.15);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.nav-icon {
    margin-right: 8px;
    font-size: 1rem;
    color: #ff82ef;
}

.dropdown-item {
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 3px;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.search-box {
    position: relative;
    margin-right: 15px;
}

.search-box input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(110, 55, 182, 0.2);
    border-radius: 50px;
    color: white;
    padding: 10px 15px;
    padding-right: 40px;
    width: 220px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.search-box input:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(110, 55, 182, 0.25);
    width: 260px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.google-signin-btn {
    background: white;
    border: none;
    border-radius: 50px;
    color: #5f6368;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.google-signin-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #202124;
}

.google-signin-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
    background: conic-gradient(from 90deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.user-dropdown .dropdown-toggle {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid rgba(110, 55, 182, 0.2);
    font-weight: 500;
}

.user-dropdown .dropdown-toggle:hover {
    background-color: rgba(110, 55, 182, 0.15);
    box-shadow: 0 4px 15px rgba(110, 55, 182, 0.15);
    transform: translateY(-2px);
}

.user-dropdown .dropdown-toggle img {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 8px rgba(110, 55, 182, 0.3);
}

.dark-theme .navbar {
    background-color: transparent;
}

.dark-theme .navbar-brand {
    color: var(--primary-color);
    font-weight: 600;
}

.dark-theme .nav-link {
    color: var(--text-light);
}

.dark-theme .nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu-dark {
    background-color: var(--dark-card);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(110, 55, 182, 0.25);
    padding: 12px;
    margin-top: 15px !important;
    border-radius: 16px;
    animation: fadeInUp 0.3s ease-out;
    z-index: 1050 !important;
    position: absolute;
}

/* Ana sayfa kart stili */
.game-card {
    background-color: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    width: 250px;
    max-width: none;
    margin: 0 auto;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.game-card .card-img-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
}

.game-card .card-img-top {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.game-card .badge-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.game-card .platform-badge {
    box-shadow: none;
}

.game-card .game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: none;
    color: white;
    font-weight: 600;
    padding: 10px;
    width: 100%;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.game-card .card-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 90;
}

.game-card .card-body {
    padding: 5px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Ana sayfa kart game-info stili - Sade ve modern görünüm */
.game-card .card-game-info {
    display: flex;
    flex-direction: column;
    position: relative;
    background: rgba(33, 24, 56, 0.4);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 0.5rem;
    border: none;
    box-shadow: none;
    transition: all 0.2s ease;
    overflow: hidden;
    min-height: 10px; /* Tüm kartlar için sabit bir minimum yükseklik */
    justify-content: space-between;
}

.game-card .card-game-info::before {
    display: none;
}

.game-card .card-game-info:hover {
    background: rgba(33, 24, 56, 0.6);
}

.game-card .card-game-info .info-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.game-card .card-game-info .year-badge,
.game-card .card-game-info .translator-name {
    color: #a9a9c8;
    font-size: 0.71rem;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    width: 100%;
    text-align: center;
}

.game-card .card-game-info .year-badge i {
    margin-right: 6px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #a9a9c8;
    text-align: center;
}

.game-card .card-game-info .translator-name {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
    min-height: 40px; /* Sabit bir minimum yükseklik sağlar */
    align-items: center;
}

.game-card .card-game-info .translator-name img.tr-flag-icon {
    margin-right: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
    object-fit: cover;
}

.game-card .card-game-info .year-badge i,
.game-card .card-game-info .translator-name img.tr-flag-icon {
    min-width: 18px;
    text-align: center;
    margin-right: 6px;
}

.game-card .card-game-info .year-badge strong,
.game-card .card-game-info .translator-name strong {
    display: inline-block;
    margin-right: 4px;
}

.game-card .card-game-info .btn-details {
    background: rgb(110 55 182);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
    text-decoration: none;
    position: relative;
}

.game-card .card-game-info .btn-details i {
    margin-right: 8px;
    font-size: 0.95rem;
}

.game-card .card-game-info .btn-details:hover {
    background: rgba(110, 55, 182, 0.3);
}

.game-card .translator-info {
    background-color: rgba(108, 92, 231, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 10px;
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-card .year-badge {
    color: var(--text-muted);
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
}

.game-card .btn-details {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    float: right;
    border-radius: 50px;
}

.platform-badge {
    color: rgb(0, 0, 0);
    font-size: 0.7rem;
    border-radius: 30px;
    padding: 4px 12px;
    box-shadow: none;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 5px;
    vertical-align: middle;
}

.platform-badge {
    background-color: #ffaf03;
}

.platform-badge::before {
    display: none;
}

.game-card:hover .platform-badge {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Eski badge stilleri kaldırıldı - Artık turkish-dub-badge-small ve turkish-sub-badge-small kullanılıyor */

/* Tüm rozet türleri için hover efekti */
.game-card:hover .platform-badge {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.game-card:hover .turkish-dub-badge,
.game-card:hover .turkish-sub-badge {
    transform: none;
    box-shadow: none;
}

.turkish-dub-badge i,
.turkish-sub-badge i {
    margin-right: 3px;
    font-size: 0.8rem;
}

/* Türkçe dublaj veya altyazı olan oyunlarda çevirmen kısmını gizle */
.game-card .badge-container .turkish-dub-badge ~ .translator-name,
.game-card .badge-container .turkish-sub-badge ~ .translator-name,
.turkish-dub-badge + .translator-name,
.turkish-sub-badge + .translator-name {
    display: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-light {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-outline-light:active {
    transform: none !important;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-outline-light:hover::after {
    left: 100%;
}

/* Detay sayfası stili */
.game-detail {
    background-color: var(--dark-card);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.game-detail::before {
    display: none;
}

.game-detail h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.game-cover {
    border-radius: 8px;
    overflow: hidden;
    max-width: 85%;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.game-cover:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.game-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.game-info {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.game-info p {
    margin-bottom: 0.4rem;
    align-items: baseline;
}

.game-info p:last-child {
    margin-bottom: 0;
}

.game-info strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    width: 100px;
    position: relative;
}

.game-info strong::after {
    content: ":";
}

.game-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
}

.patch-card {
    background-color: rgba(36, 42, 54, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: none;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid var(--accent-color);
}

.patch-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: rgba(36, 42, 54, 0.8);
    transform: translateY(-3px);
}

.patch-version {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.patch-version::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.patch-description {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.download-btn {
    background: linear-gradient(135deg, var(--accent-color), #ff4081);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 115, 223, 0.25);
}

.download-btn:hover {
    background: linear-gradient(135deg, #ff4081, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 115, 223, 0.4);
    color: white;
}

/* Modern Footer Stili */
.footer {
    background: linear-gradient(135deg, #17142a 0%, #221b3a 100%);
    color: #a9a9c8;
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 6rem;
    border-top: 1px solid rgba(99, 69, 154, 0.2);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.7;
}

.footer h5 {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer p {
    color: #a9a9c8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer a {
    color: #a9a9c8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer ul li {
    margin-bottom: 0.6rem;
}

.footer hr {
    border-color: rgba(99, 69, 154, 0.2);
    margin: 2rem 0;
}

.footer .text-center {
    margin-top: 1rem;
}

.footer .text-muted {
    color: #6c6c91 !important;
    font-size: 0.85rem;
}

.footer .fa-heart {
    color: #ff5e8f !important;
    filter: drop-shadow(0 0 2px rgba(255, 94, 143, 0.5));
}

/* Sosyal medya ikonları */
.footer .social-icon {
    background: rgba(110, 55, 182, 0.15);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s;
}

.footer .social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.footer .contact-item i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Admin paneli stili */
.admin-sidebar {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}

.admin-sidebar h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.admin-sidebar .nav-link {
    color: var(--text-muted);
    padding: 0.5rem 0;
    transition: all 0.2s;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
}

.admin-sidebar .nav-link i {
    width: 24px;
    text-align: center;
    margin-right: 0.5rem;
}

.admin-content {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 2rem;
}

.admin-content h2 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.table-dark {
    background-color: var(--dark-card);
    color: var(--text-light);
}

.table-dark th {
    background-color: #161e2c;
    border-bottom: 2px solid var(--dark-border);
}

.form-control, .form-select {
    background-color: #242a36;
    border-color: var(--dark-border);
    color: var(--text-light);
}

.form-control:focus, .form-select:focus {
    background-color: #2c3440;
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.25);
}

/* Ana sayfa hero bölümü ve stili */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(110, 55, 182, 0.3), rgba(20, 10, 40, 0.85)), url('../img/ps-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    margin-bottom: 2rem;
    color: white;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    opacity: 0.3;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(180, 110, 255, 0.1) 0%, rgba(110, 55, 182, 0) 50%);
    transform: rotate(30deg);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.hero-content h1 {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero-content h1 sup {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    /* Bu stili devre dışı bırakıyorum çünkü turkce-badge ile çakışıyor */
    /*
    color: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    */
}

.hero-content h1 span.turkce-badge {
    color: #000000 !important;
    background-color: #ffaf03 !important;
    padding: 2px 7px !important;
    border: none !important;
    border-radius: 5px !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    display: inline-block !important;
    margin: 0 -1px !important;
    font-weight: 700 !important;
    transform: rotate(-5deg) !important;
    top: -2px !important;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.2) !important;
    zoom: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.ps-icon {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.ps-icon-1 {
    top: 10%;
    left: 5%;
    font-size: 8rem;
    transform: rotate(-15deg);
}

.ps-icon-2 {
    bottom: 10%;
    right: 5%;
    font-size: 10rem;
    transform: rotate(15deg);
}

/* Arama kutusu stil */
.hero-search-form {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 600px;
    margin: 0 auto;
}

.search-form .form-control {
    border-radius: 50px 0 0 50px;
    height: 60px;
    padding-left: 25px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    color: white;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(108, 92, 231, 0.5);
}

.search-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0 30px;
    height: 60px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sayfa geçişleri için mor efektler */
::selection {
    background-color: rgba(108, 92, 231, 0.3);
    color: white;
}

/* Oyun bilgi detayları için stil */
.game-info strong {
    color: #cea8ff;
}

/* Sayfadaki diğer butonlar için stil */
.nav-link:hover .nav-icon {
    transform: translateY(-2px);
    color: var(--accent-color);
}

/* Türkçe rozeti için stil */
.turkce-badge {
    color: #000000;
    background-color: #ffeb3b;
    padding: 2px 10px;
    border: none;
    border-radius: 5px;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    display: inline-block;
    margin: 0 5px;
    font-weight: 700;
}

/* Alert ve uyarı mesajları */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.alert:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.alert-info {
    background: linear-gradient(135deg, rgba(46, 41, 78, 0.9), rgba(39, 35, 67, 0.9));
    color: #e0e0ff;
}

.alert-info::before {
    background: linear-gradient(to bottom, var(--primary-color), #8742de);
}

.alert-info .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(110, 55, 182, 0.2);
}

.alert-info .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(46, 41, 78, 0.9), rgba(39, 35, 67, 0.9));
    color: #ffe0b2;
}

.alert-warning::before {
    background: linear-gradient(to bottom, #ffeb3b, #ffa726);
}

.alert-warning i {
    color: #ffeb3b;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(46, 41, 78, 0.9), rgba(39, 35, 67, 0.9));
    color: #ffcdd2;
}

.alert-danger::before {
    background: linear-gradient(to bottom, #f44336, #e53935);
}

.alert-danger i {
    color: #f44336;
}

.alert-success {
    background: linear-gradient(135deg, rgba(46, 41, 78, 0.9), rgba(39, 35, 67, 0.9));
    color: #c8e6c9;
}

.alert-success::before {
    background: linear-gradient(to bottom, #4caf50, #43a047);
}

.alert-success i {
    color: #4caf50;
}

.alert i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    vertical-align: middle;
}

.alert p {
    margin-bottom: 0.5rem;
}

.alert p:last-child {
    margin-bottom: 0;
}

.alert-dismissible .btn-close {
    color: white;
    opacity: 0.8;
    text-shadow: none;
    padding: 1.2rem;
}

/* Platform sayfası stilleri */
.platform-header {
    position: relative;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(46, 41, 78, 0.95), rgba(33, 29, 56, 0.95));
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
}

.platform-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/ps-controller.png') no-repeat right bottom;
    background-size: 150px;
    opacity: 0.05;
    z-index: 0;
}

.platform-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.platform-title {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.platform-icon {
    display: inline-block;
    margin-right: 10px;
    color: var(--accent-color);
}

.accent-text {
    color: var(--accent-color);
    font-weight: 800;
    position: relative;
}

.platform-subtitle {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.platform-decoration {
    position: relative;
    margin-top: 2rem;
}

.decoration-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    border-radius: 3px;
    opacity: 0.7;
}

/* Filtreler butonu için özel stil */
.btn-outline-light.btn-filters {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light.btn-filters i {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.btn-outline-light.btn-filters:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-outline-light.btn-filters:hover i {
    color: white;
}

.btn-outline-light.btn-filters:active {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light.btn-filters::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-outline-light.btn-filters:hover::after {
    left: 100%;
}

/* DMCA Sayfası Stilleri */
.dmca-container {
    background-color: var(--dark-card);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.dmca-container::before {
    display: none;
}

.dmca-container h1 {
    color: white;
    font-weight: 700;
    position: relative;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: 15px;
}

.dmca-section {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border: none;
}

.dmca-section h2 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 1.4rem;
}

.dmca-email {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline;
    border-bottom: 1px dashed var(--primary-color);
}

.dmca-email:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: none;
    box-shadow: none;
    border-bottom: 1px solid var(--accent-color);
}

.dmca-container hr {
    border-color: var(--dark-border);
    margin: 25px 0;
    opacity: 0.3;
}

/* Footer yasal uyarı stili */
.legal-disclaimer {
    font-size: 0.75rem;
    color: #6c6c91;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

/* Registered simge stili */
sup {
    color: #fff;
    font-size: 0.5em;
    top: -0.8em;
    position: relative;
    vertical-align: baseline;
    line-height: 0;
}

.hero-content h1 sup {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Özel stil - detay sayfası için */
.game-info .platform-badge {
    margin-left: 0;
    margin-bottom: 0;
}

/* Game.php sayfasındaki yeni badge stilleri */
.game-info .turkish-dub-badge-small,
.game-info .turkish-sub-badge-small {
    margin-left: 3px;
    display: inline-block;
    font-size: 11px;
    vertical-align: middle;
    text-transform: uppercase;
}

/* Oyun kartlarının grid düzenlemesi */
.row-cols-1 .col,
.row-cols-md-2 .col,
.row-cols-lg-5 .col {
    display: flex;
    justify-content: center;
}

/* Bootstrap'in 5 sütunlu yapısı için destek */
@media (min-width: 992px) {
    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Bootstrap utility sınıflarını özelleştirme */
.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 3rem !important;
}

/* Media sorguları */
@media (max-width: 1200px) {
    .game-card {
        width: 220px;
    }
    .game-card .card-img-container {
        height: auto;
    }
}

@media (max-width: 992px) {
    .game-card {
        width: 230px;
    }
    .game-card .card-img-container {
        height: auto;
    }
}

@media (max-width: 768px) {
    .game-card {
        width: 220px;
    }
    .game-card .card-img-container {
        height: auto;
    }
}

@media (max-width: 576px) {
    .game-card {
        width: 80% !important;
        max-width: 100% !important;
        margin: 0 auto 18px auto !important;
    }
    .game-card .card-img-container {
        height: auto;
    }
    .row.row-cols-1 > .col {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .row.g-4 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 1rem;
    }
    .hero-content h1 {
        font-size: 2.3rem !important;
        margin-bottom: 0.7em !important;
        line-height: 1.23 !important;
        word-break: break-word;
        max-width: 100%;
        padding: 0 2vw;
    }
    .hero-content p {
        font-size: 1.1rem !important;
        margin-bottom: 1.4rem !important;
        line-height: 1.38 !important;
        word-break: break-word;
        max-width: 100%;
        padding: 0 2vw;
    }
    .hero-content span, .hero-content .turkce-badge {
        font-size: 1.32rem !important;
        word-break: break-word;
    }
    .game-info {
        width: 112%;
        margin-left: 0;
        margin-right: 0;
        left: 50%;
        position: relative;
        transform: translateX(-50%);
        box-sizing: border-box;
    }
    .game-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 0.9rem !important;
        font-size: 0.89rem !important;
    }
    .game-info strong {
        min-width: unset;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2px;
        display: block;
        font-size: 1em;
        color: #cea8ff;
    }
    .game-info .platform-badge,
    .game-info .turkish-dub-badge-small,
    .game-info .turkish-sub-badge-small,
    .game-info .info-badge {
        margin-right: 0;
        margin-bottom: 7px;
        font-size: 0.95em !important;
        white-space: normal;
        display: block;
        text-align: left;
    }
    .game-info .platform-badge:last-child,
    .game-info .turkish-dub-badge-small:last-child,
    .game-info .turkish-sub-badge-small:last-child,
    .game-info .info-badge:last-child {
        margin-bottom: 0;
    }
    .game-info .tr-flag-icon {
        width: 16px;
        height: 16px;
        margin-right: 2px;
        vertical-align: middle;
    }
    .game-info .turkish-dub-badge-small,
    .game-info .turkish-sub-badge-small {
        margin-left: 0 !important;
    }
    .btn-report-link,
    .btn-report-link:focus,
    .btn-report-link:active {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: none;
        width: 56px;
        height: 56px;
        padding: 0 !important;
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        border-radius: 50%;
        font-size: 1.2rem;
        position: relative;
        right: -5vw;
    }
    .btn-report-link i.fas.fa-exclamation-triangle {
        background: linear-gradient(135deg, #6e37b6 60%, #ff73df 100%);
        color: #fff !important;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5em !important;
        box-shadow: 0 2px 8px rgba(110,55,182,0.18);
        margin: 0;
        border: none !important;
        outline: none !important;
    }
    .btn-report-link span {
        display: none !important;
    }
    .game-description.mb-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 112%;
        max-width: 100vw;
        box-sizing: border-box;
        position: relative;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
    }
    .game-detail h1 {
        text-align: left !important;
        padding-left: 0 !important;
        margin-left: -4vw !important;
        width: 112vw;
        max-width: unset;
        box-sizing: border-box;
        position: static;
        left: unset;
        transform: none;
        font-size: 1.25rem;
    }
    .game-cover {
        max-width: 98vw !important;
        width: 83vw !important;
        margin-left: -4vw !important;
        border-radius: 10px;
    }
    .search-box {
        display: block !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    .google-signin-btn {
        display: block !important;
        width: 100% !important;
        margin-bottom: 10px !important;
        box-sizing: border-box;
    }
    .navbar .d-flex.align-items-center {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .navbar-collapse {
        padding-top: 18px !important;
    }
    .psyama-special-badge-small {
        margin-top: 5px !important;
        zoom: 1.2;
    }
    .psyama-translation-badge-small {
        margin-top: 5px !important;
        zoom: 1.15;
    }
    .filter-btn-group {
        align-items: stretch !important;
    }
}

/* Filtreleme */
.filter-result-info {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    margin-top: 10px;
}

.filter-result-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.btn-clear-filter {
    color: var(--accent-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-clear-filter:hover {
    color: #fff;
    transform: translateX(3px);
}

.btn-clear-filter i {
    color: var(--accent-color);
    margin-right: 5px;
}

.filter-panel {
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--dark-border);
    animation: fadeInDown 0.3s ease-out;
}

.filter-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
}

.filter-select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-light);
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236e37b6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}

.filter-select:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(110, 55, 182, 0.2);
}

.filter-select option {
    background-color: var(--dark-card);
    color: var(--text-light);
    padding: 10px;
}

.btn-apply-filter {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.btn-apply-filter:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 115, 223, 0.2);
}

.btn-apply-filter i {
    margin-right: 8px;
}

/* Bölüm başlıkları için stil */
.section-heading {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-heading h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
}

.section-heading h2 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    margin-top: 5px;
}

/* tr-flag-icon için yeni CSS ekliyorum - bu hem oyun kartları hem de game.php sayfası için geçerli olacak */
img.tr-flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
    object-fit: cover;
    display: inline-block;
    margin-right: 3px;
    position: relative;
    top: -1px; /* Bayrak ikonunu dikey hizalama için hafifçe yukarı taşıyorum */
}

/* Çevirmen ve portlayan linkleri için stil */
.translator-link,
.porter-link {
    color: #ffaf03;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.translator-link:hover,
.porter-link:hover {
    color: #ffaf03;
    text-decoration: underline;
}

.translator-link::after,
.porter-link::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.7rem;
    position: relative;
    margin-left: 5px;
    opacity: 0.7;
    color: var(--accent-color);
    transition: all 0.2s ease;
}

.translator-link:hover::after,
.porter-link:hover::after {
    opacity: 1;
    transform: translateX(2px);
}

/* Küçük badge'ler için stiller */
.turkish-dub-badge-small, .turkish-sub-badge-small {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 15px;
    margin-top: 5px;
}

.turkish-dub-badge-small {
    background-color: rgba(255, 152, 0, 0.25);
    color: #ffc107;
    border: 1px solid rgba(255, 152, 0, 0.5);
    text-align: center;
    margin: 0 auto;
}

.turkish-sub-badge-small {
    background-color: rgba(33, 150, 243, 0.25);
    color: #42a5f5;
    border: 1px solid rgba(33, 150, 243, 0.5);
    text-align: center;
    margin: 0 auto;
}

/* Kartlar içinde badge'leri içeren div'in yatayda merkezlenmesi */
.translator-name {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

/* PSYAMA Özel Rozeti - Küçük boyut */
.psyama-special-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, #ff1979, #5d0051);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 15px;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.psyama-special-badge-small i {
    color: #ffdd00;
    font-size: 0.7rem;
}

/* PSYAMA Çeviri Rozeti - Küçük boyut */
.psyama-translation-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 15px;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.psyama-translation-badge-small i {
    color: #fff;
    font-size: 0.7rem;
}

/* Güncellendi Rozeti - Küçük boyut */
.updated-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, #40e0d0, #00ced1);
    color: #000000;
    font-weight: 600;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 15px;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.updated-badge-small i {
    color: #000;
    font-size: 0.7rem;
}

.psyama-translation-badge-premium {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.psyama-translation-badge-premium-icon {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.psyama-translation-badge-premium-text {
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.psyama-translation-desc-premium {
    color: #ffa726;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.psyama-translation-desc-premium .psyama-bold {
    color: #ff8c00;
    font-weight: 700;
}

.login-required-message {
    /* platform-badge ile tamamen aynı olması için özel stil kaldırıldı. Sadece platform-badge kullanılacak. */
}

.info-badge {
    background: #c7aaff;
    color: #2d1a3a;
    font-size: 0.7rem;
    border-radius: 30px;
    padding: 4px 12px;
    box-shadow: none;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 5px;
    vertical-align: middle;
    opacity: 0.85;
}

.btn-psyama {
    background: linear-gradient(90deg, #ff8c00, #ff6b35);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.3s;
    display: inline-block;
}
.btn-psyama:hover {
    background: linear-gradient(90deg, #ff6b35, #ff8c00);
    color: #fff;
    transform: translateY(-2px);
}

.filter-btn-group {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  gap: 0.5rem;
}

.filter-btn-group .btn {
  min-width: 120px;
  font-size: 0.95rem;
  padding-left: 0.7em;
  padding-right: 0.7em;
  white-space: nowrap;
}

@media (max-width: 400px) {
  .filter-btn-group .btn {
    font-size: 0.85rem;
    padding-left: 0.4em;
    padding-right: 0.4em;
  }
}

.version-badge {
    display: inline-block;
    background: #ea1674;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 1px 5px;
    margin-top: 4px;
    margin-bottom: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.version-badge i {
    margin-right: 4px;
}

.version-label {
    font-size: 12px;
    color: #a9a9c8;
    font-weight: 400;
    margin-right: 3px;
    vertical-align: middle;
}

.info-row, .version-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-outline-light,
.btn-outline-light:active,
.btn-outline-light:focus,
.btn-outline-light.btn-filters,
.btn-outline-light.btn-filters:active,
.btn-outline-light.btn-filters:focus,
.btn-filters,
.btn-filters:active,
.btn-filters:focus {
    transform: none !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.15) !important;
    transition: none !important;
}

.btn-psyama,
.btn-psyama:active,
.btn-psyama:focus,
.btn.btn-psyama,
.btn.btn-psyama:active,
.btn.btn-psyama:focus {
    transform: none !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.15) !important;
    transition: none !important;
}
