/* style.css (düzeltilmiş tam içerik) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #fff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Arka plan için container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    z-index: -1;
    overflow: hidden;
}

.background-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

header {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom:2px solid #ffcc00;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 2.2rem;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    font-weight: bold;
}

.logo img {
    height: 80px;   /* istediğin boyuta göre ayarla */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-links a:hover {
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 50px;
}

.hero-content {
    max-width: 900px;
    padding: 10px;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1px;
    animation: glow 2s infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes glow {
    0% { text-shadow: 0 0 10px #ffcc00, 0 0 20px rgba(255, 204, 0, 0.5); }
    50% { text-shadow: 0 0 20px #ffcc00, 0 0 40px rgba(255, 204, 0, 0.8), 0 0 60px rgba(255, 153, 0, 0.6); }
    100% { text-shadow: 0 0 10px #ffcc00, 0 0 20px rgba(255, 204, 0, 0.5); }
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #000;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

/* Video Bölümü */
.videos-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.videos-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #ffcc00;
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.video-item {
    width: 560px;
    max-width: 100%;
    height: 315px;
    border: 3px solid #ffcc00;
    border-radius: 10px;
    overflow: hidden;
}

.video-item iframe {
    width: 100%;
    height: 100%;
}

/* Özellikler Bölümü */
.features {
    padding: 100px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.features h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #ffcc00;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s;
    width: 300px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.2);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

/* Galeri Bölümü */
.gallery {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.gallery h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.gallery > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-item {
    width: 300px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #ffcc00;
    cursor: pointer;
    transition: transform 0.3s;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.image-caption {
    text-align: center;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffcc00;
    font-weight: bold;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

/* Modal (Açılır Kapanır) */
/* NOT: modal başlangıçta kapalı. Açmak için JS ile `show` sınıfı ekliyoruz. */
.modal {
    display: none; /* başlangıçta kapalı */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;
}

/* .modal.show uygulandığında içerik ortalanır */
.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* caption aşağıda */
}

/* Ortak modal-content stilleri (hem img hem video için) */
.modal-content {
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    border: 3px solid #ffcc00;
    border-radius: 10px;
    animation-name: zoom;
    animation-duration: 0.3s;
    object-fit: contain;
    background: #000;
}

/* img ve video aynı sınıfla uyumlu */
.modal img,
.modal video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: 10px;
    display: block;
}

/* Zoom animasyonu */
@keyframes zoom {
    from {transform: scale(0.8)}
    to {transform: scale(1)}
}

/* Kapatma butonu */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ffcc00;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close:hover,
.close:focus {
    color: #ff9900;
    text-decoration: none;
}

/* Modal caption */
.modal-caption {
    margin-top: 15px;
    text-align: center;
    color: #ffcc00;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    max-width: 80%;
}

/* Müzik Kontrolü */
.music-player {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.music-btn.active {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
}

.music-btn.inactive {
    background: #666;
    color: #999;
}

.music-text {
    color: #ffcc00;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 204, 0, 0.3);
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .feature-grid,
    .video-container,
    .gallery-container {
        flex-direction: column;
        align-items: center;
    }
    
    .video-item {
        width: 100%;
        height: 250px;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 300px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .image-caption {
        font-size: 0.9rem;
        min-height: 70px;
        padding: 10px 8px;
    }
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* siyah arka plan, istersen gradient koyabilirsin */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.loading-logo {
    width: 250px; /* logonun boyutunu ayarla */
    animation: pulse 1.5s infinite;
}

/* Basit animasyon */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* Logo genel ayar */
.server-logo {
    width: 650px; /* boyut ayarlayabilirsin */
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px #ffcc00); /* altın parıltı */
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover efekti */
.server-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px #ff9900);
}

/* Animasyonlu glow */
@keyframes glowing {
    0% { filter: drop-shadow(0 0 10px #ff6600); }
    50% { filter: drop-shadow(0 0 30px #ffd700); }
    100% { filter: drop-shadow(0 0 10px #ff6600); }
}

.logo-container .server-logo {
    animation: glowing 2s infinite;
}

/* Sosyal medya sabit sidebar */
.social-sidebar {
    position: fixed;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* Butonların genel görünümü */
.social-sidebar a {
    color: #fff;
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Hover efekti */
.social-sidebar a:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px #ffd700;
}

/* Her platform için özel renk */
.instagram { background: #E4405F; }
.facebook  { background: #1877F2; }
.discord   { background: #5865F2; }
.youtube   { background: #FF0000; }
.tiktok    { background: #000000; }

/* Efsun Oranları Bölümü */
.efsun-section {
    padding: 60px 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
}

.efsun-section h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #ffd700;
    /* text-shadow: 0 0 10px #ff6600; */
}

.efsun-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.efsun-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20,20,20,0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.efsun-table th, .efsun-table td {
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.efsun-table th {
    background: #ff6600;
    color: #fff;
    text-transform: uppercase;
}

.efsun-table tr:nth-child(even) {
    background: rgba(255,255,255,0.05);
}

.efsun-table tr:hover {
    background: rgba(255, 215, 0, 0.15);
}

/* Sabit Dil Butonları */
.translate-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

.translate-widget button {
    font-size: 22px;
    padding: 8px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.translate-widget button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #ffd700;
}

.bosses-section {
    padding: 60px 0;
    background: rgba(0,0,0,0.6); /* Dark arka plan, senin siteye uyumlu */
    color: #fff;
    text-align: center;
}

.bosses-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.bosses-section p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #ccc;
}

.boss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    justify-items: center;
}

.boss-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.boss-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.boss-item img {
    display: block;
    margin: 0 auto 10px auto;
}

.boss-name {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffcc00; /* Öne çıkan bir renk */
}
