        /* ═══════════════════════════════════════════
           CSS VARIABLES & RESET
           ═══════════════════════════════════════════ */
        :root {
            --deep-void: #060d18;
            --deep-navy: #0a1628;
            --navy: #111d33;
            --steel: #1e3a5f;
            --steel-light: #2a4a6f;
            --ice: #4a9bb5;
            --ice-bright: #5ec4d4;
            --ice-glow: #7dd4e0;
            --ice-light: #a8e6f0;
            --ice-pale: #d0f0f8;
            --dark-accent: #0d1117;
            --gold: #c8a85c;
            --gold-light: #e8d48b;
            --fire: #e85d3a;
            --fire-glow: #ff7b5c;
            --earth: #6ab04c;
            --wind: #a29bfe;
            --lightning: #f9ca24;
            --dark-el: #9b59b6;
            --text: #eaf1f8;
            --text-dim: #c4d1de;
            --card-bg: rgba(18, 32, 52, 0.92);
            --card-border: rgba(74, 155, 181, 0.15);
            --glow-sm: 0 0 15px rgba(94, 196, 212, 0.15);
            --glow-md: 0 0 30px rgba(94, 196, 212, 0.2);
            --glow-lg: 0 0 60px rgba(94, 196, 212, 0.25);
            --font-display: 'Cinzel', serif;
            --font-body: 'Nunito Sans', sans-serif;
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #4b6d81 var(--deep-void);
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background:#4b6d81; }
        ::-webkit-scrollbar-thumb { background: #4b6d81; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--ice); }

        body {
            font-family: var(--font-body);
            background: var(--deep-void);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            font-weight: 400;
        }

        /* ═══════════════════════════════════════════
           NORSE RUNE BACKGROUND PATTERN (SVG)
           ═══════════════════════════════════════════ */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L30 55 M15 15 L45 45 M45 15 L15 45' stroke='%231e3a5f' stroke-width='0.3' opacity='0.08'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
        }

        /* ═══════════════════════════════════════════
           GLOBAL UTILITIES
           ═══════════════════════════════════════════ */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            position: relative;
            padding: 100px 0;
            z-index: 1;

        }
		
		.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 10%, 
        rgba(94, 196, 212, 0.55) 35%, 
        rgba(94, 196, 212, 0.99) 50%, 
        rgba(94, 196, 212, 0.55) 65%, 
        transparent 90%);
    opacity: 0.85;
    transition: all 0.4s ease;
}

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: #95f6ff;
            letter-spacing: 0.05em;
            text-transform: uppercase;
			
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--ice-bright), transparent);
            margin: 16px auto 0;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text);
            font-size: 1.1rem;
            max-width: 640px;
            margin: 0 auto 30px;
            font-weight: 500;
            opacity: 0.8;
        }

        /* Decorative Norse knot divider */
        .norse-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin: 0 auto 60px;
            max-width: 400px;
        }

        .norse-divider::before,
        .norse-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--steel-light), transparent);
        }

        .norse-divider .rune {
            font-family: var(--font-display);
            color: var(--ice);
            font-size: 1.2rem;
            opacity: 0.6;
        }

        /* Reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ═══════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 24px;
            transition: all 0.4s ease;
    background: rgb(15 23 29 / 92%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .nav.scrolled {
    background: rgb(15 23 29 / 92%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-logo img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            color: #c8eef2;
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            font-family: var(--font-body);
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--ice-bright);
            background: rgba(94, 196, 212, 0.08);
        }

        /* Language Switcher */
        .lang-switcher {
            position: relative;
            margin-left: 12px;
            flex-shrink: 0;
        }

        .lang-selected {
            padding: 6px 14px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            font-family: var(--font-body);
            background: rgba(30, 58, 95, 0.4);
            border: 1px solid rgba(74, 155, 181, 0.25);
            border-radius: 6px;
            color: var(--ice-bright);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lang-selected:hover {
            background: rgba(74, 155, 181, 0.3);
            border-color: var(--ice);
        }

        .lang-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 160px;
            background: rgba(12, 20, 35, 0.95);
            border: 1px solid rgba(74, 155, 181, 0.25);
            border-radius: 8px;
            backdrop-filter: blur(16px);
            padding: 6px 0;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }

        .lang-dropdown.open {
            display: flex;
            flex-direction: column;
        }

        .lang-btn {
            padding: 8px 16px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            font-family: var(--font-body);
            background: transparent;
            border: none;
            color: var(--text-dim);
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
        }

        .lang-btn:hover {
            color: var(--ice-bright);
            background: rgba(74, 155, 181, 0.15);
        }

        .lang-btn.active {
            color: var(--ice-bright);
            background: rgba(74, 155, 181, 0.25);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--ice-light);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .nav-toggle.open span:nth-child(2) { opacity: 0; }
        .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        @media (max-width: 1024px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                flex-direction: column;
                background: rgba(6, 13, 24, 0.98);
                backdrop-filter: blur(20px);
                padding: 80px 24px 24px;
                gap: 4px;
                transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                border-left: 1px solid var(--card-border);
                overflow-y: auto;
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links a {
                font-size: 0.9rem;
                padding: 10px 16px;
            }

            .nav-toggle {
                display: flex;
            }
        }

        /* ═══════════════════════════════════════════
           HERO SECTION
           ═══════════════════════════════════════════ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            z-index: 1;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
			background-image: url("../assets/img/bg.jpg");
			overflow-x:hidden;
			background-position:top center;
			background-repeat:no-repeat;
			background-attachment:fixed;
			background-size:cover;
            z-index: -1;
			
        }
		
@media (max-width:768px) {
    .hero::before {
	 background: url(../assets/img/mobilebg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #0c1c26!important;
    }

}

        /* Floating particles */
        .particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--ice-bright);
            border-radius: 50%;
            opacity: 0;
            animation: floatUp linear infinite;
        }

        @keyframes floatUp {
            0% { opacity: 0; transform: translateY(100vh) scale(0); }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { opacity: 0; transform: translateY(-10vh) scale(1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 20px 24px 60px;
        }

        .hero-logo {
            width: min(550px, 85vw);
            height: auto;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 40px rgba(94, 196, 212, 0.6));
            animation: logoFloat 6s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .hero-title {
            font-family: var(--font-display);
			font-size: clamp(1rem, 3vw, 1.6rem);
			text-shadow: 0 0 25px #000;
            font-weight: 600;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--ice-glow);
            margin-bottom: 8px;
            opacity: 0;
            animation: fadeSlideUp 1s 0.4s forwards;
        }


.countdown-container {
    margin-top: 25px;
    opacity: 0;
    animation: fadeSlideUp 1s 0.6s forwards;
    width: 100%;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 10px;
}


.time-box {
    background: rgba(10, 25, 45, 0.85);
    border: 1px solid rgba(80, 200, 255, 0.5);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 85px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 180, 255, 0.2);
    transition: all 0.3s ease;
}

