/*
 * TR FiveM - Gelişmiş Sunucu Listesi
 * Turuncu ve Koyu Gri Tema - 2025
 */

:root {
    /* Ana Renkler */
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --dark-gray: #1e1e1e;
    --medium-gray: #252525;
    --light-gray: #333333;
    --orange: #FF6A00;
    --bright-orange: #FF7D33;
    --dark-orange: #E65C00;
    --white: #FFFFFF;
    --light-white: #F5F5F5;
    --text-muted: #999999; /* light-gray yerine */
    --gradient-bg: linear-gradient(135deg, #1e1e1e, #121212);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
    --card-gradient: linear-gradient(145deg, #252525, #1e1e1e);
    --orange-gradient: linear-gradient(45deg, var(--orange), var(--bright-orange));
    --glass-effect: rgba(17, 17, 17, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 15% 50%, rgba(255, 106, 0, 0.06) 0%, transparent 50%),
                     radial-gradient(circle at 85% 30%, rgba(255, 106, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    margin-bottom: 20px;
    color: var(--light-white);
    font-size: 16px;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.line {
    height: 4px;
    width: 80px;
    background: var(--orange);
    margin-bottom: 25px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
    width: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: line-shine 3s infinite;
}

@keyframes line-shine {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}

.line.center {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn-primary {
    background: var(--orange-gradient);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
}

.btn-secondary {
    background: var(--medium-gray);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-5px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
}

.btn-outline:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-5px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: attr(data-text);
    position: absolute;
    top: -10px;
    left: -10px;
    color: rgba(255, 106, 0, 0.05);
    font-size: 70px;
    font-weight: 900;
    z-index: -1;
    white-space: nowrap;
}

.section-description {
    font-size: 18px;
    max-width: 650px;
    margin: 20px auto 40px;
    color: var(--light-white);
}

/* Navbar */
.navbar {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 22px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    position: relative;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-brand span {
    color: var(--orange);
    position: relative;
}

.navbar-brand span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--orange);
}

.navbar-nav {
    display: flex;
}

.navbar-nav .nav-item {
    margin-right: 35px;
}

.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.nav-link {
    font-weight: 700;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--orange);
}

.navbar-actions {
    display: flex;
    gap: 15px;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    min-height: 600px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--darker-bg);
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 106, 0, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
    z-index: 0;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.3));
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1.1);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-slide-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.hero-slide-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-slide-title span {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-slide-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: var(--orange);
    border-radius: 3px;
}

.hero-slide-description {
    font-size: 18px;
    color: var(--light-white);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.7s;
    line-height: 1.8;
}

.hero-slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.9s;
    margin-bottom: 30px;
}

.swiper-slide-active .hero-slide-subtitle,
.swiper-slide-active .hero-slide-title,
.swiper-slide-active .hero-slide-description,
.swiper-slide-active .hero-slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--orange);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background-color: white;
    opacity: 0.7;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--orange);
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(to right, rgba(14, 14, 14, 0.9), rgba(30, 30, 30, 0.9));
    padding: 25px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 0 20px;
    flex: 1;
    min-width: 150px;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 30px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--light-white);
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--card-gradient);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    height: 250px;
    z-index: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.category-icon {
    width: 60px;
    height: 60px;
    background-color: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: translateY(-10px);
}

.category-icon i {
    font-size: 24px;
    color: var(--white);
}

.category-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    transition: var(--transition);
}

.category-count {
    font-size: 14px;
    color: var(--light-white);
}

/* Server Cards */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.server-card {
    background: var(--card-gradient);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 106, 0, 0.3);
}

.server-banner {
    height: 150px;
    position: relative;
    overflow: hidden;
}

.server-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.server-card:hover .server-banner img {
    transform: scale(1.05);
}

.server-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--orange);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.featured-badge i {
    margin-right: 5px;
    font-size: 14px;
}

.server-content {
    padding: 20px;
}

.server-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.server-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 106, 0, 0.3);
    flex-shrink: 0;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.server-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-title {
    flex: 1;
}

.server-title h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.server-title p {
    font-size: 14px;
    color: var(--light-white);
    margin-bottom: 0;
}

