/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    z-index: 1002;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: background-color var(--transition-slow), border-color var(--transition-slow);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    font-weight: 400;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.nav-logo h1 i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

.tagline {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Press Start 2P', monospace;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.8rem;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Controles de tema */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-foro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.btn-foro:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    color: white;
}

.btn-foro i {
    font-size: 0.7rem;
}

.theme-toggle {
    position: relative;
}

.theme-btn {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-primary);
    font-size: 1rem;
}

.theme-btn:hover {
    background: #4CAF50;
    color: var(--text-inverse);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.theme-btn:active {
    transform: scale(0.95);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4CAF50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
    padding: 120px 0 80px 0;
}

/* Fondo decorativo Minecraft */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(33, 150, 243, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(76, 175, 80, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 193, 7, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(33, 150, 243, 0.1), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(76, 175, 80, 0.2), transparent),
        radial-gradient(1px 1px at 200px 90px, rgba(139, 92, 246, 0.15), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.minecraft-logo {
    margin-bottom: 2rem;
}

.minecraft-logo i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    color: #4CAF50;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Beta Banner */
.beta-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.beta-banner i {
    animation: spin 2s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.beta-countdown {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-text {
    font-size: 0.7rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    display: block;
    font-family: 'Press Start 2P', monospace;
    font-size: 2rem;
    font-weight: 400;
    color: #4CAF50;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Press Start 2P', monospace;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    font-weight: 400;
    padding: 1.2rem 2.5rem;
    font-size: 0.8rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    font-weight: 400;
    padding: 1.2rem 2.5rem;
    font-size: 0.8rem;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: #4CAF50;
    color: #4CAF50;
    transform: translateY(-2px);
}

/* Secciones */
.section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

/* Características Section */
.caracteristicas {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: #4CAF50;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4CAF50;
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.3));
}

.feature-card h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.7rem;
}

/* Changelog Section */
.changelog {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.changelog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
    font-family: 'Press Start 2P', monospace;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.changelog-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.changelog-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 220px;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin: 0 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-date:hover {
    border-color: #4CAF50;
    transform: scale(1.05);
}

.timeline-date::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    background: #4CAF50;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.timeline-item:nth-child(odd) .timeline-date::before {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-date::before {
    left: -12px;
}

.date {
    display: block;
    font-weight: 400;
    color: #4CAF50;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.version {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: linear-gradient(135deg, #4CAF50, #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.timeline-content {
    flex: 1;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-content .server-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content .server-badge.features {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.timeline-content .server-badge.fixes {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

.timeline-content .server-badge.beta {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
    color: white;
}

.timeline-content ul {
    list-style: none;
    margin-top: 1rem;
}

.timeline-content li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.timeline-content li:last-child {
    border-bottom: none;
}

.timeline-content li:hover {
    color: var(--text-primary);
    padding-left: 2.5rem;
}

.timeline-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 0.8rem;
    top: 0.8rem;
}

/* Load More Container */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.loading-spinner {
    color: #4CAF50;
    font-size: 1rem;
    margin-top: 1rem;
}

.loading-spinner i {
    margin-right: 0.5rem;
}

/* Beta Section */
.beta {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.beta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.beta-info h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.2rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.beta-status {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin-bottom: 2rem;
    text-align: center;
}

.beta-status i {
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 1rem;
    animation: spin 3s linear infinite;
}

.beta-features h4 {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.beta-features ul {
    list-style: none;
}

.beta-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.beta-features li i {
    color: #4CAF50;
    font-size: 0.8rem;
}

.beta-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.beta-form h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.beta-notification-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #4CAF50;
    font-size: 0.8rem;
}

/* Comunidad Section */
.comunidad {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.comunidad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comunidad-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.comunidad-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #4CAF50;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.comunidad-card h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.comunidad-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.7rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-family: 'Press Start 2P', monospace;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.7rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.7rem;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #4CAF50;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.social-links a:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.server-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.development {
    background: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* Skeleton Loader */
.skeleton-loader {
    display: block;
}

.skeleton-loader.hidden {
    display: none;
}

.skeleton-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-date {
    flex: 0 0 220px;
    height: 80px;
    background: var(--border-color);
    border-radius: 12px;
    margin: 0 2rem;
    position: relative;
    overflow: hidden;
}

.skeleton-content {
    flex: 1;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.skeleton-title {
    height: 24px;
    background: var(--border-color);
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 60%;
}

.skeleton-text {
    height: 16px;
    background: var(--border-color);
    border-radius: 4px;
    margin-bottom: 0.8rem;
    width: 100%;
}

.skeleton-text.short {
    width: 70%;
}

.skeleton-text:nth-child(2) { width: 90%; }
.skeleton-text:nth-child(3) { width: 85%; }
.skeleton-text:nth-child(4) { width: 75%; }

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .btn-foro {
        font-size: 0.5rem;
        padding: 0.5rem 0.8rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--card-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-controls {
        margin-top: 1rem;
    }

    .theme-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .changelog-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-date {
        flex: none;
        margin: 0 0 1rem 0;
        text-align: left;
    }

    .timeline-date::before {
        left: -10px !important;
        right: auto !important;
    }

    .comunidad-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .beta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
