/* Базовые настройки */
:root {
    --dune-orange: #d35400;
    --dune-sand: #f39c12;
    --spice-blue: #2980b9;
    --dark-bg: #111;
    --darker-bg: #0a0a0a;
    --text-color: #ecf0f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

/* Навигация */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(10, 10, 10, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo {
    font-size: 24px;
    color: var(--dune-sand);
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--dune-sand);
}

/* Hero Section (Параллакс) */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-attachment: fixed; /* Эффект параллакса */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--dune-orange);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.pve-badge {
    background-color: var(--spice-blue);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 15px var(--spice-blue);
}

/* Секции */
.section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: var(--dune-sand);
    margin-bottom: 40px;
}

.dark-bg {
    background-color: var(--darker-bg);
}

/* Командование */
.roster-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.3);
}

.leader-card {
    border-color: var(--dune-orange);
    box-shadow: 0 0 15px rgba(211, 84, 0, 0.2);
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--dune-sand);
}

.role {
    color: var(--spice-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Гайды */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
}

.guide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guide-info {
    padding: 20px;
}

.guide-info h4 {
    color: var(--dune-sand);
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--dune-orange);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--dune-sand);
}

/* Карта */
.map-container {
    margin-top: 30px;
    height: 500px;
    width: 100%;
    background: #222;
    border: 2px solid var(--dune-sand);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    color: #666;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
}

footer {
    text-align: center;
    padding: 20px;
    background: #050505;
    color: #666;
}