.time-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);     
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px #00eeff,
                 0 0 40px rgba(0, 238, 255, 0.4);
    line-height: 1;
}

.time-label {
    display: block;
    font-size: clamp(0.75rem, 2.5vw, 0.82rem);   
    color: #88ddff;
    margin-top: 6px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .time-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 35px rgba(0, 220, 255, 0.35);
    }
}


@media (max-width: 576px) {
    .countdown-timer {
        gap: 8px;
        padding: 0 5px;
    }
    
    .time-box {
        padding: 10px 14px;
        min-width: 68px;
        border-radius: 10px;
    }
    
    .time-value {
        font-size: clamp(1.5rem, 6vw, 2.1rem);
    }
    
    .time-label {
        font-size: 0.72rem;
        margin-top: 4px;
    }
}


        .hero-subtitle {
            font-family: var(--font-display);
			font-size: clamp(0.8rem, 2vw, 1rem);
			text-shadow: 0 0 25px #000;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeSlideUp 1s 0.6s forwards;
        }

        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 48px;
            opacity: 0;
            animation: fadeSlideUp 1s 0.8s forwards;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(10, 165, 195, 0.82);
    backdrop-filter: blur(14px);
    padding: 9px 26px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: inset 0 3px 10px rgba(255, 255, 255, 0.35);
        }

        .btn-primary:hover {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(10, 165, 195, 0.99);
    backdrop-filter: blur(14px);
    padding: 9px 26px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: inset 0 8px 4px rgba(255, 255, 255, 0.35);
        }

        .btn-secondary {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(58, 89, 169, 0.82);
    backdrop-filter: blur(14px);
    padding: 9px 26px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: inset 0 3px 10px rgba(255, 255, 255, 0.35);
        }

        .btn-secondary:hover {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(58, 89, 169, 0.99);
    backdrop-filter: blur(14px);
    padding: 9px 26px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: inset 0 8px 40px rgba(255, 255, 255, 0.35);
        }

        .btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .hero-langs {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeSlideUp 1s 1s forwards;
        }

        .hero-langs span {
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            padding: 4px 10px;
            border-radius: 4px;
            background: rgba(30, 58, 95, 0.5);
            border: 1px solid rgba(74, 155, 181, 0.30);
            color: var(--text-dim);
            transition: all 0.3s ease;
            cursor: default;
        }

        .hero-langs span:hover {
            color: var(--ice-bright);
            border-color: var(--ice);
            background: rgba(74, 155, 181, 0.60);
        }

        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-dim);
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            animation: bounce 2s infinite;
            text-decoration: none;
        }

        .hero-scroll .chevron {
            width: 20px;
            height: 20px;
            border-right: 2px solid var(--ice);
            border-bottom: 2px solid var(--ice);
            transform: rotate(45deg);
            opacity: 0.6;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        /* ═══════════════════════════════════════════
           CARDS — SHARED STYLES
           ═══════════════════════════════════════════ */
        .card {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 28px 24px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--ice-bright), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover {
            border-color: rgba(94, 196, 212, 0.3);
            transform: translateY(-4px);
            box-shadow: var(--glow-md);
        }

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

        .card-icon {
            font-size: 2rem;
            margin-bottom: 16px;
            display: block;
        }

        .card h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 600;
            color: #77cbce;
            margin-bottom: 10px;
            letter-spacing: 0.04em;
        }

        .card p {
            color: var(--text-dim);
            font-size: 0.94rem;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Card grids */
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
        .grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }


        /* ═══════════════════════════════════════════
           SECTION: INTRODUCTION1
           ═══════════════════════════════════════════ */
        #introduction {
            background-image: url("../assets/img/bg2.png");
			box-shadow: 0 -16px 40px -12px rgba(0, 0, 0, 0.55);
        }
		
				.intro-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 10%, 
        rgba(94, 196, 212, 0.55) 35%, 
        rgba(94, 196, 212, 0.75) 50%, 
        rgba(94, 196, 212, 0.55) 65%, 
        transparent 90%);
    opacity: 0.85;
    transition: all 0.4s ease;
}
		
        .intro-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-top: 40px;
        }

        .intro-feature {
    text-align: center;
    padding: 20px 12px;
    border-radius: 10px;
    background: rgb(35 78 95 / 40%);
    border: 1px solid rgb(107 162 180 / 25%);
    transition: all 0.3s ease;
        }

        .intro-feature:hover {
            border-color: rgba(94, 196, 212, 0.2);
			background: rgb(35 78 95 / 80%);
        }

        .intro-feature .icon {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .intro-feature h4 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            color: var(--ice-glow);
            letter-spacing: 0.04em;
        }

        .intro-text {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--text-dim);
            font-weight: 400;
            line-height: 1.8;
        }
		
        /* ═══════════════════════════════════════════
           SECTION: INTRODUCTION2
           ═══════════════════════════════════════════ */


