/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
    --primary-orange: #ff6b35;
    --primary-purple: #8b5cf6;
    --primary-green: #10b981;
    --neon-blue: #00d9ff;
    --neon-pink: #ff0080;
    --dark-bg: #0a0a0a;
    --dark-secondary: #151515;
    --dark-tertiary: #1f1f1f;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --gradient-1: linear-gradient(135deg, var(--primary-orange) 0%, var(--neon-pink) 100%);
    --gradient-2: linear-gradient(135deg, var(--primary-purple) 0%, var(--neon-blue) 100%);
    --gradient-3: linear-gradient(135deg, var(--primary-green) 0%, var(--neon-blue) 100%);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-1) 1;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(255, 107, 53, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-street {
    color: var(--primary-orange);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.logo-dreams {
    color: var(--text-white);
    margin-left: 5px;
}

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

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a14 50%, #0a0a1a 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.graffiti-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 107, 53, 0.1) 35px, rgba(255, 107, 53, 0.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(139, 92, 246, 0.1) 35px, rgba(139, 92, 246, 0.1) 70px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    margin-bottom: 1rem;
    line-height: 1;
}

.glitch {
    position: relative;
    color: var(--text-white);
    text-shadow:
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.4);
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow:
            0 0 10px rgba(255, 107, 53, 0.8),
            0 0 20px rgba(255, 107, 53, 0.6),
            0 0 30px rgba(255, 107, 53, 0.4);
    }
    91% {
        text-shadow:
            2px 0 rgba(255, 0, 128, 0.8),
            -2px 0 rgba(0, 217, 255, 0.8);
    }
    93% {
        text-shadow:
            -2px 0 rgba(255, 0, 128, 0.8),
            2px 0 rgba(0, 217, 255, 0.8);
    }
    95% {
        text-shadow:
            0 0 10px rgba(255, 107, 53, 0.8),
            0 0 20px rgba(255, 107, 53, 0.6);
    }
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.connect-btn {
    background: var(--gradient-1);
    border: none;
    padding: 1.2rem 3rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--text-white);
    cursor: pointer;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 2px;
    display: inline-block;
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.connect-btn:hover::before {
    left: 100%;
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}

.btn-text {
    display: block;
}

.btn-ip {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ============================================
   SECTIONS GENERALES
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.title-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.member-count {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.3em;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--dark-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--dark-tertiary);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.about-card:hover::before {
    left: 0;
    opacity: 0.1;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community {
    background: var(--dark-bg);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.discord-card {
    background: linear-gradient(135deg, #5865F2 0%, #404eed 100%);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.4);
    transition: transform 0.3s ease;
}

.discord-card:hover {
    transform: translateY(-10px);
}

.discord-icon {
    margin-bottom: 2rem;
}

.discord-icon svg {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

.discord-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.discord-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.discord-btn {
    display: inline-block;
    background: var(--text-white);
    color: #5865F2;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
}

.discord-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--dark-secondary);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-white);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-link span {
    font-weight: 600;
    font-size: 1.1rem;
}

.social-link:hover {
    border-color: var(--primary-orange);
    background: var(--dark-tertiary);
    transform: translateX(10px);
}

.social-link:hover svg {
    transform: scale(1.2);
}

/* ============================================
   RULES SECTION
   ============================================ */
.rules {
    background: var(--dark-secondary);
}

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

.rule-card {
    background: var(--dark-tertiary);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.rule-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.rule-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.rule-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.rule-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.rules-footer {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 20px;
}

.rules-footer p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ============================================
   DONATIONS SECTION
   ============================================ */
.donations {
    background: var(--dark-bg);
}

.donations-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.donation-tier {
    background: var(--dark-secondary);
    border: 2px solid var(--dark-tertiary);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.donation-tier:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.donation-tier.featured {
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.donation-tier.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.tier-badge {
    display: inline-block;
    background: var(--gradient-1);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.tier-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.tier-price span {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.tier-benefits {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.tier-benefits li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--dark-tertiary);
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.tier-btn {
    background: var(--gradient-1);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
    width: 100%;
}

.tier-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.donations-info {
    text-align: center;
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 20px;
}

.donations-info p {
    color: var(--text-gray);
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-secondary);
    padding: 4rem 0 2rem;
    border-top: 2px solid transparent;
    border-image: var(--gradient-1) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--primary-orange);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.server-ip {
    color: var(--text-white);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-tertiary);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    z-index: 10000;
    transition: bottom 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}

.toast.show {
    bottom: 30px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        border-top: 2px solid var(--primary-orange);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .section-title {
        flex-direction: column;
        gap: 1rem;
    }

    .title-line {
        width: 50px;
    }

    .hero-stats {
        gap: 2rem;
    }

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

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

    .footer-links {
        grid-template-columns: 1fr;
    }

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

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

    .donation-tier.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .connect-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .btn-ip {
        font-size: 0.8rem;
    }

    section {
        padding: 60px 0;
    }

    .discord-card {
        padding: 2rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        padding: 1rem;
    }
}
