/* Variables CSS */
:root {
    --primary-color: #b3a06f;
    --primary-dark: #8a774a;
    --primary-light: #d4c9a8;
    --dark-bg: #070605;
    --darker-bg: #040303;
    --text-color: #f8f9fa;
    --text-muted: #adb5bd;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Alata', sans-serif;
}

/* Estilos base */
body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-gold {
    color: var(--primary-color);
}

.bg-dark {
    background-color: var(--dark-bg) !important;
}

.bg-darker {
    background-color: var(--darker-bg) !important;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-color);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Navbar */
.navbar-minimal {
    background-color: rgba(10, 10, 10, 0.98);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar-minimal.scrolled {
    padding: 0.7rem 0;
    background-color: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    transition: all 0.3s ease;
    opacity: 0.9;
}

.navbar-brand:hover img {
    opacity: 1;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler-line {
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-line {
    background: white;
}

.nav-link-modern {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    position: relative;
    transition: all 0.2s ease;
}

.nav-link-modern:hover {
    color: white !important;
}

.nav-link-modern:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 1rem;
    background: white;
    transition: width 0.3s ease;
}

.nav-link-modern:hover:after {
    width: calc(100% - 2rem);
}

.btn-minimal {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    color: #111 !important;
    border: none;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.btn-minimal:hover {
    background: white;
    transform: translateY(-1px);
}

.btn-minimal-outline {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.btn-minimal-outline:hover {
    color: white !important;
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Hero section */
.hero-section {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 6, 5, 0.6);
}

.hero-logo {
    max-width: 350px;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.launch-date {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Contador de lanzamiento */
.launch-countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    margin: 0 0.5rem;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-link {
    color: var(--text-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Tarjetas de servidor */
.server-card {
    background: linear-gradient(145deg, rgba(51,42,34,0.3), rgba(14,11,6,0.3));
    border: 1px solid rgba(179, 160, 111, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(179, 160, 111, 0.3);
}

.server-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(179, 160, 111, 0.1);
}

.server-name {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.server-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.server-rates {
    padding: 1.5rem;
    flex-grow: 1;
}

.rate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rate-list li {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(179, 160, 111, 0.1);
    color: var(--text-muted);
}

.rate-list li span:first-child {
    color: var(--text-muted);
}

.server-footer {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(179, 160, 111, 0.1);
}

.btn-server {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-server:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.online-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #28a745;
    margin-right: 0.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Tarjetas de características */
.feature-card {
    background: rgba(15, 14, 12, 0.7);
    border: 1px solid rgba(179, 160, 111, 0.1);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(179, 160, 111, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-desc {
    color: var(--text-muted);
}

/* Sección de comunidad */
.community-info {
    background: rgba(15, 15, 15, 0.7);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(179, 160, 111, 0.1);
}

.community-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: white;
    transform: translateY(-3px);
}

.discord-widget iframe {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sección de videos */
.video-card {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(179, 160, 111, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-container {
    position: relative;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.7);
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Sección de descargas */
.download-card {
    background: rgba(15, 14, 12, 0.7);
    border: 1px solid rgba(179, 160, 111, 0.1);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(179, 160, 111, 0.3);
}

.download-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.download-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.download-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-download {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-download:hover {
    background-color: var(--primary-dark);
    color: #000;
}

.download-size {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Requisitos del sistema */
.system-requirements {
    border-top: 1px solid rgba(179, 160, 111, 0.1);
    padding-top: 2rem;
}

.requirements-card {
    background: rgba(10, 9, 8, 0.7);
    border: 1px solid rgba(179, 160, 111, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.requirements-card h5 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    text-align: center;
}

.requirements-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.requirements-card ul li {
    padding: 0.3rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.requirements-card ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(179, 160, 111, 0.1);
}

.footer-logo img {
    max-width: 180px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(179, 160, 111, 0.1);
}

/* Modal */
.modal-content {
    background: linear-gradient(rgba(15,14,12,0.95), rgba(10,9,8,0.95));
    border: 1px solid rgba(179, 160, 111, 0.3);
    box-shadow: 0 0 20px rgba(179, 160, 111, 0.2);
    border-radius: 0;
    color: var(--text-color);
}

.modal-header {
    border-bottom: 1px solid rgba(179, 160, 111, 0.2);
}

.modal-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.modal-footer {
    border-top: 1px solid rgba(179, 160, 111, 0.2);
}

.btn-close {
    filter: invert(0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-minimal {
        background-color: rgba(10, 10, 10, 0.98) !important;
    }
    
    .navbar-collapse {
        padding-top: 1rem;
    }
    
    .nav-link-modern {
        padding: 0.7rem 0 !important;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link-modern:after {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 700px;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .launch-countdown {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .community-info {
        margin-bottom: 2rem;
    }
    
    .discord-widget iframe {
        height: 300px;
    }
}
/* Estilos para el estado del servidor */
.online-status .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.online-status .status-dot.online {
    background-color: #28a745;
}

.online-status .status-dot.offline {
    background-color: #dc3545;
}

.server-footer .coming-soon {
    background-color: #6c757d;
    cursor: not-allowed;
}

.server-footer .opening-date {
    font-size: 0.9rem;
    color: #ffc107;
    margin-top: 5px;
    font-weight: 500;
}