#introduction2 {
    background-image: url("../assets/img/bg.png");
}

.image-text-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 40px;
    margin: 60px 0;
    position: relative;
}


.image-text-grid-two::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent,
        rgba(94, 196, 212, 0.15),
        rgba(94, 196, 212, 0.35),
        rgba(94, 196, 212, 0.15),
        transparent);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.60;
}


.image-text-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.image-text-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-md);
    border-color: rgba(94, 196, 212, 0.35);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 0;    
    aspect-ratio: 16 / 9;         
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;              
    object-position: center;        
    transition: transform 0.6s ease;
    display: block;
}

.image-text-card:hover .image-wrapper img {
    transform: scale(1.06);
}

.text-content {
    padding: 28px 32px 34px;
	background: rgb(7 7 7 / 50%);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 180px;
	margin-top: -1px;
    border-top: 1px solid rgba(74, 155, 181, 0.2);
}

.text-content h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: #77cbce;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    font-weight: 600;
    flex-shrink: 0;
}

.text-content p {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.78;
    font-weight: 400;
    flex-grow: 1;
}

.image-text-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 10%, 
        rgba(94, 196, 212, 0.55) 35%, 
        rgba(94, 196, 212, 0.75) 50%, 
        rgba(94, 196, 212, 0.55) 65%, 
        transparent 90%);
    opacity: 0.45;
    transition: all 0.4s ease;
}

.image-text-card:hover::after {
    opacity: 0.99;
    height: 3px;
}


@media (max-width: 1150px) {
    .image-text-grid-two::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .image-text-grid-two {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .image-text-grid-two::after {
        display: none;
    }
    
    .image-wrapper {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        aspect-ratio: 16 / 9;
    }
    
    .text-content {
        padding: 24px 26px 28px;
    }
}		

        /* ═══════════════════════════════════════════
           SECTION: CORE SYSTEMS
           ═══════════════════════════════════════════ */
        #systems {
            background-image: url("../assets/img/bg2.png");
        }

        /* System category heading */
        .sys-category {
            margin-bottom: 60px;
        }

        .sys-category-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            color: #95f6ff;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .sys-category-title::before,
        .sys-category-title::after {
            content: '';
            flex: 1;
            max-width: 120px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--ice), transparent);
        }

        /* Feature row — zigzag layout */
        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            padding: 40px 0;
        }
		
				.feature-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 10%, 
        rgba(94, 196, 212, 0.55) 35%, 
        rgba(94, 196, 212, 0.75) 50%, 
        rgba(94, 196, 212, 0.55) 65%, 
        transparent 90%);
    opacity: 0.25;
    transition: all 0.4s ease;
}
		

        .feature-row:last-child {
            border-bottom: none;
        }

        .feature-row.reverse .feature-text { order: 2; }
        .feature-row.reverse .feature-visual { order: 1; }

        .feature-text {
            padding: 10px 0;
        }

        .feature-text .tag {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 0.9rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--ice);
            background: rgba(74, 155, 181, 0.1);
            border: 1px solid rgba(74, 155, 181, 0.4);
            border-radius: 4px;
            padding: 4px 12px;
            margin-bottom: 14px;
        }

        .feature-text h3 {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 2.8vw, 1.9rem);
            font-weight: 700;
            color: #77cbce;
            margin-bottom: 14px;
            letter-spacing: 0.03em;
            line-height: 1.3;
        }

        .feature-text p {
            color: var(--text-dim);
            font-size: 1rem;
            line-height: 1.8;
            font-weight: 400;
            max-width: 500px;
        }

        .feature-text .feature-highlights {
            list-style: none;
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

.feature-text .feature-highlights li {
    font-size: 0.82rem;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgb(17 66 76 / 80%);
    border: 1px solid rgba(74, 155, 181, 0.12);
    color: #64869a;
    font-weight: 500;
        }

        /* Visual block — decorative SVG illustration area */
        .feature-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
			border: 1px solid #7fcbc3!important;		
        }

        .feature-visual .vis-box {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 4 / 3;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
			
        }

        .feature-visual .vis-box:hover {
        }

        .feature-visual .vis-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(74, 155, 181, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        .feature-visual .vis-icon {
            font-size: 4.5rem;
            filter: grayscale(20%);
            z-index: 1;
        }

        .feature-visual .vis-label {
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
font-family: var(--font-display);
font-size: 1.2rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: #fff;
background: rgba(10, 165, 195, 0.52);
backdrop-filter: blur(14px);
padding: 9px 26px;
border-radius: 60px;
border: 1px solid rgba(255, 255, 255, 0.48);
box-shadow:  inset 0 3px 10px rgba(255, 255, 255, 0.35);  
white-space: nowrap;
z-index: 10;
        }

        /* ═══════════════════════════════════════════
           FEATURE CARDS — immersive per-system layout
           ═══════════════════════════════════════════ */

        .fcard {
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    padding: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    background: linear-gradient(250deg, rgb(19 48 55 / 70%), rgb(33 47 59 / 60%));
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgb(173 235 255 / 20%);
    backdrop-filter: blur(6px);
        }

        /* Atmospheric overlay (subtle glow behind content) */
        .fcard::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .fcard > * {
            position: relative;
            z-index: 1;
        }

        /* ── Image area ── */
        .fcard__image {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 280px;
        }

.fcard__img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 12px rgba(132, 184, 212, 0.35)); 
    transition: transform 0.4s ease, filter 0.4s ease;
    animation: soft-blue-glow 4s ease-in-out infinite;
}

