:root {
    --bg-color: #0d0f12;
    --text-primary: #e4e6eb;
    --text-secondary: #b0b3b8;
    --accent-color: #f1c40f;
    --accent-hover: #f39c12;
    --nav-bg: rgba(13, 15, 18, 0.85);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo {
    font-family: 'Cinzel', serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 1rem 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    cursor: pointer;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Use the generated cinematic landscape */
    background-image: url('file:///C:/Users/k_jae/.gemini/antigravity/brain/dc809fc6-140f-4a8a-96ec-e12df266f1a7/skyrim_hero_bg_1772952435860.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(13, 15, 18, 0.3) 0%, rgba(13, 15, 18, 0.8) 80%, var(--bg-color) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpFade 1.5s 0.2s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.hero-title .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-color);
    background: var(--accent-color);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 5.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(241, 196, 15, 0.3));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 700;
    color: var(--bg-color);
    background-color: var(--accent-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(241, 196, 15, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 2s infinite ease-in-out;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: scrollWheel 2s infinite;
}

/* Common Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100%;
}

.text-center {
    text-align: center;
    width: 100%;
}
.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-grid {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.about-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-text strong {
    color: var(--text-primary);
    font-size: 1.25rem;
}

/* World Section */
.world-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.world-image-container {
    flex: 1;
    height: 500px;
    border-radius: 20px;
    /* Use the generated dragon combat image */
    background-image: url('file:///C:/Users/k_jae/.gemini/antigravity/brain/dc809fc6-140f-4a8a-96ec-e12df266f1a7/skyrim_dragon_combat_1772952508410.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.world-image-container:hover {
    transform: scale(1.02);
}

.world-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.6);
}

.image-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.6);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.world-text {
    flex: 1;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.feature-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--accent-color);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--accent-color));
}

.feature-list h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-list p {
    color: var(--text-secondary);
}

/* Features Section */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: rgba(241, 196, 15, 0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(241, 196, 15, 0.4));
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(to top, rgba(13, 15, 18, 0.8), transparent);
}

.review-link {
    text-decoration: none;
    display: block;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(241, 196, 15, 0.2);
}

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.reviewer {
    color: var(--accent-color);
    font-weight: 700;
    font-family: 'Cinzel', serif;
    text-align: right;
    font-size: 1.1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(0,0,0,0.5);
}

/* Animations */
@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .world-content {
        flex-direction: column;
    }
    .world-image-container {
        width: 100%;
        height: 350px;
    }
    .hero-title { font-size: 3rem; }
    .hero-title .highlight { font-size: 4rem; }
}

@media (max-width: 768px) {
    nav ul {
        display: none; 
    }
    .hero-title { font-size: 2.5rem; }
    .hero-title .highlight { font-size: 3rem; }
    .about-grid { padding: 2rem; }
    .logo {font-size: 1.5rem;}
}
