/* Metin2 Server Tanıtım Portalı - Ana CSS Dosyası */

/* Genel Ayarlar ve Reset */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Roboto:wght@300;400;500;700&family=MedievalSharp&display=swap');

:root {
    --primary-color: #ffcc00;
    --primary-dark: #e6b800;
    --primary-light: #ffd633;
    --secondary-color: #c00000;
    --third-color: #8B0000;
    --dark-color: #1a1a1a;
    --darker-color: #0a0a0a;
    --light-color: #f5f5f5;
    --gray-color: #333333;
    --light-gray: #666666;
    --online-color: #4CAF50;
    --offline-color: #F44336;
    --soon-color: #2196F3;
    --vip-color: #9c27b0;
    --accent-color: #621700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: var(--light-color);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
}

.btn {
    display: inline-block;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    color: #333333;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--primary-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Cinzel', serif;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.3) 0%, rgba(255, 204, 0, 0) 60%);
    transform: rotate(35deg);
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0.3;
    z-index: 1;
}

.btn:hover {
    background: linear-gradient(to bottom, var(--primary-dark), #d9a400);
    color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn:hover::after {
    transform: rotate(25deg) scale(1.2);
    opacity: 0.5;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-discord {
    background: linear-gradient(to bottom, #7289da, #5c6bc0);
    border: 1px solid #5c6bc0;
}

.btn-discord:hover {
    background: linear-gradient(to bottom, #5c6bc0, #3f51b5);
}

.section-title {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 204, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    word-spacing: 5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color) 20%, var(--primary-color) 80%, transparent);
    border-radius: 2px;
}

.section-title::before {
    content: '⚔️';
    font-size: 24px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--accent-color);
}

/* Header ve Navigasyon */
header {
    background-color: #000000;
    padding: 15px 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 204, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo a:hover h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 204, 0, 0.4);
}

.logo-img {
    height: 60px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3), 0 0 20px rgba(255, 204, 0, 0.1);
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4), 0 0 30px rgba(255, 204, 0, 0.2);
}

.logo h1 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-size: 24px;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 204, 0, 0.2);
    font-weight: 900;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(to bottom, #3a3a3a, #333333);
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #4a4a4a;
}

nav ul li {
    margin: 0 5px;
    position: relative;
}