.fcard:hover .fcard__img {
    transform: scale(1.02);

    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5)) 
            drop-shadow(0 0 20px rgba(132, 184, 212, 0.6));
}


@keyframes soft-blue-glow {
    0%, 100% {
        filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4)) 
                drop-shadow(0 0 10px rgba(132, 184, 212, 0.25));
    }
    50% {
        filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4)) 
                drop-shadow(0 0 18px rgba(132, 184, 212, 0.45));
    }
}


.fcard__body {


}

        .fcard__tag {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 0.68rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--ice);
            background: rgba(74, 155, 181, 0.1);
            border: 1px solid rgba(74, 155, 181, 0.4);
            border-radius: 4px;
            padding: 4px 12px;
            margin-bottom: 14px;
        }

        .fcard__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3.8vw, 2.9rem);
    font-weight: 600;
    color: #77cbce;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
    line-height: 1.3;
        }

        .fcard__desc {
            color: var(--text-dim);
            font-size: 1rem;
            line-height: 1.8;
            font-weight: 400;
            margin-bottom: 26px;
        }

        .fcard__pills {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .fcard__pills li {
            font-size: 0.82rem;
            padding: 5px 14px;
            border-radius: 20px;
            background: rgba(18, 32, 52, 0.8);
            border: 1px solid rgba(74, 155, 181, 0.12);
            color: var(--text);
            font-weight: 500;
        }

        /* Bullet-point feature list */
        .fcard__list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.fcard__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 400;
    line-height: 1.5;
    padding: 15px 15px;
    border-radius: 8px;
    background: rgb(4 6 7 / 50%);
    border-left: 3px solid var(--ice);
    transition: all 0.3s ease;
        }

        .fcard__list li:hover {
				background: rgb(10 16 19 / 50%);
            transform: translateX(4px);
        }

        .fcard__list li::before {
            content: '▹';
            color: var(--ice-bright);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        /* ── Per-system theming ── */

        /* Auto Metin Hunt — narrow portrait image, wider text */
        .fcard--auto-hunt {
            grid-template-columns: auto 1fr;
        }

        .fcard--auto-hunt .fcard__image {
            max-width: 400px;
        }

        .fcard--auto-hunt .fcard__img {
            max-height: 700px;

        }

        /* ── Responsive ── */
        @media (max-width: 880px) {
            .fcard {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }

            .fcard__image {
                min-height: auto;
                justify-content: center;
            }

            .fcard__img {
                max-height: 360px;
            }

            .fcard--auto-hunt {
                grid-template-columns: 1fr;
            }

            .fcard--auto-hunt .fcard__image {
                max-width: 200px;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .fcard {
                padding: 1rem;
                gap: 1.5rem;
            }

            .fcard__body {
                padding: 1.5rem;
            }

            .fcard__img {
                max-height: 280px;
            }
        }

        /* Decorative rings inside vis-box */
        .feature-visual .ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(74, 155, 181, 0.08);
        }

        .feature-visual .ring-1 { width: 180px; height: 180px; }
        .feature-visual .ring-2 { width: 260px; height: 260px; }
        .feature-visual .ring-3 { width: 340px; height: 340px; opacity: 0.5; }

        /* Compact feature list for grouped small systems */
.sys-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);       
    gap: 16px;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .sys-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sys-compact-grid {
        grid-template-columns: 1fr;
    }
}

        .sys-compact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 50px;
    background: rgb(39 62 77 / 92%);
	border: 1px solid #586c6f;
	box-shadow: 0px -1px 114px -55px rgba(191,224,250,0.70) inset;
	-webkit-box-shadow: 0px -1px 114px -55px rgba(191,224,250,0.70) inset;
	-moz-box-shadow: 0px -1px 114px -55px rgba(191,224,250,0.70) inset;
    border-radius: 12px;
    transition: all 0.3s ease;
        }

        .sys-compact-card:hover {
	border: 1px solid #586c6f;
	box-shadow: 0px -1px 114px -55px rgba(191,224,250,0.99) inset;
	-webkit-box-shadow: 0px -1px 114px -55px rgba(191,224,250,0.99) inset;
	-moz-box-shadow: 0px -1px 114px -55px rgba(191,224,250,0.99) inset;
    transform: translateY(-2px);
        }

        .sys-compact-card .compact-icon {
            font-size: 1.6rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .sys-compact-card h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            color: #77cbce;
			text-align:center;
			text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.8);
            margin-bottom: 4px;
            letter-spacing: 0.03em;
        }

        .sys-compact-card p {
            font-size: 0.86rem;
            color: var(--text-dim);
			text-align:center;
			text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.8);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .feature-row {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 30px 0;
            }

            .feature-row.reverse .feature-text { order: 1; }
            .feature-row.reverse .feature-visual { order: 2; }

            .feature-visual .vis-box {
                max-width: 320px;
            }

            .feature-text p {
                max-width: 100%;
            }
        }

        /* ═══════════════════════════════════════════
           SECTION: LOKI'S SYSTEMS
           ═══════════════════════════════════════════ */
        #loki {
            background-image: url("../assets/img/bg3.png");
			    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	    width: 100%;
    min-height: 60vh;
			
        }

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

