* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --accent-color: #e74c3c;
    --card-bg: #252525;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    overflow: hidden;
}

.hero-layout {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

/* Esquerda - IP do Servidor */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-self: start;
}

/* Centro - Logo */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 750px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(46, 204, 113, 0.4));
    transition: transform 0.3s ease;
    animation: fadeInScale 1s ease;
}

.hero-logo:hover {
    transform: scale(1.03);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Direita - Discord */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-self: end;
    text-align: right;
}

/* Botões de Ação */
.action-btn {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.8rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 250px;
}

.action-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

.btn-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.btn-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
}

.hero-right .btn-status {
    justify-content: flex-end;
}

.status-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.users-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.users-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-info {
    text-align: left;
}

.hero-right .btn-info {
    text-align: right;
}

.ip-value,
.discord-value {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--light-text);
    font-family: 'Courier New', monospace;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(46, 204, 113, 0.3);
    justify-content: flex-start;
}

.hero-right .btn-action {
    justify-content: flex-end;
}

.action-icon {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-icon svg {
    width: 24px;
    height: 24px;
}

.action-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Parte inferior */
.hero-bottom {
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(46, 204, 113, 0.03) 2px,
            rgba(46, 204, 113, 0.03) 4px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    filter: drop-shadow(0 10px 30px rgba(46, 204, 113, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.server-ip {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.ip-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.ip-address {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.copy-btn {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.server-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Section Styling */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-description {
    text-align: center;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--darker-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.about-card p {
    color: var(--gray-text);
}

/* Features Section */
.features {
    background: var(--dark-bg);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--primary-color);
}

.check {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-item h4 {
    color: var(--light-text);
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Mantendo estilos antigos para compatibilidade */
.map-showcase {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.map-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    max-width: 700px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.3);
    border-color: var(--secondary-color);
}

.map-card h3 {
    font-size: 2rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.map-card > p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.map-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
}

.map-features li {
    color: var(--gray-text);
    font-size: 0.95rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-features li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.map-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.map-icon svg {
    color: var(--primary-color);
    filter: drop-shadow(0 5px 15px rgba(46, 204, 113, 0.4));
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
}

.btn-map:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.5);
}

.map-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.map-btn-icon svg {
    width: 24px;
    height: 24px;
}

.map-btn-text {
    font-size: 1rem;
}

/* Play Section */
.play {
    background: var(--dark-bg);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.step {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.step p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 20px 1rem;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-text);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-bg);
    color: var(--gray-text);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        align-items: center;
        justify-self: center;
        text-align: center;
    }

    .hero-logo {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hero-layout {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-logo {
        max-width: 450px;
    }

    .action-btn {
        min-width: 220px;
        padding: 1rem 1.5rem;
    }

    .users-count {
        font-size: 1.3rem;
    }

    .status-text,
    .users-text,
    .action-text {
        font-size: 0.75rem;
    }

    .ip-value,
    .discord-value {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .map-card {
        padding: 2rem;
    }

    .map-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 350px;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }

    .hero-left .btn-status,
    .hero-left .btn-info,
    .hero-left .btn-action,
    .hero-right .btn-status,
    .hero-right .btn-info,
    .hero-right .btn-action {
        justify-content: center;
        text-align: center;
    }

    .btn {
        width: 100%;
    }

    .map-card {
        padding: 1.5rem;
    }

    .map-icon svg {
        width: 60px;
        height: 60px;
    }

    .map-card h3 {
        font-size: 1.5rem;
    }

    .btn-map {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}
