* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #1a1a1a;
}

header {
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #ff6b35;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section com imagem de fundo */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeInUp 1s ease;
}

.main-title {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 107, 53, 0.8);
    letter-spacing: 0.1em;
    animation: glow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f7931e;
    text-shadow: 0 0 30px rgba(247, 147, 30, 0.8);
    letter-spacing: 0.2em;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 2rem auto 3rem;
    color: #e0e0e0;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    letter-spacing: 0.05em;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.7);
    background: linear-gradient(135deg, #ff7b45 0%, #ffa31e 100%);
}

.btn-secondary {
    background: rgba(88, 101, 242, 0.2);
    color: #fff;
    border: 2px solid #5865f2;
    box-shadow: 0 5px 25px rgba(88, 101, 242, 0.3);
}

.btn-secondary:hover {
    background: rgba(88, 101, 242, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(88, 101, 242, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    animation: fadeInUp 1s ease 0.7s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #d0d0d0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 107, 53, 0.3);
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.9));
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d1b1b 100%);
    position: relative;
}

.about-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.about-box h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lore-text {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.lore-text p {
    margin-bottom: 1.5rem;
    text-indent: 2rem;
}

/* Discord Section */
.discord-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #2d1b1b 0%, #1a1a1a 100%);
}

.discord-box {
    background: rgba(88, 101, 242, 0.1);
    border: 2px solid rgba(88, 101, 242, 0.4);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.2);
}

.discord-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #5865f2;
}

.discord-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #5865f2;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.discord-button:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.discord-button svg {
    width: 28px;
    height: 28px;
}

/* Rules Section */
.rules-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #1a1a2a 100%);
}

.rules-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.rules-box h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.codex-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    transition: all 0.3s;
}

.codex-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(5px);
}

.codex-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f7931e;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    padding-bottom: 0.5rem;
}

.codex-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(255, 107, 53, 0.5);
}

.codex-rules {
    margin-top: 1.5rem;
}

.rule-check {
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 107, 53, 0.15);
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s;
}

.rule-check:hover {
    background: rgba(255, 107, 53, 0.25);
    border-left-color: #f7931e;
    transform: translateX(3px);
}

.rules-note {
    text-align: center;
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: bold;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 1.5rem auto 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        gap: 1rem;
        margin: 2rem 0;
    }

    .hero-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 2rem;
        padding: 1.5rem;
        margin-top: 3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-divider {
        height: 50px;
    }

    .hero {
        background-attachment: scroll;
        min-height: 80vh;
    }

    .about-box,
    .discord-box,
    .rules-box {
        padding: 2rem 1.5rem;
    }

    .about-box h2,
    .rules-box h2 {
        font-size: 2rem;
    }

    .lore-text {
        font-size: 1rem;
    }

    .codex-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .codex-title {
        font-size: 1.4rem;
    }

    .codex-description {
        font-size: 1rem;
        padding-left: 0.8rem;
    }

    .rule-check {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }
}