.loki-card {
    background: rgb(38 34 44 / 92%);
    border-radius: 16px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;

				border: 1px solid #9b71a6;
            box-shadow: 0 0 40px rgba(155, 89, 182, 0.35);
            transform: translateY(-4px);
}


.loki-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: conic-gradient(
        transparent, 
        rgba(208, 76, 248, 0.9) 10%, 
        rgba(208, 76, 248, 0.8) 25%,  
        rgba(41, 128, 185, 0.6) 40%,  
        transparent 50%
    );
    animation: rotate-neon 5s linear infinite;
    z-index: -2;

    filter: blur(10px); 
}


.loki-card::after {
    content: '';
    position: absolute;
    inset: 2px; 
    background: rgb(38 34 44); 
    border-radius: 14px; 
    z-index: -1;
}

@keyframes rotate-neon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

        .loki-card:hover {
			border: 1px solid #9b71a6;
            box-shadow: 0 0 40px rgba(155, 89, 182, 0.65);
            transform: translateY(-4px);
        }

        .loki-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: #d4a5e8;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .loki-card p {
            color: var(--text-dim);
            line-height: 1.7;
            font-weight: 400;
        }

        .loki-card ul {
            list-style: none;
            margin-top: 14px;
        }

        .loki-card ul li {
            padding: 6px 0;
            color: var(--text-dim);
            font-size: 0.92rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-weight: 400;
        }

        .loki-card ul li::before {
            content: '◆';
            color: #9b59b6;
            font-size: 0.6rem;
            margin-top: 6px;
            flex-shrink: 0;
        }

        /* ═══════════════════════════════════════════
           SECTION: GUILD SYSTEM
           ═══════════════════════════════════════════ */
#guild {
    position: relative;
    background-image: url("../assets/img/guild.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 60vh;
}


#guild::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        #1b526b 0%,          
        transparent 15%,     
        transparent 50%,     
        #1a76a1 100%         
    );
    opacity: 0.12;           
    pointer-events: none;
    z-index: 1;
}

#guild > * {
    position: relative;
    z-index: 2;
}

        .guild-info {
            text-align: center;
            margin-bottom: 50px;
        }

        .guild-info p {
            color: var(--text-dim);
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .guild-paths {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 30px;
            align-items: start;
            max-width: 900px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .guild-paths {
                grid-template-columns: 1fr;
            }
        }

.guild-path {
    border-radius: 10px;
    background: rgb(39 62 77 / 92%);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
	border: 1px solid rgb(173 235 255 / 20%);
}


.guild-path::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: conic-gradient(
        transparent, 
        rgba(0, 255, 234, 0.9) 10%, 
        rgba(0, 194, 255, 0.7) 25%, 
        rgba(0, 100, 148, 0.5) 40%, 
        transparent 50%
    );
    animation: rotate-neon 5s linear infinite;
    z-index: -2;
    filter: blur(2px); 
}


.guild-path::after {
    content: '';
    position: absolute;
    inset: 2px; 
    background: rgb(39 62 77); 
    border-radius: 8px;
    z-index: -1;
}

@keyframes rotate-neon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

        .guild-path h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            color: var(--ice-glow);
            text-align: center;
            margin-bottom: 20px;
            letter-spacing: 0.06em;
        }

        .guild-bonus {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(74, 155, 181, 0.08);
            font-size: 0.9rem;
            color: var(--text-dim);
            font-weight: 400;
        }

        .guild-bonus:last-child { border-bottom: none; }

        .guild-bonus .value {
            color: var(--ice-bright);
            font-weight: 600;
            white-space: nowrap;
        }

        .guild-common {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px;
            text-align: center;
        }

        .guild-common .icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
        }


.guild-common h4 {
    font-family: var(--font-display);
    color: #11a56a;
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: inline-block;
    animation: neon-pulse-sync 2.5s ease-in-out infinite;
}


.guild-common .value {
    color: var(--text-dim);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    animation: neon-pulse-sync 2.5s ease-in-out infinite;
}


@keyframes neon-pulse-sync {
    0%, 100% {
        transform: scale(1);
        filter: blur(0px); 
        text-shadow: 0 0 5px currentColor; 
    }
    50% {
        transform: scale(1.05); 
        filter: blur(0.3px); 
        text-shadow: 0 0 15px currentColor, 0 0 25px currentColor; 
    }
}

        /* ═══════════════════════════════════════════
           SECTION: BIOLOGIST TABLE
           ═══════════════════════════════════════════ */
        #biologist {
            background-image: url("../assets/img/biologist.png");
	position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 60vh;
        }

        .table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
    background: rgb(39 62 77 / 92%);
    border: 1px solid rgb(173 235 255 / 20%);
        }

        .styled-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }

        .styled-table thead {
            background: rgb(53 83 102 / 92%);
        }

        .styled-table th {
            font-family: var(--font-display);
            font-weight: 600;
            color: var(--ice-glow);
            padding: 16px 20px;
            text-align: left;
            letter-spacing: 0.06em;
            font-size: 0.82rem;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .styled-table td {
            padding: 14px 20px;
            border-top: 1px solid rgba(74, 155, 181, 0.06);
            color: var(--text-dim);
            font-weight: 400;
        }

        .styled-table tbody tr {
            transition: background 0.2s ease;
        }

        .styled-table tbody tr:hover {
            background: rgba(74, 155, 181, 0.05);
        }

        .styled-table .level {
            color: var(--ice-bright);
            font-weight: 600;
        }

        .styled-table .reward {
            color: var(--ice-light);
        }
		
		
.high-level-wrapper {
    max-width: 1280px !important;
}

.table-scroll-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 12px !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(173, 235, 255, 0.3) transparent;
}

