/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a1428;
    --secondary-color: #0ac8b9;
    --accent-color: #c89b3c;
    --dark-color: #091428;
    --light-color: #c8aa6e;
    --text-color: #f0e6d2;
    --danger-color: #cd4545;
    --success-color: #1a9c4d;
}

body {
    font-family: 'Cinzel', serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(10, 20, 40, 0.9) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(10, 200, 185, 0.1) 0%, transparent 20%);
    min-height: 100vh;
}

/* Arkaplan Animasyonları */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    animation-delay: 1s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    background-color: var(--light-color);
    animation-delay: 3s;
}

.particle:nth-child(5) {
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
}

/* Header */
.main-header {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.95) 0%, rgba(9, 20, 40, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(200, 155, 60, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.4s ease;
}

.logo img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 6px rgba(10, 200, 185, 0.45));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 10px rgba(10, 200, 185, 0.75));
    transform: scale(1.05);
}

.logo h1 {
    font-family: 'MedievalSharp', cursive;
    font-size: 1.7rem;
    background: linear-gradient(45deg, var(--accent-color), var(--light-color));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

.logo span {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* ===== NAV MENU ===== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
    background-color: rgba(10, 200, 185, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active {
    color: var(--secondary-color);
}

.logo {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width: 1024px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        display: none; /* Mobile hamburger ile açılacak */
    }
    
    .nav-menu.active {
        display: flex;
    }
}

@media(max-width: 768px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo span {
        font-size: 1.1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
}

@media(max-width: 480px) {
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
}


/* Haber Slider */
.news-slider {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'MedievalSharp', cursive;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(200, 155, 60, 0.5);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.slider-container {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(9, 20, 40, 0.9) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 200px;
}

.slide {
    min-width: 100%;
    padding: 2rem;
    background: rgba(20, 30, 48, 0.7);
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 0.5s forwards;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.slide-tag.yeni {
    background: var(--danger-color);
}

.slide-tag.etkinlik {
    background: var(--accent-color);
}

.slide h3 {
    color: var(--light-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.slide p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.slide-date {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.slider-btn {
    background: rgba(10, 200, 185, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Oynanış Rehberleri */
.gameplay-guides {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.guides-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guide-card {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(9, 20, 40, 0.9) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color), transparent);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.guide-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
}

.guide-card h3 {
    color: var(--light-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.guide-card ul {
    list-style: none;
    margin-top: 1rem;
}

.guide-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(200, 170, 110, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.guide-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Şampiyonlar ve Eşyalar Grid */
.content-grid {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 2rem;
}

.content-box {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(9, 20, 40, 0.9) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--accent-color);
    min-height: 500px;
}

.box-title {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(200, 155, 60, 0.3);
}

.champions-grid,
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    max-height: 350px;
    overflow-y: auto;
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

.item-type-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-type-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


.item-type-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, 
        var(--secondary-color), 
        rgba(10, 200, 185, 0.9));
    color: var(--primary-color);
    padding: 0.8rem 2.2rem;
    border-radius: 35px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 
        0 6px 25px rgba(10, 200, 185, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1.2px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.champion-card,
.item-card {
    background: rgba(20, 30, 48, 0.7);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.champion-card::before,
.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.champion-card:hover::before,
.item-card:hover::before {
    left: 100%;
}

.champion-card:hover,
.item-card:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(10, 200, 185, 0.3);
}

.champion-card img,
.item-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.champion-card:hover img,
.item-card:hover img {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.champion-name,
.item-name {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.champion-card:hover .champion-name,
.item-card:hover .item-name {
    color: var(--secondary-color);
}

.view-all {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 155, 60, 0.3);
}

.view-all a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all a:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.95) 0%, rgba(9, 20, 40, 0.98) 100%);
    border-top: 2px solid var(--accent-color);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Animasyonlar */
@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px var(--secondary-color));
    }
    to {
        filter: drop-shadow(0 0 15px var(--secondary-color));
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slider {
        height: 250px;
    }
    
    .guides-container {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 20, 40, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--accent-color), var(--light-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

