
:root {
  --primary-color: #ffc76e;
  --text-light: #fff;
  --text-dark: #000;
  --transition-speed: 0.3s;
  --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in to sections */
.hero-section,
.kingdoms-section,
.mounts-section,
.classes-section {
  opacity: 0;
  animation: fadeIn 0.8s var(--transition-timing) forwards;
}

/* Stagger animations */
.hero-section { animation-delay: 0.2s; }
.kingdoms-section { animation-delay: 0.4s; }
.mounts-section { animation-delay: 0.6s; }
.classes-section { animation-delay: 0.8s; }

/* Underline Animation */
.kingdom-name {
  position: relative;
  display: inline-block;
}

.kingdom-name::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background: currentColor;
  transition: all var(--transition-speed) var(--transition-timing);
  transform: translateX(-50%);
}

.kingdom-card:hover .kingdom-name::after {
  width: 100%;
}

/* Parallax Effect */
.mounts-visual img,
.classes-visual img {
  transform: translateZ(0);
  transition: transform 0.5s var(--transition-timing);
  will-change: transform;
}

.mounts-section:hover .mounts-visual img,
.classes-section:hover .classes-visual img {
  transform: translateZ(50px) scale(1.05);
}

/* Kingdom Cards Enhancement */
.kingdom-card {
  transform: translateY(0);
  transition: all var(--transition-speed) var(--transition-timing);
  backdrop-filter: blur(10px);
}

.kingdom-card:hover {
  transform: translateY(-10px);
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  .hero-section p {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  
  .kingdom-name {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
}

/* Smooth Image Loading */
.kingdom-image img,
.mounts-visual img,
.classes-visual img {
  opacity: 0;
  transition: opacity var(--transition-speed) var(--transition-timing);
}

.kingdom-image img.loaded,
.mounts-visual img.loaded,
.classes-visual img.loaded {
  opacity: 1;
}

/* Enhanced Interactive Elements */
.feature-card,
.kingdom-trait {
  transition: all var(--transition-speed) var(--transition-timing);
}

.feature-card:hover,
.kingdom-trait:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



/* Loading optimization */
img {
  loading: lazy;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cinzel', serif;
            background: url('https://eu.cdn.laniatus.com/web/img/bgsmoke.jpg') no-repeat center center fixed;
            background-size: cover;
            color: #fff;
            line-height: 1.6;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: -68px;
            padding: 80px 20px;
        }

.hero-section {
    text-align: center;
    padding-top: 100px;
    margin-bottom: 60px;
    position: relative;
}

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ffc76e, transparent);
        }

        .hero-section h1 {
            font-size: 3.5rem;
            color: #ffc76e;
            margin-bottom: 30px;
            text-shadow: 0 0 10px rgba(255, 199, 110, 0.3);
        }

        .hero-section p {
            font-size: 1.2rem;
            color: #e0e0e0;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }

        .feature-card h3 {
            color: #ffc76e;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #e0e0e0;
            font-size: 1rem;
        }

        .nordic-border {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, #ffc76e, transparent, #ffc76e);
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }

            .feature-card {
                padding: 20px;
            }
        }
   .kingdoms-section {
        max-width: 1200px;
        margin: 40px auto;
        margin-bottom: -10px;
        padding: 20px;
    }

    .kingdoms-title {
        text-align: center;
        color: #ffc76e;
        font-size: 2.5rem;
        margin-bottom: 50px;
        font-family: 'Cinzel', serif;
        text-shadow: 0 0 10px rgba(255, 199, 110, 0.3);
    }

    .kingdoms-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .kingdom-card {
        position: relative;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
        transition: all 0.3s ease;
        text-align: center;
        overflow: hidden;
    }

    /* Solon - Sarı */
    .kingdom-solon {
        border: 1px solid rgba(255, 199, 110, 0.3);
    }
    .kingdom-solon:hover {
        transform: translateY(-5px);
        border-color: #ffd700;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }
    .kingdom-solon .kingdom-name {
        color: #ffd700;
    }
    .kingdom-solon .kingdom-trait {
        background: rgba(255, 215, 0, 0.2);
        color: #ffd700;
    }
    .kingdom-solon .kingdom-image {
        border-color: #ffd700;
    }

    /* Rasan - Mavi */
    .kingdom-rasan {
        border: 1px solid rgba(0, 191, 255, 0.3);
    }
    .kingdom-rasan:hover {
        transform: translateY(-5px);
        border-color: #00bfff;
        box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
    }
    .kingdom-rasan .kingdom-name {
        color: #00bfff;
    }
    .kingdom-rasan .kingdom-trait {
        background: rgba(0, 191, 255, 0.2);
        color: #00bfff;
    }
    .kingdom-rasan .kingdom-image {
        border-color: #00bfff;
    }

    /* Teven - Kırmızı */
    .kingdom-teven {
        border: 1px solid rgba(220, 20, 60, 0.3);
    }
    .kingdom-teven:hover {
        transform: translateY(-5px);
        border-color: #dc143c;
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.2);
    }
    .kingdom-teven .kingdom-name {
        color: #dc143c;
    }
    .kingdom-teven .kingdom-trait {
        background: rgba(220, 20, 60, 0.2);
        color: #dc143c;
    }
    .kingdom-teven .kingdom-image {
        border-color: #dc143c;
    }

    /* Rahun - Yeşil */
    .kingdom-rahun {
        border: 1px solid rgba(50, 205, 50, 0.3);
    }
    .kingdom-rahun:hover {
        transform: translateY(-5px);
        border-color: #32cd32;
        box-shadow: 0 0 20px rgba(50, 205, 50, 0.2);
    }
    .kingdom-rahun .kingdom-name {
        color: #32cd32;
    }
    .kingdom-rahun .kingdom-trait {
        background: rgba(50, 205, 50, 0.2);
        color: #32cd32;
    }
    .kingdom-rahun .kingdom-image {
        border-color: #32cd32;
    }

    .kingdom-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
        border-radius: 50%;
        border-width: 2px;
        border-style: solid;
        overflow: hidden;
    }

    .kingdom-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .kingdom-name {
        font-size: 1.8rem;
        margin-bottom: 10px;
        font-family: 'Cinzel', serif;
    }

    .kingdom-desc {
        color: #fff;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .kingdom-trait {
        display: inline-block;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        margin-top: 10px;
    }

    @media (max-width: 768px) {
        .kingdoms-title {
            font-size: 2rem;
        }

        .kingdom-card {
            padding: 15px;
        }

        .kingdom-image {
            width: 120px;
            height: 120px;
        }
    }
	.mounts-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 199, 110, 0.2);
}