.server-description {
    font-size: 14px;
    color: var(--light-white);
    margin-bottom: 20px;
    line-height: 1.6;
    height: 65px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.server-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.server-tag {
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 12px;
    color: var(--light-white);
    transition: var(--transition);
}

.server-tag:hover {
    background-color: var(--orange);
    color: var(--white);
}

.server-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.server-stats {
    display: flex;
    gap: 15px;
}

.server-stat {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--light-white);
}

.server-stat i {
    color: var(--orange);
    margin-right: 5px;
}

.server-online {
    padding: 4px 12px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 30px;
    font-size: 13px;
    color: #2ecc71;
    display: flex;
    align-items: center;
}

.server-online i {
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.server-online.offline {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.server-online.offline i {
    animation: none;
}

/* Tabs */
.tabs-container {
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.tab-button {
    padding: 10px 25px;
    border: none;
    background-color: var(--medium-gray);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--orange), transparent);
    transition: var(--transition);
    opacity: 0;
}

.tab-button:hover::before,
.tab-button.active::before {
    top: 0;
    opacity: 0.1;
}

.tab-button.active {
    background-color: var(--orange);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-all-btn {
    text-align: center;
    margin-top: 50px;
}

/* Auth Pages Specific Styles */
.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.auth-card {
    background-color: var(--dark-gray); /* dark-card yerine */
    border-radius: 8px;
    border: 1px solid var(--light-gray); /* #222 yerine */
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.auth-header {
    background-color: rgba(0,0,0,0.2);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray); /* #222 yerine */
}

.auth-header-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--light-text);
    margin: 0;
}

.auth-body {
    padding: 30px;
}

.auth-footer {
    padding: 20px;
    text-align: center;
    background-color: rgba(0,0,0,0.1);
    border-top: 1px solid var(--light-gray); /* #222 yerine */
}

.auth-link {
    color: var(--orange); /* primary-color yerine */
    text-decoration: none;
    transition: color 0.2s;
}

.auth-link:hover {
    color: var(--bright-orange); /* primary-hover yerine */
    text-decoration: underline;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--light-text);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray); /* #333 yerine */
    border-radius: 5px;
    background-color: rgba(0,0,0,0.2);
    color: var(--light-text);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
    background-color: rgba(0,0,0,0.3);
}

.form-text {
    font-size: 12px;
    color: var(--text-muted); /* #888 yerine */
    margin-top: 4px;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Checkbox stilini basitleştirme */
.form-check .form-check-input {
    /* display, opacity, visibility, position, width, height, appearance kaldırıldı */
    margin-right: 0.5em; /* 8px yerine em kullanıldı */
    margin-top: 0.2em; /* Dikey hizalama için ayarlandı */
    vertical-align: top;
    background-color: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 0.25em;
    cursor: pointer;
    /* Tarayıcı varsayılan görünümünü kullanmasına izin ver */
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    /* Boyutları ve görünürlüğü zorla */
    width: 1em !important;
    height: 1em !important;
    opacity: 1 !important;
    position: static !important;
    /* float: left kaldırıldı, .form-check zaten flex kullanıyor */
}

.form-check .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
    /* Varsayılan checkmark'ı kullan */
}

/* Checkmark ekleme yorum satırı olarak bırakıldı */
/* .form-check .form-check-input:checked::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.4em;
    height: 0.8em;
    border: solid white;
    border-width: 0 0.2em 0.2em 0;
    transform: translate(-50%, -60%) rotate(45deg);
} */

.form-check-label {
    color: var(--light-text);
    cursor: pointer;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #e55;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.2);
    color: #2d9;
}

/* Benefits Card */
.benefits-card {
    background-color: var(--dark-gray); /* card-color yerine */
    border-radius: 8px;
    border: 1px solid var(--light-gray); /* #222 yerine */
    padding: 20px;
    margin-top: 20px;
    max-width: 450px;
}

.benefits-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--light-gray); /* #222 yerine */
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--orange);
    margin-right: 10px;
    font-size: 14px;
}

.benefits-text {
    color: var(--text-muted); /* light-gray yerine */
    font-size: 13px;
    margin-top: 10px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 30px 0;
    border-top: 1px solid var(--light-gray); /* #222 yerine */
    background-color: var(--dark-bg); /* background-color yerine */
    margin-top: auto;
}