.highlevelbiologist {
    width: 100% !important;
    min-width: 720px !important;        
    margin: 0 auto !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
    background: rgb(39 62 77 / 92%) !important;
    border: 1px solid rgb(173 235 255 / 20%) !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35) !important;
}

.highlevelbiologist thead {
    background: rgb(53 83 102 / 95%) !important;
}

.highlevelbiologist th {
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    color: var(--ice-glow) !important;
    padding: 16px 18px !important;
    text-align: left !important;
    letter-spacing: 0.06em !important;
    font-size: 0.82rem !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.highlevelbiologist td {
    padding: 14px 18px !important;
    border-top: 1px solid rgba(74, 155, 181, 0.06) !important;
    color: var(--text-dim) !important;
    font-size: 0.95rem !important;
}


.highlevelbiologist tbody tr.row-116 { background-color: rgb(0 0 0 / 25%) !important; }
.highlevelbiologist tbody tr.row-117 { background-color: rgb(16 99 0 / 25%) !important; }
.highlevelbiologist tbody tr.row-118 { background-color: rgba(255, 195, 70, 0.25) !important; }
.highlevelbiologist tbody tr.row-119 { background-color: rgb(72 12 12 / 65%) !important; }


.highlevelbiologist tbody tr.row-116:hover { background-color: rgb(34 103 144 / 15%) !important; }
.highlevelbiologist tbody tr.row-117:hover { background-color: rgb(34 144 65 / 35%) !important; }
.highlevelbiologist tbody tr.row-118:hover { background-color: rgba(255, 195, 70, 0.35) !important; }
.highlevelbiologist tbody tr.row-119:hover { background-color: rgb(114 27 27 / 65%) !important; }


.highlevelbiologist tbody tr {
    transition: background-color 0.25s ease;
}


.highlevelbiologist tr.row-116 td { color: #a1c5e1 !important; }
.highlevelbiologist tr.row-117 td { color: #aaffcc !important; }
.highlevelbiologist tr.row-118 td { color: #ffdd88 !important; }
.highlevelbiologist tr.row-119 td { color: #ffbbbb !important; }


.highlevelbiologist th:nth-child(1), .highlevelbiologist td:nth-child(1) { width: 11% !important; }
.highlevelbiologist th:nth-child(2), .highlevelbiologist td:nth-child(2) { width: 27% !important; }
.highlevelbiologist th:nth-child(3), .highlevelbiologist td:nth-child(3) { width: 45% !important; }
.highlevelbiologist th:nth-child(4), .highlevelbiologist td:nth-child(4) { width: 17% !important; }


@media screen and (max-width: 768px) {
    .high-level-wrapper {
        max-width: 100% !important;
    }
    
    .table-scroll-wrapper {
        border-radius: 10px !important;
    }
    
    .highlevelbiologist th,
    .highlevelbiologist td {
        padding: 12px 12px !important;
        font-size: 0.9rem !important;
    }
    
    .highlevelbiologist th {
        font-size: 0.78rem !important;
    }
}	
		

        /* ═══════════════════════════════════════════
           SECTION: SHOULDER SASH
           ═══════════════════════════════════════════ */
        #sash {
            background-image: url("../assets/img/sash.png");
				position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 60vh;
        }
		

#sash::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        #1b526b 0%,          
        transparent 15%,     
        transparent 50%,     
        #1a76a1 100%         
    );
    opacity: 0.12;           
    pointer-events: none;
    z-index: 1;
}

#sash > * {
    position: relative;
    z-index: 2;
}

        .sash-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .sash-info-card {
			background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 28px 24px;
        }

        .sash-info-card h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            color: var(--ice-glow);
            margin-bottom: 16px;
        }

        .tier-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            margin: 3px 4px;
            letter-spacing: 0.04em;
        }

        .tier-basic { background: rgba(136, 136, 136, 0.2); color: #aaa; border: 1px solid rgba(136,136,136,0.3); }
        .tier-fine { background: rgba(74, 155, 181, 0.15); color: var(--ice); border: 1px solid rgba(74,155,181,0.3); }
        .tier-noble { background: rgba(200, 168, 92, 0.15); color: var(--gold); border: 1px solid rgba(200,168,92,0.3); }
        .tier-custom { background: rgba(155, 89, 182, 0.15); color: #c89be8; border: 1px solid rgba(155,89,182,0.3); }

        .soul-types {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 12px;
        }

        .soul-type {
            padding: 14px 16px;
            border-radius: 8px;
            text-align: center;
        }


.soul-pvm {
    background: rgba(229, 83, 83, 0.07);
    border: 1px solid rgba(229, 83, 83, 0.25);
    color: #e55353;
    animation: pulse-pvm 4s ease-in-out infinite;
    padding: 10px; 
    border-radius: 4px; 
}

.soul-pvp {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: #00cccc;
    animation: pulse-pvp 4s ease-in-out infinite;
    padding: 10px; 
    border-radius: 4px; 
}


@keyframes pulse-pvm {
    0%, 100% {
        box-shadow: 0 0 4px rgba(229, 83, 83, 0.15);
        border-color: rgba(229, 83, 83, 0.2);
    }
    50% {
        box-shadow: 0 0 12px rgba(229, 83, 83, 0.4);
        border-color: rgba(229, 83, 83, 0.6);
        background: rgba(229, 83, 83, 0.15);
    }
}

@keyframes pulse-pvp {
    0%, 100% {
        box-shadow: 0 0 3px rgba(0, 204, 204, 0.1);
        border-color: rgba(0, 204, 204, 0.15);
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 204, 204, 0.3);
        border-color: rgba(0, 204, 204, 0.5);
        background: rgba(0, 204, 204, 0.1);
    }
}
        .soul-type h5 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            margin-bottom: 4px;
        }

        .soul-type p {
            font-size: 0.78rem;
            opacity: 0.7;
        }

        /* Sash bonus list */
        .bonus-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 8px;
        }

        .bonus-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 16px;
			background: rgba(0, 0, 0, 0.3);
            border-radius: 6px;
            font-size: 0.88rem;
            color: var(--text-dim);
            font-weight: 400;
        }

        .bonus-list li .max {
            color: var(--ice-bright);
            font-weight: 600;
        }

        /* ═══════════════════════════════════════════
           SECTION: ALCHEMY
           ═══════════════════════════════════════════ */
        #alchemy {
            background-image: url("../assets/img/alchemy.png");
				position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 60vh;
        }

        .alchemy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 24px;
        }