.mounts-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mounts-text {
    flex: 1;
    min-width: 300px;
}

.mounts-title {
    color: #ffc76e;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(255, 199, 110, 0.3);
}

.mounts-description {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mounts-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 199, 110, 0.3);
}

.mounts-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.mounts-visual:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mounts-content {
        flex-direction: column;
    }
    
    .mounts-title {
        font-size: 2rem;
    }
    
    .mounts-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}
.classes-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 199, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.classes-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.classes-text {
    flex: 0.8;
    min-width: 300px;
    z-index: 2;
}

.classes-title {
    color: #ffc76e;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(255, 199, 110, 0.3);
}

.classes-description {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.classes-visual {
    flex: 1.2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 199, 110, 0.3);
}

.classes-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.classes-visual:hover img {
    transform: scale(1.05);
}

.highlight {
    color: #ffc76e;
    font-weight: bold;
}

@media (max-width: 968px) {
    .classes-content {
        flex-direction: column;
    }
    
    .classes-title {
        font-size: 2rem;
        text-align: center;
    }

    .classes-description {
        text-align: center;
    }
    
    .classes-visual {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
}
.equipment-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
    background: rgb(0 0 0 / 21%);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 199, 110, 0.2);
}

.equipment-title {
    color: #ffc76e;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(255, 199, 110, 0.3);
}

.equipment-subtitle {
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Cinzel', serif;
}

.equipment-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.equipment-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.equipment-container::-webkit-scrollbar {
    display: none;
}

.equipment-card {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 199, 110, 0.2);
    transition: all 0.3s ease;
}

.equipment-card:hover {
    transform: scale(1.05);
    border-color: #ffc76e;
    box-shadow: 0 0 20px rgba(255, 199, 110, 0.2);
}

.equipment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-image {
    transform: scale(1.1);
}

.carousel-button {
    background: rgba(255, 199, 110, 0.1);
    border: 1px solid rgba(255, 199, 110, 0.2);
    color: #ffc76e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-button:hover {
    background: rgba(255, 199, 110, 0.2);
    transform: scale(1.1);
}

.carousel-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .equipment-title {
        font-size: 2rem;
    }
    
    .equipment-subtitle {
        font-size: 1rem;
    }
    
    .equipment-card {
        flex: 0 0 250px;
        height: 250px;
    }
}
.wiki-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: rgb(0 0 0 / 45%);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 199, 110, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wiki-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 199, 110, 0.5), transparent);
}

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

.wiki-title {
    color: #ffc76e;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(255, 199, 110, 0.3);
}

.wiki-text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.wiki-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 199, 110, 0.1);
    border: 1px solid rgba(255, 199, 110, 0.3);
    color: #ffc76e;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.wiki-button:hover {
    background: rgba(255, 199, 110, 0.2);
    border-color: #ffc76e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 199, 110, 0.2);
}

.wiki-button:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .wiki-section {
        padding: 40px 20px;
    }
    
    .wiki-title {
        font-size: 2rem;
    }
    
    .wiki-text {
        font-size: 1rem;
    }
    
    .wiki-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
.mounts-section, .classes-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
    background: rgb(0 0 0 / 33%);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 199, 110, 0.2);
}

.mounts-content, .classes-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mounts-text, .classes-text {
    flex: 1;
    min-width: 300px;
}

.mounts-visual, .classes-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 199, 110, 0.3);
    /* Daha küçük boyutlar */
    width: 100%;
    height: 200px; /* Yarı boyut */
}

.mounts-visual img, .classes-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    .mounts-content, .classes-content {
        flex-direction: column;
    }
    
    .mounts-visual, .classes-visual {
        width: 100%;
        height: 150px; 
        max-width: 500px;
        margin: 0 auto;
    }
}