.copyright {
    color: var(--text-muted); /* light-gray yerine */
    text-align: center;
    font-size: 14px;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    .servers-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-slide-title {
        font-size: 40px;
    }
    .section-title {
        font-size: 30px;
    }
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero-slide-title {
        font-size: 32px;
    }
    .hero-slide-description {
        font-size: 16px;
    }
    section {
        padding: 70px 0;
    }
    .stats-container {
        flex-wrap: wrap;
    }
    .stat-box {
        flex: 1 0 50%;
        margin-bottom: 20px;
    }
    .stat-box:nth-child(2)::after {
        display: none;
    }
    .servers-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    .tabs-nav {
        flex-wrap: wrap;
    }
     .auth-card, .benefits-card {
        max-width: 100%;
        margin: 0 15px;
    }

    .auth-body {
        padding: 20px;
    }

    .auth-container {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .hero-slide-title {
        font-size: 28px;
    }
    .hero-slide-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .hero-slide-buttons .btn {
        width: 100%;
    }
    .server-banner {
        height: 120px;
    }
    .stat-box {
        flex: 1 0 100%;
    }
    .stat-box::after {
        display: none;
    }
}

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.

<environment_details>
# VSCode Visible Files
assets/css/style.css

# VSCode Open Tabs
fixed_tr_fivem.sql
servers.php
packages.php
logout.php
create_admin.php
support.php
support-detail.php
admin/tickets.php
tickets_tables.sql
install_tickets.php
contact.php
profile.php
credits_tables.sql
install_credits.php
credits.php
buy-package.php
update_packages_table.sql
update_packages.php
packages_table.sql
install_packages.php
admin/packages.php
fix_packages_table.php
purchase.php
admin/slider.php
social_share.php
slider_ads_table.sql
install_slider.php
edit-server.php
admin/payments.php
admin/add-user.php
update_slider_table.php
admin/settings.php
settings_table.sql
install_settings.php
admin/edit-user-credits.php
fix_uploads.php
my-servers.php
admin/view-server.php
server.php
assets/js/performance.js
sw.js
offline.html
includes/footer.php
manifest.json
assets/css/dark-theme.css
reset_database.sql
assets/css/admin.css
eski/index.html
includes/config.php
.htaccess
generate_hash.php
assets/css/admin-modern.css
admin/index.php
admin/servers.php
admin/users.php
includes/navbar.php
includes/functions.php
add-server.php
includes/header.php
assets/css/style.css
test.html
assets/js/main.js
README.md
tr_fivem.sql
db_reset.php
index.php
login.php
register.php
admin/process.php
api/admin-reviews.php
api/submit-review.php
api/log-click.php
api/update-server-status.php

# Current Time
4/27/2025, 5:59:21 PM (Europe/Istanbul, UTC+3:00)

# Context Window Usage
908,378 / 1,048.576K tokens used (87%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.



New problems detected after saving the file:
assets/css/style.css
- [css Error] Line 1205: at-rule or selector expected
- [css Error] Line 1207: { expected<environment_details>
# VSCode Visible Files
assets/css/style.css

# VSCode Open Tabs
fixed_tr_fivem.sql
servers.php
packages.php
logout.php
create_admin.php
support.php
support-detail.php
admin/tickets.php
tickets_tables.sql
install_tickets.php
contact.php
profile.php
credits_tables.sql
install_credits.php
credits.php
buy-package.php
update_packages_table.sql
update_packages.php
packages_table.sql
install_packages.php
admin/packages.php
fix_packages_table.php
purchase.php
admin/slider.php
social_share.php
slider_ads_table.sql
install_slider.php
edit-server.php
admin/payments.php
admin/add-user.php
update_slider_table.php
admin/settings.php
settings_table.sql
install_settings.php
admin/edit-user-credits.php
fix_uploads.php
my-servers.php
admin/view-server.php
server.php
assets/js/performance.js
sw.js
offline.html
includes/footer.php
manifest.json
assets/css/dark-theme.css
reset_database.sql
assets/css/admin.css
eski/index.html
includes/config.php
.htaccess
generate_hash.php
assets/css/admin-modern.css
admin/index.php
admin/servers.php
admin/users.php
includes/navbar.php
includes/functions.php
add-server.php
includes/header.php
assets/css/style.css
test.html
assets/js/main.js
README.md
tr_fivem.sql
db_reset.php
index.php
login.php
register.php
admin/process.php
api/admin-reviews.php
api/submit-review.php
api/log-click.php
api/update-server-status.php

# Current Time
4/27/2025, 6:01:14 PM (Europe/Istanbul, UTC+3:00)

# Context Window Usage
931,473 / 1,048.576K tokens used (89%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.



New problems detected after saving the file:
assets/css/style.css
- [css Error] Line 1206: at-rule or selector expected
- [css Error] Line 1208: { expected<environment_details>
# VSCode Visible Files
assets/css/style.css

# VSCode Open Tabs
fixed_tr_fivem.sql
servers.php
packages.php
logout.php
create_admin.php
support.php
support-detail.php
admin/tickets.php
tickets_tables.sql
install_tickets.php
contact.php
profile.php
credits_tables.sql
install_credits.php
credits.php
buy-package.php
update_packages_table.sql
update_packages.php
packages_table.sql
install_packages.php
admin/packages.php
fix_packages_table.php
purchase.php
admin/slider.php
social_share.php
slider_ads_table.sql
install_slider.php
edit-server.php
admin/payments.php
admin/add-user.php
update_slider_table.php
admin/settings.php
settings_table.sql
install_settings.php
admin/edit-user-credits.php
fix_uploads.php
my-servers.php
admin/view-server.php
server.php
assets/js/performance.js
sw.js
offline.html
includes/footer.php
manifest.json
assets/css/dark-theme.css
reset_database.sql
assets/css/admin.css
eski/index.html
includes/config.php
.htaccess
generate_hash.php
assets/css/admin-modern.css
admin/index.php
admin/servers.php
admin/users.php
includes/navbar.php
includes/functions.php
add-server.php
includes/header.php
assets/css/style.css
test.html
assets/js/main.js
README.md
tr_fivem.sql
db_reset.php
index.php
login.php
register.php
admin/process.php
api/admin-reviews.php
api/submit-review.php
api/log-click.php
api/update-server-status.php

# Current Time
4/27/2025, 6:07:49 PM (Europe/Istanbul, UTC+3:00)

# Context Window Usage
967,857 / 1,048.576K tokens used (92%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.



New problems detected after saving the file:
assets/css/style.css
- [css Error] Line 1207: at-rule or selector expected
- [css Error] Line 1209: { expectedTool [replace_in_file] was not executed because a tool has already been used in this message. Only one tool may be used per message. You must assess the first tool's result before proceeding to use the next tool.Tool [replace_in_file] was not executed because a tool has already been used in this message. Only one tool may be used per message. You must assess the first tool's result before proceeding to use the next tool.<environment_details>
# VSCode Visible Files
assets/css/style.css

# VSCode Open Tabs
fixed_tr_fivem.sql
servers.php
packages.php
logout.php
create_admin.php
support.php
support-detail.php
admin/tickets.php
tickets_tables.sql
install_tickets.php
contact.php
profile.php
credits_tables.sql
install_credits.php
credits.php
buy-package.php
update_packages_table.sql
update_packages.php
packages_table.sql
install_packages.php
admin/packages.php
fix_packages_table.php
purchase.php
admin/slider.php
social_share.php
slider_ads_table.sql
install_slider.php
edit-server.php
admin/payments.php
admin/add-user.php
update_slider_table.php
admin/settings.php
settings_table.sql
install_settings.php
admin/edit-user-credits.php
fix_uploads.php
my-servers.php
admin/view-server.php
server.php
assets/js/performance.js
sw.js
offline.html
includes/footer.php
manifest.json
assets/css/dark-theme.css
reset_database.sql
assets/css/admin.css
eski/index.html
includes/config.php
.htaccess
generate_hash.php
assets/css/admin-modern.css
admin/index.php
admin/servers.php
admin/users.php
includes/navbar.php
includes/functions.php
add-server.php
includes/header.php
assets/css/style.css
test.html
assets/js/main.js
README.md
tr_fivem.sql
db_reset.php
index.php
login.php
register.php
admin/process.php
api/admin-reviews.php
api/submit-review.php
api/log-click.php
api/update-server-status.php

# Current Time
4/27/2025, 6:10:01 PM (Europe/Istanbul, UTC+3:00)

# Context Window Usage
980,558 / 1,048.576K tokens used (94%)

# Current Mode
ACT MODE
</environment_details>