.alchemy-card {
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    border: none; 
}


.alchemy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate-neon 5s linear infinite;
    z-index: -2;
    filter: blur(2px);
}


.alchemy-card::after {
    content: '';
    position: absolute;
    inset: 2px; 
    border-radius: 12px;
    z-index: -1;
}


.alchemy-ice::before {
	border: 1px solid rgba(74, 155, 181, 0.25); 
    background: conic-gradient(transparent, rgba(74, 155, 181, 0.9) 15%, transparent 40%);
}
.alchemy-ice::after { background: rgb(29 50 57);
border: 1px solid rgba(74, 155, 181, 0.25);  } 


.alchemy-fire::before {
    background: conic-gradient(transparent, rgba(232, 93, 58, 0.9) 15%, transparent 40%);
	border: 1px solid rgba(232, 93, 58, 0.25);
}
.alchemy-fire::after { background: rgb(47 25 20);
					border: 1px solid rgba(232, 93, 58, 0.25); }


.alchemy-earth::before {
	border: 1px solid rgba(106, 176, 76, 0.25); 
    background: conic-gradient(transparent, rgba(106, 176, 76, 0.9) 15%, transparent 40%);
}
.alchemy-earth::after { background: rgb(37 50 33);
border: 1px solid rgba(106, 176, 76, 0.25); }


.alchemy-wind::before {
	    border: 1px solid rgba(99, 99, 109, 0.25); 
    background: conic-gradient(transparent, rgba(195, 195, 195, 0.9) 15%, transparent 40%);
}
.alchemy-wind::after { background: rgb(41 41 50);;
	    border: 1px solid rgba(99, 99, 109, 0.25); }


.alchemy-lightning::before {
	    border: 1px solid rgba(249, 202, 36, 0.25); 
    background: conic-gradient(transparent, rgba(249, 202, 36, 0.9) 15%, transparent 40%);
}
.alchemy-lightning::after { background: rgb(43 39 26);
border: 1px solid rgba(249, 202, 36, 0.25); }


.alchemy-dark::before {
	    border: 1px solid rgba(155, 89, 182, 0.25); 
    background: conic-gradient(transparent, rgba(155, 89, 182, 0.9) 15%, transparent 40%);
}
.alchemy-dark::after { background: rgb(37 28 41);;
	    border: 1px solid rgba(155, 89, 182, 0.25) }


@keyframes rotate-neon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.alchemy-card:hover {
    transform: translateY(-4px);
}

        .alchemy-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .alchemy-card ul {
            list-style: none;
        }

        .alchemy-card ul li {
            padding: 5px 0;
            font-size: 0.87rem;
            color: var(--text-dim);
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .alchemy-card ul li::before {
            content: '›';
            font-weight: 700;
            opacity: 0.5;
        }

        /* ═══════════════════════════════════════════
           SECTION: DUNGEONS
           ═══════════════════════════════════════════ */
        #dungeons {
            background-image: url("../assets/img/dungeon.png");
	position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 60vh;
        }
		
#dungeons::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        #1b526b 0%,          
        transparent 15%,     
        transparent 50%,     
        #1a76a1 100%         
    );
    opacity: 0.12;           
    pointer-events: none;
    z-index: 1;
}

#dungeons > * {
    position: relative;
    z-index: 2;
}		

        .dungeon-category {
            margin-bottom: 40px;
        }

        .dungeon-category h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--ice-glow);
            margin-bottom: 20px;
            text-align: center;
            letter-spacing: 0.08em;
        }

        .dungeon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }

        .dungeon-card {
			background: rgba(0, 0, 0, 0.5);
            border: 1px solid #323e46;
            border-radius: 10px;
            padding: 22px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .dungeon-card:hover {
            border-color: rgba(94, 196, 212, 0.3);
            transform: translateY(-3px);
            box-shadow: var(--glow-sm);
        }

        .dungeon-card h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            color: var(--ice-light);
            margin-bottom: 8px;
        }

        .dungeon-card .level-range {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            background: rgba(74, 155, 181, 0.12);
            color: var(--ice);
            border: 1px solid rgba(74, 155, 181, 0.4);
        }

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

        .dungeon-feat {
            text-align: center;
            padding: 18px 14px;
			background: rgb(39 62 77);
			border: 1px solid rgb(173 235 255 / 20%);
            border-radius: 8px;
        }

        .dungeon-feat .icon { font-size: 1.4rem; margin-bottom: 6px; }

        .dungeon-feat p {
            font-size: 0.82rem;
            color: var(--text-dim);
            font-weight: 400;
        }

        /* ═══════════════════════════════════════════
           SECTION: EVENTS
           ═══════════════════════════════════════════ */
        #events {
            background-image: url("../assets/img/event.png");
	position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 60vh;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 14px;
        }