nav ul li a {
    padding: 10px 15px;
    display: block;
    color: var(--light-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Cinzel', serif;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.3), 0 0 10px rgba(255, 204, 0, 0.1);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

nav ul li a.active {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
    font-weight: 700;
}

/* Hero Section */
.hero {
    height: 500px;
    background-color: #2c2c2c;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    border: 1px solid #3c3c3c;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('m2hanesi.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 204, 0, 0.3);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Öne Çıkan Server Section */
.highlight-section {
    margin-bottom: 60px;
}

.highlight-card {
    background: #2c2c2c;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #3c3c3c;
    position: relative;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #b38f00, var(--primary-color), #b38f00);
    z-index: 5;
}

.server-banner {
    position: relative;
}

.server-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.server-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Cinzel', serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.server-status.online {
    background: linear-gradient(to bottom, var(--online-color), #3d8b40);
    color: var(--light-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.server-status.offline {
    background: linear-gradient(to bottom, var(--offline-color), #c62828);
    color: var(--light-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.server-status.coming-soon {
    background: linear-gradient(to bottom, var(--soon-color), #1976d2);
    color: var(--light-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.server-status.vip {
    background: linear-gradient(to bottom, var(--vip-color), #7b1fa2);
    color: var(--light-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.server-info {
    padding: 30px;
    background: linear-gradient(to bottom, #333333, #2c2c2c);
}

.server-info h3 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.server-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.server-details span {
    background-color: #3c3c3c;
    padding: 8px 12px;
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    border: 1px solid #494949;
}

.server-details span i {
    margin-right: 8px;
    color: var(--primary-color);
}

.server-description {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #d9d9d9;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

/* Reklam Alanları */
.reklam-section {
    margin-bottom: 60px;
}

.reklam-banner {
    width: 100%;
    height: 90px;
    background-color: #2c2c2c;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #4a4a4a;
}

.reklam-placeholder {
    width: 100%;
    height: auto;
    background-color: rgba(51, 51, 51, 0.8);
    border-radius: 5px;
    border: 1px dashed rgba(255, 204, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    overflow: hidden;
}

.reklam-placeholder span {
    display: none;
}

.reklam-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.reklam-box {
    flex: 1;
    height: 250px;
    background-color: #2c2c2c;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px dashed #4a4a4a;
}

.reklam-box p {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.reklam-box span {
    font-size: 14px;
    color: #b3b3b3;
}

/* Server List */
.server-list {
    margin-bottom: 60px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.server-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.server-card {
    background-color: #2c2c2c;
    border-radius: 5px;
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3c3c3c;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #b38f00, var(--primary-color), #b38f00);
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 204, 0, 0.05);
    border-color: #4a4a4a;
}

.server-card h3 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-size: 18px;
    margin: 15px 0 10px;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.server-meta {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.server-meta span {
    font-size: 13px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    color: #d9d9d9;
}

.server-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.server-card p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #c9c9c9;
    line-height: 1.5;
}

.view-more {
    text-align: center;
    margin-top: 20px;
}

/* Upcoming Servers Section */
.upcoming-section {
    margin-bottom: 60px;
}

.countdown-servers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.countdown-server {
    background-color: #2c2c2c;
    border-radius: 5px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #3c3c3c;
}

.countdown-server h3 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span {
    background-color: #3c3c3c;
    color: var(--primary-color);
    border-radius: 3px;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    width: 60px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
}

.countdown-item .label {
    font-size: 12px;
    background: none;
    padding: 0;
    width: auto;
    color: #d9d9d9;
    box-shadow: none;
    text-transform: uppercase;
}

.server-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.server-features span {
    background-color: #3c3c3c;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.server-features span i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* About Section */
.about-section {
    margin-bottom: 60px;
}

.about-content {
    background-color: #2c2c2c;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #3c3c3c;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #d9d9d9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: #252525;
    border-top: 2px solid var(--primary-color);
    padding-top: 50px;
    margin-top: 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(255, 204, 0, 0.3) 20%, 
        rgba(255, 204, 0, 0.5) 50%, 
        rgba(255, 204, 0, 0.3) 80%, 
        transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.footer-logo a:hover h3 {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 204, 0, 0.3);
}

.logo-small {
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-small {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

.footer-logo h3 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-size: 18px;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-links h4,
.footer-social h4 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li::before {
    content: '➤';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 10px;
    opacity: 0.8;
}

.footer-links ul li a {
    color: #d9d9d9;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.2);
    padding-left: 3px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #3c3c3c;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px) rotate(5deg);
    border-color: var(--primary-light);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 204, 0, 0.2);
}

.social-icons a i {
    font-size: 18px;
    color: #d9d9d9;
}

.social-icons a:hover i {
    color: var(--dark-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #3c3c3c;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(255, 204, 0, 0.2) 20%, 
        rgba(255, 204, 0, 0.3) 50%, 
        rgba(255, 204, 0, 0.2) 80%, 
        transparent);
}

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #2c2c2c;
    color: var(--light-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid #3c3c3c;
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: bold;
}

.pagination a:hover:not(.active, .disabled) {
    background-color: #3c3c3c;
    border-color: #4a4a4a;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .countdown-servers {
        grid-template-columns: 1fr;
    }
    
    .countdown-item span {
        font-size: 20px;
        width: 50px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .server-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo, 
    .footer-links, 
    .footer-social {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Sayfa Başlıkları */
.page-header {
    text-align: center;
    margin: 30px 0 40px;
}

.page-description {
    max-width: 800px;
    margin: 0 auto;
    color: #d9d9d9;
    font-size: 16px;
    text-align: center;
}

/* Server Filtreleme */
.server-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    background-color: rgba(26, 26, 26, 0.9);
    padding: 15px 20px;
    border-radius: 10px;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.filter-item {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.filter-item label {
    margin-right: 10px;
    font-weight: 500;
    color: var(--primary-color);
}

.custom-select {
    position: relative;
    min-width: 200px;
}

.select-btn {
    background-color: var(--dark-color);
    color: var(--light-color);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: left;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select-btn:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
}

.select-btn:hover, .select-btn:focus {
    border-color: var(--primary-color);
    background-color: #1a1a1a;
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c2c2c;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    z-index: 1000;
    border-radius: 5px;
    border: 1px solid #3c3c3c;
    margin-top: 5px;
}

.dropdown-item {
    padding: 10px 15px;
    color: #d9d9d9;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #3c3c3c;
    color: var(--primary-color);
}

/* Countdown Server Items */
.countdown-servers-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.countdown-server-item {
    display: flex;
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.2);
    padding: 0;
    position: relative;
}

.countdown-server-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.countdown-server-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.server-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(10, 10, 10, 0.5);
    width: 180px;
}

.server-logo {
    margin-bottom: 15px;
}

.server-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.server-left .countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.server-left .countdown-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.server-left .countdown-item span {
    font-size: 14px;
    padding: 3px 5px;
    min-width: 30px;
    text-align: center;
}

.server-middle {
    flex: 1;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.server-middle h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.server-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.server-tag {
    background-color: rgba(192, 0, 0, 0.2);
    color: #ff9999;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(192, 0, 0, 0.5);
}

.server-description {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #d9d9d9;
}

.server-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.server-features span {
    background-color: rgba(51, 51, 51, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.server-features span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.server-right {
    width: 200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(10, 10, 10, 0.3);
}

.open-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.open-date i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.open-date span {
    font-size: 16px;
    font-weight: bold;
    color: var(--light-color);
}

.open-date .time {
    color: var(--primary-color);
    font-size: 14px;
}

.server-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.server-links a {
    width: 100%;
    text-align: center;
}

/* CTA Section */
.cta-section {
    margin-bottom: 60px;
}

.cta-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(51, 51, 51, 0.9));
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    color: #d9d9d9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    font-size: 16px;
    padding: 12px 25px;
}

.cta-content .btn i {
    margin-right: 8px;
}

/* Responsive Design for Server Items */
@media (max-width: 992px) {
    .countdown-server-item {
        flex-direction: column;
    }
    
    .server-left {
        width: 100%;
        flex-direction: row;
        gap: 20px;
    }
    
    .server-logo {
        margin-bottom: 0;
    }
    
    .server-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .open-date {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .server-filters {
        flex-direction: column;
        gap: 10px;
    }
    
    .server-left {
        flex-direction: column;
    }
    
    .server-logo {
        margin-bottom: 15px;
    }
    
    .server-right {
        flex-direction: column;
    }
    
    .open-date {
        margin-bottom: 20px;
    }
}

/* VIP Servers Styles */
.vip-servers-section {
    margin-bottom: 60px;
}

.vip-server-card {
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(156, 39, 176, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.vip-server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(51, 51, 51, 0.9));
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
}

.vip-badge {
    display: flex;
    align-items: center;
    background-color: var(--vip-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.vip-badge i {
    margin-right: 5px;
    font-size: 12px;
}

.vip-server-content {
    display: flex;
    padding: 25px;
    border-bottom: 1px solid rgba(156, 39, 176, 0.1);
}

.vip-server-logo {
    margin-right: 25px;
    flex-shrink: 0;
}

.vip-server-logo img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    border: 2px solid var(--vip-color);
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vip-server-info {
    flex: 1;
}

.vip-server-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.vip-server-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.vip-server-tags .server-tag.premium {
    background-color: rgba(156, 39, 176, 0.2);
    color: #e1bee7;
    border: 1px solid rgba(156, 39, 176, 0.5);
}

.vip-server-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.vip-server-meta span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #d9d9d9;
}

.vip-server-meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.vip-server-description {
    font-size: 15px;
    line-height: 1.6;
    color: #d9d9d9;
}

.vip-server-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: rgba(10, 10, 10, 0.5);
}

.server-rating {
    display: flex;
    align-items: center;
}

.rating-stars {
    display: flex;
    margin-right: 10px;
}

.rating-stars i {
    color: #ffc107;
    margin-right: 2px;
}

.server-rating span {
    font-size: 14px;
    color: #b3b3b3;
}

.vip-server-actions {
    display: flex;
    gap: 10px;
}

.btn-details {
    background: linear-gradient(to bottom, var(--vip-color), #7b1fa2);
    border: 1px solid #7b1fa2;
}

.btn-details:hover {
    background: linear-gradient(to bottom, #7b1fa2, #6a1b9a);
}

.btn-details i {
    margin-left: 5px;
    font-size: 12px;
}

/* VIP Features Section */
.vip-features-section {
    margin-bottom: 60px;
}

.vip-features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vip-feature {
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(156, 39, 176, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vip-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.vip-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vip-color), #7b1fa2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.vip-feature-icon i {
    font-size: 28px;
    color: white;
}

.vip-feature h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vip-feature p {
    font-size: 14px;
    line-height: 1.6;
    color: #d9d9d9;
}

.vip-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-vip {
    background: linear-gradient(to bottom, var(--vip-color), #7b1fa2);
    border: 1px solid #7b1fa2;
    padding: 12px 30px;
    font-size: 16px;
    letter-spacing: 1px;
}

.btn-vip:hover {
    background: linear-gradient(to bottom, #7b1fa2, #6a1b9a);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for VIP Server Cards */
@media (max-width: 768px) {
    .vip-server-content {
        flex-direction: column;
    }
    
    .vip-server-logo {
        margin-right: 0;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
    
    .vip-server-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .server-rating, 
    .vip-server-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Açılmış Serverler Sayfası Stilleri */
.active-servers-section {
    margin-bottom: 60px;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px 15px;
    border-radius: 5px 0 0 5px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    background-color: var(--dark-color);
    color: var(--light-color);
    font-size: 14px;
    min-width: 200px;
    outline: none;
}

.search-box button {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    color: var(--dark-color);
    border: 1px solid var(--primary-dark);
    border-left: none;
    padding: 8px 12px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: linear-gradient(to bottom, var(--primary-dark), var(--third-color));
}

.active-servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.active-server-card {
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.2);
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.active-server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.active-server-card .server-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 12px;
}

.active-server-card .server-logo {
    margin-bottom: 15px;
    margin-top: 15px;
}

.active-server-card .server-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.active-server-card:hover .server-logo img {
    transform: scale(1.05);
}

.active-server-card .server-details {
    width: 100%;
}

.active-server-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.active-server-card .server-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.server-stat-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #d9d9d9;
}

.server-stat-row span {
    display: flex;
    align-items: center;
}

.server-stat-row i {
    color: var(--primary-color);
    margin-right: 5px;
}

.server-rating-small {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.rating-stars-small {
    display: flex;
    margin-right: 5px;
}

.rating-stars-small i {
    color: #ffc107;
    font-size: 12px;
    margin-right: 2px;
}

.server-rating-small span {
    font-size: 12px;
    color: #b3b3b3;
}

.active-server-card .server-links {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.btn-xs {
    padding: 4px 8px;
    font-size: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(26, 26, 26, 0.9);
    color: var(--light-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: bold;
}

.pagination a:hover:not(.active, .disabled) {
    background-color: rgba(255, 204, 0, 0.2);
    border-color: var(--primary-color);
}

.pagination .page-prev,
.pagination .page-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design for Active Servers */
@media (max-width: 768px) {
    .server-filters {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        flex: 1;
    }
    
    .active-servers-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .active-servers-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* Reklam Sayfası Stilleri */
.subsection-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

/* Paketler */
.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package {
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.2);
    position: relative;
}

.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.package.featured {
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.package.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.package-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(51, 51, 51, 0.9));
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.package-header h4 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-price .price {
    font-size: 36px;
    font-weight: bold;
    color: var(--light-color);
}

.package-price .duration {
    font-size: 14px;
    color: #b3b3b3;
}

.package-content {
    padding: 25px;
    text-align: center;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: #d9d9d9;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    margin-right: 8px;
    font-size: 16px;
}

.package-features .fa-check {
    color: #4CAF50;
}

.package-features .fa-times {
    color: #F44336;
}

/* Banner Reklamlar */
.banner-packages {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.banner-item {
    display: flex;
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.banner-preview {
    width: 280px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 10, 10, 0.5);
}

.banner-placeholder {
    width: 100%;
    height: auto;
    background-color: rgba(51, 51, 51, 0.8);
    border-radius: 5px;
    border: 1px dashed rgba(255, 204, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    overflow: hidden;
}

.banner-placeholder p {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.banner-placeholder span {
    font-size: 12px;
    color: #b3b3b3;
}

.banner-info {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.banner-info p {
    color: #d9d9d9;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.banner-price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
}

.banner-price .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--light-color);
    margin-right: 5px;
}

.banner-price .duration {
    font-size: 14px;
    color: #b3b3b3;
}

/* Site İstatistikleri */
.stats-section {
    margin-bottom: 60px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #b38f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-icon i {
    font-size: 24px;
    color: var(--dark-color);
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-name {
    font-size: 14px;
    color: #d9d9d9;
}

/* İletişim Formu */
.contact-section {
    margin-bottom: 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: #2c2c2c;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #3c3c3c;
}

.contact-info {
    padding: 30px;
    background-color: #333333;
}

.contact-info p {
    color: #d9d9d9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    color: var(--light-color);
}

.contact-method i {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.contact-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #3c3c3c;
    border: 1px solid #4a4a4a;
    border-radius: 3px;
    color: var(--light-color);
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.required {
    color: #ff6b6b;
    margin-left: 3px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-reset {
    background: linear-gradient(to bottom, #666666, #444444);
    border: 1px solid #555555;
}

.btn-reset:hover {
    background: linear-gradient(to bottom, #555555, #333333);
}

.form-note {
    font-size: 13px;
    color: #999999;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Dikey Reklam Alanları */
.vertical-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    background-color: #2c2c2c;
    border-radius: 5px;
    border: 1px dashed #4a4a4a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

/* Logo VIP Etiket Stili */
.logo-vip-tag {
    position: absolute;
    top: -25px;
    left: -45px;
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
    padding: 6px 25px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    transform: rotate(-45deg);
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    display: block !important;
    pointer-events: none;
    width: 100px;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.left-ad {
    left: 10px;
}

.right-ad {
    right: 10px;
}

.vertical-ad .ad-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.vertical-ad .ad-image {
    width: 100%;
    height: auto;
    max-height: 590px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 3px;
}

.ad-image-medium {
    width: 300px;
    height: 250px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 3px;
}

.ad-image-large {
    width: 100%;
    height: 90px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 3px;
    padding: 0 10px;
    max-width: 100%;
}

.vertical-ad p {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 22px;
}

.vertical-ad span {
    font-size: 14px;
    color: #b3b3b3;
    display: block;
    margin-top: 20px;
}

.vertical-ad a {
    padding: 5px 10px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.vertical-ad a:hover {
    background-color: rgba(255, 204, 0, 0.3);
}

/* Responsive ayarlar - mobil cihazlarda dikey reklamları gizle */
@media (max-width: 1500px) {
    .vertical-ad {
        display: none;
    }
}

/* İletişim Bilgileri Bölümü */
.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-container {
    background-color: #2c2c2c;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #3c3c3c;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-card {
    background-color: #333333;
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #4a4a4a;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.contact-icon i {
    font-size: 28px;
    color: var(--dark-color);
}

.contact-card h4 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: #d9d9d9;
    margin-bottom: 20px;
}

.contact-card .btn {
    min-width: 150px;
}

.business-hours {
    background-color: #333333;
    border-radius: 5px;
    padding: 25px;
    border: 1px solid #4a4a4a;
}

.business-hours h4 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.business-hours ul {
    list-style: none;
    margin-bottom: 20px;
}

.business-hours li {
    padding: 10px 0;
    border-bottom: 1px dashed #4a4a4a;
    display: flex;
    justify-content: space-between;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours li span {
    font-weight: bold;
    color: #d9d9d9;
}

.response-time {
    text-align: center;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Tablo Stil Server List */
.server-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.server-row {
    display: grid;
    grid-template-columns: auto 80px 2fr 1fr auto;
    grid-template-areas: "status logo info stats actions";
    background-color: #2c2c2c;
    border-radius: 5px;
    overflow: visible;
    padding: 15px;
    border: 1px solid #3c3c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    column-gap: 20px;
    justify-content: stretch;
    width: 100%;
}

.server-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 204, 0, 0.05);
    border-color: var(--primary-color);
}

.server-row-status {
    grid-area: status;
}

.server-row-logo {
    grid-area: logo;
    position: relative;
    overflow: visible;
    padding-top: 10px;
    padding-left: 10px;
}

.server-row-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.server-row:hover .server-row-logo img {
    transform: scale(1.1) rotate(5deg);
}

.server-row-info {
    grid-area: info;
    padding-right: 15px;
}

.server-row-info h3 {
    font-family: 'MedievalSharp', 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.server-row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.server-row-tags .server-tag {
    background-color: #3c3c3c;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    display: inline-block;
    border: 1px solid #494949;
}

.server-row-info p {
    font-size: 14px;
    color: #d9d9d9;
    line-height: 1.4;
}

.server-row-stats {
    grid-area: stats;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server-row-stats span {
    display: flex;
    align-items: center;
    color: #d9d9d9;
    font-size: 14px;
}

.server-row-stats i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.server-row-actions {
    grid-area: actions;
    text-align: center;
    margin-left: auto;
}

.server-row-actions .btn {
    min-width: 100px;
    width: 100px;
}

/* Responsive düzen için medya sorguları */
@media (max-width: 992px) {
    .server-row {
        grid-template-columns: auto 80px 1fr auto;
        grid-template-areas:
            "status logo info actions"
            "status logo stats actions";
    }
    
    .server-row-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .server-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "status"
            "logo"
            "info"
            "stats"
            "actions";
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .server-row-logo {
        margin: 0 auto;
    }
    
    .server-row-tags {
        justify-content: center;
    }
    
    .server-row-stats {
        align-items: center;
    }
    
    .server-row-actions {
        margin-top: 10px;
    }
}

.banner-preview-img {
    max-width: 250px;
    height: auto;
}

/* Modern kutulu sunucu görünümü */
.countdown-server-item {
    background: #232323;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    margin-bottom: 32px;
    padding: 32px 24px;
    display: flex;
    align-items: stretch;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.countdown-server-item:hover {
    box-shadow: 0 8px 32px rgba(255,204,0,0.12), 0 2px 8px rgba(0,0,0,0.22);
    border-color: #fff200;
}
.countdown-server-item .server-left,
.countdown-server-item .server-middle,
.countdown-server-item .server-right {
    background: transparent;
    box-shadow: none;
    border: none;
}
.countdown-server-item .server-logo img {
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(255,204,0,0.15);
}
.countdown-server-item .server-middle {
    padding: 0 32px;
    flex: 1;
}
.countdown-server-item .server-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.countdown-server-item .server-links .btn {
    margin-bottom: 8px;
    width: 140px;
    text-align: center;
}
@media (max-width: 900px) {
    .countdown-server-item {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 10px;
    }
    .countdown-server-item .server-middle {
        padding: 16px 0;
    }
    .countdown-server-item .server-right {
        align-items: flex-start;
    }
}

/* Instagram Benzeri Hikaye Bölümü */
.story-container {
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(to bottom, #2a2a2a, #222222);
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    margin-bottom: 20px;
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.story-items {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding: 5px 10px;
    position: relative;
    justify-content: center;
}

.story-items::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-align: center;
    min-width: 70px;
    transition: transform 0.3s;
}

.story-item:hover {
    transform: scale(1.05);
}

.story-circle {
    width: 68px;
    height: 68px;
    position: relative;
    margin-bottom: 8px;
}

.story-circle img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.3s;
    stroke-dasharray: 201.1; /* 2πr: 2 * π * 32 */
    stroke-dashoffset: 201.1;
}

.story-title {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 204, 0, 0.8);
    color: #333;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: none; /* Butonları gizliyorum */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.story-nav-btn:hover {
    opacity: 1;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Hikaye Modal Stilleri */
.story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-modal.active {
    display: flex;
    opacity: 1;
}

.story-modal-content {
    width: 100%;
    max-width: 400px;
    height: 90vh;
    max-height: 700px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.story-modal.active .story-modal-content {
    transform: scale(1);
}

.story-modal-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.story-modal-user {
    display: flex;
    align-items: center;
}

.story-modal-user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.story-modal-user-info {
    display: flex;
    flex-direction: column;
}

.story-modal-username {
    font-weight: bold;
    color: #fff;
}

.story-modal-time {
    font-size: 12px;
    color: #ccc;
}

.story-modal-close {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.2s ease;
}

.story-modal-close:hover {
    color: var(--primary-color);
}

.story-modal-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.story-progress-bars {
    display: flex;
    width: 100%;
    gap: 5px;
}

.progress-bar {
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-grow: 1;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width linear;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.story-modal-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
    position: relative;
}

.story-modal-content-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.story-modal-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 2;
}

.story-modal-prev, .story-modal-next {
    flex: 1;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    position: relative;
}

.story-modal-prev::before, .story-modal-next::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.story-modal-prev::before {
    left: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%23ffffff' d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.story-modal-next::before {
    right: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%23ffffff' d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.story-modal-prev:hover::before, .story-modal-next:hover::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.story-seen .story-circle img {
    border-color: #666;
}

.story-seen .progress-ring-circle {
    stroke: #666;
}

@media (max-width: 768px) {
    .story-container {
        padding: 15px 0;
    }
    
    .story-items {
        gap: 10px;
    }
    
    .story-circle {
        width: 60px;
        height: 60px;
    }
    
    .story-circle img {
        width: 52px;
        height: 52px;
    }
    
    .story-modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
    }
    
    .story-modal-prev::before, .story-modal-next::before {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

.right-side {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Reklam Slider Stilleri */
.ad-slider-section {
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.ad-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    background-color: #1a1a1a;
}

.ad-slider {
    display: flex;
    position: relative;
    height: 350px;
    overflow: hidden;
}

.ad-slide {
    width: 100%;
    flex-shrink: 0;
    display: none;
    position: relative;
}

.ad-slide.active {
    display: block;
}

.ad-slide-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.ad-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.ad-slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.ad-slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.ad-slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.ad-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s, background-color 0.3s;
}

.ad-slider-nav:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.prev-ad {
    left: 10px;
}

.next-ad {
    right: 10px;
}

@media (max-width: 768px) {
    .ad-slider {
        height: 280px;
    }
    
    .ad-slide-image {
        height: 280px;
    }
    
    .ad-slider-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Reklam Banner Container */
.reklam-banner-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.reklam-banner-left,
.reklam-banner-right {
    flex: 1;
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    max-width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reklam-banner-left:hover,
.reklam-banner-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .reklam-banner-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .reklam-banner-left,
    .reklam-banner-right {
        max-width: 100%;
    }
}

/* Reklam Durumu Tablosu */
.ad-status-container {
    overflow-x: auto;
    margin: 20px 0;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.ad-status-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    color: #ddd;
}

.ad-status-table th,
.ad-status-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.ad-status-table th {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.ad-status-table tr:last-child td {
    border-bottom: none;
}

.ad-status-table tr:hover {
    background-color: rgba(255, 204, 0, 0.1);
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-badge.available {
    background-color: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.status-badge.occupied {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.btn-xs {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .ad-status-table {
        font-size: 14px;
    }
    
    .ad-status-table th,
    .ad-status-table td {
        padding: 8px 10px;
    }
    
    .ad-status-table th {
        font-size: 12px;
    }
    
    .status-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* Reklam Grid Stilleri */
.ad-grid-section {
    margin: 20px auto;
    max-width: 100%;
    padding: 0;
}

.ad-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.ad-grid-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    height: 93px;
    width: 100%;
    margin: 0;
}

.ad-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.ad-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ad-label {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    opacity: 0.7;
}

/* Yukarı Çıkma Butonu Stili */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,204,0,0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: pulse 2s infinite;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.back-to-top:hover::before {
    opacity: 1;
    animation: ripple 1.5s infinite;
}

.back-to-top i {
    font-size: 20px;
    animation: bounce 2s infinite;
    position: relative;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
}