:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c2c2c;
    --accent-color: #c5a059; /* L2 Gold/Bronze */
    --text-color: #e0e0e0;
    --highlight-color: #ff4d4d; /* Aggressive Red */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
.main-header {
    background-color: rgba(20, 20, 20, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

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

/* Hero Section */
.hero-section {
    height: 130vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://cdn.discordapp.com/attachments/1424524427252465674/1468457154187890789/image.png?ex=698416cc&is=6982c54c&hm=92bb119472376115e9dc27f25123f5d1027c036c8038f970cc1d54d222e87168'); /* Fallback generic fantasy background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px #000;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px #000;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(to bottom, #5a4a3a, #3a2a1a);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

.cta-button:hover {
    background: linear-gradient(to bottom, #7a6a5a, #5a4a3a);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.6);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    border-bottom: 1px solid #444;
}

.about-section h2, .skills-section h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    position: relative;
}

.about-section h2::after, .skills-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 4px;
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

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

.skill-card {
    background: linear-gradient(145deg, #252525, #1e1e1e);
    padding: 30px;
    border: 1px solid #333;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.skill-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    border-top: 1px solid #333;
}

.gallery-section h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    position: relative;
}

.gallery-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

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

.gallery-item {
    aspect-ratio: 16/9;
    background-color: #000;
    border: 2px solid #444;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #111, #222);
}

/* Ranking Section */
.ranking-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    border-top: 1px solid #333;
}

.ranking-section h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    position: relative;
}

.ranking-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.ranking-table-container {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
    border: 1px solid #444;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    font-family: var(--font-body);
}

.ranking-table th, .ranking-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.ranking-table th {
    background-color: #252525;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.ranking-table tr:hover {
    background-color: #222;
}

.ranking-table tr:last-child td {
    border-bottom: none;
}

.rank-1 {
    color: #ffd700; /* Gold */
    font-weight: 700;
}

.rank-2 {
    color: #c0c0c0; /* Silver */
    font-weight: 700;
}

.rank-3 {
    color: #cd7f32; /* Bronze */
    font-weight: 700;
}

/* Footer */
.main-footer {
    background-color: #0f0f0f;
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--accent-color);
}

.main-footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* Simple hide for mobile for this demo */
    }
}