.event-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    background: rgb(39 62 77 / 92%);
    border: 1px solid rgb(173 235 255 / 20%);
    border-radius: 12px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative; 
    overflow: hidden;  
}

.event-tag::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%; 
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent
    );
    transform: skewX(-25deg); 
    animation: shine-sweep 3s infinite;
}

@keyframes shine-sweep {
    0% { left: -150%; }
    30% { left: 150%; } 
    100% { left: 150%; } 
}

.event-tag:hover {
    background: rgb(39 62 77 / 99%);
    border: 1px solid rgb(173 235 255 / 20%);
    transform: translateY(-2px);
}

        .event-tag .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--ice-bright);
            flex-shrink: 0;
            box-shadow: 0 0 8px rgba(94, 196, 212, 0.5);
        }

        /* ═══════════════════════════════════════════
           SECTION: EQUIPMENT
           ═══════════════════════════════════════════ */
/* ====================== EQUIPMENT SECTION ====================== */
#equipment {
    background-image: url("../assets/img/equipment.png");
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 60vh;
}

#equipment::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, #1b526b 0%, transparent 15%, transparent 50%, #1a76a1 100%);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

#equipment > * {
    position: relative;
    z-index: 2;
}

/* Grid */
.equip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    margin-top: 40px;
}

/* Card */
.equip-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.equip-card:hover {
    border-color: rgba(94, 196, 212, 0.4);
    transform: translateY(-6px);
}

.equip-card.active {
    grid-column: 1 / -1;
    background: rgba(39, 62, 77, 0.92);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(173, 235, 255, 0.2);
}

/* İçerik */
.equip-card .content {
    display: none;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(94, 196, 212, 0.3);
    position: relative;
}

.equip-card.active .content {
    display: block;
}

/* Geri Dön Butonu */
.back-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #5ec4d4;
    color: #0f2a3f;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #bef6ff;
    color: #0f2a3f;
    transform: scale(1.15);
}

/* Dönüşüm Alanı */
.transform-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transform-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.circle-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #253338;
}

.circle-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.arrow {
    font-size: 22px;
    color: #5ec4d4;
    font-weight: bold;
}



        /* ═══════════════════════════════════════════
           SECTION: PERFORMANCE & OPTIONS
           ═══════════════════════════════════════════ */
        #performance {
            background-image: url("../assets/img/performance.png");
	position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 60vh;
        }

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

        .perf-card {
            text-align: center;
            padding: 40px 24px;
			background: rgb(39 62 77 / 92%);
			border: 1px solid rgb(173 235 255 / 20%);
            border-radius: 14px;
            transition: all 0.4s ease;
        }

        .perf-card:hover {
			border: 1px solid rgb(173 235 255 / 40%);
            box-shadow: var(--glow-md);
            transform: translateY(-5px);
        }

        .perf-card .icon {
            font-size: 2.6rem;
            margin-bottom: 16px;
        }

        .perf-card h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--ice-light);
            margin-bottom: 8px;
        }

        .perf-card p {
            color: var(--text-dim);
            font-size: 0.9rem;
            font-weight: 400;
        }

        /* ═══════════════════════════════════════════
           SECTION: GAME OPTIONS
           ═══════════════════════════════════════════ */
        #options {
            background-image: url("../assets/img/options.png");
	position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 60vh;
        }
		
#options::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        #1b526b 0%,          
        transparent 15%,     
        transparent 50%,     
        #1a76a1 100%         
    );
    opacity: 0.12;           /* Parlaklık seviyesi (0.08 ile 0.18 arası oynayabilirsin) */
    pointer-events: none;
    z-index: 1;
}

#options > * {
    position: relative;
    z-index: 2;
}
		

        /* ═══════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════ */
        .footer {
            position: relative;
position: relative;
    z-index: 1;
    padding: 60px 0 30px;
    background: linear-gradient(180deg, #0b1217, #040a14);
    border-top: 1px solid var(--card-border);
        }

        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
        }

        .footer-logo {
            width: 180px;
            margin-bottom: 24px;
            opacity: 0.7;
        }

        .footer-links {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .footer-links a {
            color: var(--ice);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--ice-bright);
        }

        .footer-links a svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .footer-copy {
            color: var(--text-dim);
            font-size: 0.8rem;
            opacity: 0.5;
        }

        /* ═══════════════════════════════════════════
           BACK TO TOP
           ═══════════════════════════════════════════ */
        .back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(74, 155, 181, 0.15);
            border: 1px solid rgba(74, 155, 181, 0.3);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 999;
            color: var(--ice-bright);
            font-size: 1.2rem;
        }

        .back-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-top:hover {
            background: rgba(74, 155, 181, 0.3);
            box-shadow: var(--glow-sm);
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE FINE-TUNING
           ═══════════════════════════════════════════ */
        @media (max-width: 768px) {
            .section { padding: 70px 0; }
            .section-title { margin-bottom: 12px; }
            .section-subtitle { margin-bottom: 40px; }
            .loki-grid { grid-template-columns: 1fr; }
            .alchemy-grid { grid-template-columns: 1fr; }
            .sash-grid { grid-template-columns: 1fr; }
            .soul-types { grid-template-columns: 1fr; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .btn { width: 100%; max-width: 280px; justify-content: center; }
        }

        @media (max-width: 480px) {
            .section { padding: 50px 0; }
            .container { padding: 0 16px; }
            .card { padding: 22px 18px; }
            .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
            .events-grid { grid-template-columns: 1fr 1fr; }
            .dungeon-grid { grid-template-columns: 1fr; }
        }
