@charset "utf-8";
/* Devil Hunter Guide - Modern Glassmorphism Design
   Based on template design with black-orange theme
*/

:root {
    --primary-orange: #ff6b00;
    --orange-light: #ff9500;
    --orange-dark: #cc5500;
    --bg-dark: #0a0a0a;
    --bg-section: #0f0f0f;
    --glass-bg: rgba(255, 107, 0, 0.03);
    --glass-border: rgba(255, 107, 0, 0.1);
    --text: #e8e8e8;
    --text-muted: #888;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header - Fixed Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 8px;
    display: block;
}

nav a:hover,
nav a.active {
    color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
}

/* Dropdown Menu */
nav .dropdown {
    position: relative;
}

nav .dropdown > a::after {
    content: ' ▾';
    font-size: 0.7em;
    margin-left: 4px;
}

nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav .dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 0;
}

nav .dropdown-menu a:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
    padding-left: 30px;
}

nav .dropdown-menu .divider {
    height: 1px;
    background: var(--glass-border);
    margin: 8px 0;
}

nav .dropdown-menu .menu-category {
    padding: 8px 24px;
    font-size: 0.75rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    padding: 120px 30px 80px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255, 107, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-light) 50%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Card Style */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1);
}

/* Quick Navigation Grid */
.quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.nav-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.nav-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.15);
}

.nav-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.nav-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.nav-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Code Table Styles */
.codes-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.codes-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.codes-table thead {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-bottom: 2px solid var(--glass-border);
}

.codes-table th {
    padding: 20px 25px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.codes-table td {
    padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
}

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

.codes-table tr:hover {
    background: rgba(255, 107, 0, 0.05);
}

.code-cell {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.reward-cell {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-new {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-dark) 100%);
    color: #fff;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-dark) 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.1);
}

.feature-card h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Tier List Styles */
.tier-section {
    margin-bottom: 50px;
}

.tier-section h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.tier-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tier-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.tier-rank {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tier-s { background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%); color: #000; }
.tier-a { background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%); color: #000; }
.tier-b { background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%); color: #fff; }
.tier-c { background: linear-gradient(135deg, #666 0%, #444 100%); color: #fff; }
.tier-d { background: linear-gradient(135deg, #444 0%, #222 100%); color: #fff; }

.tier-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.tier-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* Lists */
ul.feature-list {
    list-style: none;
    padding: 0;
}

ul.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

ul.feature-list li:last-child {
    border-bottom: none;
}

ul.feature-list li::before {
    content: '▸';
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

/* Footer */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 50px 30px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        border-top: 1px solid var(--glass-border);
    }

    nav ul.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--primary-orange);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 50px 0;
    }

    .quick-nav {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .codes-table th,
    .codes-table td {
        padding: 15px;
        font-size: 0.9rem;
    }

    /* Mobile dropdown menu */
    nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 20px;
        display: none;
    }

    nav .dropdown:hover .dropdown-menu {
        display: block;
    }

    nav .dropdown-menu .menu-category {
        padding: 10px 0 5px;
        font-size: 0.7rem;
    }

    nav .dropdown-menu a {
        padding: 10px 0;
        padding-left: 0;
    }

    nav .dropdown-menu a:hover {
        padding-left: 10px;
        background: transparent;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
