/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: 
        linear-gradient(180deg, #0a1a2e 0%, #16213e 30%, #1a2332 60%, #0f1419 100%),
        radial-gradient(ellipse at top, rgba(135, 206, 250, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(70, 130, 180, 0.1) 0%, transparent 50%);
    overflow-x: hidden;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Nubes superiores */
        radial-gradient(ellipse 800px 200px at 20% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 600px 150px at 60% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 700px 180px at 85% 12%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
        /* Nubes medias */
        radial-gradient(ellipse 500px 120px at 30% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 650px 160px at 70% 45%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        /* Islas flotantes */
        radial-gradient(ellipse 400px 80px at 15% 75%, rgba(139, 195, 74, 0.2) 0%, rgba(76, 175, 80, 0.15) 30%, transparent 60%),
        radial-gradient(ellipse 350px 70px at 50% 80%, rgba(139, 195, 74, 0.18) 0%, rgba(76, 175, 80, 0.12) 35%, transparent 65%),
        radial-gradient(ellipse 450px 90px at 80% 78%, rgba(139, 195, 74, 0.22) 0%, rgba(76, 175, 80, 0.16) 28%, transparent 62%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    animation: cloudFloat 60s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-15px) translateY(5px); }
    75% { transform: translateX(10px) translateY(-5px); }
}

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

/* Menú Lateral */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0a0a0a 100%);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

body.sidebar-hidden .sidebar {
    transform: translateX(-100%);
}

.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 300px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1100;
    border: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease, transform 0.3s ease, left 0.3s ease;
    backdrop-filter: blur(10px);
}

.sidebar-toggle i {
    font-size: 1.2rem;
    pointer-events: none;
}

.sidebar-toggle:hover {
    transform: translateY(-2px);
    background: rgba(42, 42, 42, 0.95);
    border-color: rgba(255, 255, 255, 0.25);
}

body.sidebar-hidden .sidebar-toggle {
    left: 20px;
}

/* Estilos para botones admin dentro de las páginas (no en el sidebar) */
/* IMPORTANTE: Solo afecta a botones con clase .btn, NO a enlaces del sidebar */
/* Asegurar que los enlaces del sidebar NUNCA sean afectados */
a.sidebar-link {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.admin-foro-btn,
a.btn[href*="login.php"]:not(.sidebar-link),
a.btn[href*="ver-postulaciones"]:not(.sidebar-link) {
    display: none !important; /* Oculto por defecto */
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.admin-foro-btn.admin-visible,
a.btn[href*="login.php"]:not(.sidebar-link).admin-visible,
a.btn[href*="ver-postulaciones"]:not(.sidebar-link).admin-visible {
    display: inline-flex !important; /* Mostrar cuando se active la combinación */
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 3px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.sidebar-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: slide 3s infinite;
}

@keyframes slide {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.sidebar-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sidebar-header h3 {
    color: #e0e0e0;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(230, 126, 34, 0.3); }
    to { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 126, 34, 0.6); }
}

.sidebar-menu {
    list-style: none;
    padding: 2rem 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-link {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
    pointer-events: auto !important; /* Asegurar que los enlaces del sidebar siempre sean clicables */
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
}

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

.sidebar-link:hover::before {
    left: 100%;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #ffffff;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.sidebar-link i {
    font-size: 1.2rem;
    width: 24px;
    color: #a0a0a0;
}

.sidebar-link:hover i,
.sidebar-link.active i {
    color: #ffffff;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discord-btn, .tienda-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.discord-btn {
    background: #7289da;
    color: white;
}

.discord-btn:hover {
    background: #5b6eae;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.tienda-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.tienda-btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}


/* Modal del Servidor */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    animation: modalSlideIn 0.3s ease-out;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    color: #e0e0e0;
    padding: 1.5rem;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close {
    color: #c0c0c0;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.connection-info {
    display: grid;
    gap: 2rem;
}

.info-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.connection-details {
    display: grid;
    gap: 0.5rem;
}

.detail-item {
    color: #ecf0f1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyable {
    cursor: pointer;
    color: #e67e22;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.copyable:hover {
    color: #f39c12;
}

.connection-steps {
    background: rgba(139, 69, 19, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.connection-steps h4 {
    color: #DEB887;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.connection-steps ol {
    color: #ecf0f1;
    padding-left: 1.5rem;
}

.connection-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}




/* Contenido Principal */
.main-content {
    margin-left: 280px;
    transition: margin-left 0.3s ease;
}

body.sidebar-hidden .main-content {
    margin-left: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
}

.minecraft-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Cielo con gradiente azul */
        linear-gradient(180deg, rgba(135, 206, 250, 0.2) 0%, rgba(70, 130, 180, 0.15) 40%, transparent 70%),
        /* Nubes decorativas */
        radial-gradient(ellipse 600px 150px at 25% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 500px 120px at 75% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 550px 140px at 50% 15%, rgba(255, 255, 255, 0.09) 0%, transparent 50%),
        /* Islas flotantes principales */
        radial-gradient(ellipse 500px 100px at 20% 85%, rgba(139, 195, 74, 0.25) 0%, rgba(76, 175, 80, 0.2) 25%, transparent 55%),
        radial-gradient(ellipse 600px 120px at 60% 90%, rgba(139, 195, 74, 0.28) 0%, rgba(76, 175, 80, 0.22) 30%, transparent 60%),
        radial-gradient(ellipse 450px 95px at 85% 88%, rgba(139, 195, 74, 0.23) 0%, rgba(76, 175, 80, 0.18) 28%, transparent 58%),
        /* Sombras de las islas */
        radial-gradient(ellipse 400px 60px at 20% 95%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 500px 70px at 60% 97%, rgba(0, 0, 0, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 350px 55px at 85% 95%, rgba(0, 0, 0, 0.28) 0%, transparent 48%);
    opacity: 1;
    background-attachment: fixed;
    background-size: cover;
    animation: skyblockFloat 40s ease-in-out infinite;
}

@keyframes skyblockFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0);
        filter: brightness(1);
    }
    25% { 
        transform: translateY(-15px) translateX(10px);
        filter: brightness(1.05);
    }
    50% { 
        transform: translateY(10px) translateX(-8px);
        filter: brightness(0.98);
    }
    75% { 
        transform: translateY(-8px) translateX(5px);
        filter: brightness(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 180px;
    height: 180px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(230, 126, 34, 0.2);
    animation: float 6s ease-in-out infinite;
    border: 4px solid rgba(107, 107, 107, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #c0c0c0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    background: linear-gradient(45deg, #3a3a3a, #2a2a2a);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(26, 26, 26, 0.5);
    color: #e0e0e0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(42, 42, 42, 0.6);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-sanctions {
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.btn-sanctions:hover {
    background: linear-gradient(45deg, #3a3a3a, #2a2a2a);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

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

.stat {
    text-align: center;
    background: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(42, 42, 42, 0.7);
}

.stat i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #a0a0a0;
    font-size: 1rem;
    font-weight: 600;
}

/* Separación entre secciones */
section {
    margin-bottom: 80px;
    padding-top: 60px;
    min-height: calc(100vh - 200px);
}

section:last-child {
    margin-bottom: 0;
}

/* Secciones generales */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
}

.section-title i {
    font-size: 2.5rem;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #a0a0a0;
    font-weight: 500;
    margin: 0 auto 2.5rem;
    max-width: 760px;
    line-height: 1.6;
}

.postulaciones .section-title {
    justify-content: center;
    margin-bottom: 1rem;
}

.postulaciones .section-subtitle {
    margin-bottom: 2.5rem;
}

/* Modalidades */
.modalidades {
    padding: 100px 0;
    background: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(15, 15, 15, 0.8) 100%);
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

.modalidades-header {
    text-align: center;
    margin-bottom: 3rem;
}

.modalidades-subtitle {
    color: #a0a0a0;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.modalidad-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    will-change: transform;
}

.modalidad-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modalidad-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.modalidad-card:hover::before {
    left: 100%;
}

.modalidad-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
    background: rgba(42, 42, 42, 0.7);
}

.modalidad-card > * {
    position: relative;
    z-index: 2;
}

.modalidad-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.modalidad-icon i {
    font-size: 2rem;
    color: white;
}

.modalidad-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.modalidad-description {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    min-height: 60px;
}

.modalidad-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(107, 107, 107, 0.3);
    color: #c0c0c0;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(107, 107, 107, 0.4);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #4ecdc4, #45b7aa);
    color: white;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

.status-badge.available {
    background: linear-gradient(45deg, #4ecdc4, #45b7aa);
}

.status-badge i {
    font-size: 1.1rem;
}

.status-badge.updating {
    background: #ff6b6b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.modalidades-note {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6), rgba(26, 26, 26, 0.5));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.modalidades-note-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: #ffffff;
}

.modalidades-note-content h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.modalidades-note-content p {
    color: #ffffff;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
}

/* Reglas Section */
.reglas {
    padding: 100px 0;
    background: 
        rgba(45, 27, 14, 0.6),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paper" width="30" height="30" patternUnits="userSpaceOnUse"><rect width="30" height="30" fill="%23000"/><rect x="0" y="0" width="15" height="15" fill="%232d1b0e"/><rect x="15" y="15" width="15" height="15" fill="%232d1b0e"/></pattern></defs><rect width="100" height="100" fill="url(%23paper)"/></svg>');
    border-top: 3px solid rgba(230, 126, 34, 0.3);
    border-bottom: 3px solid rgba(230, 126, 34, 0.3);
}

.reglas-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reglas-intro {
    margin-bottom: 3rem;
}

.reglas-intro-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6), rgba(26, 26, 26, 0.5));
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.reglas-intro-card h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.reglas-intro-card p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
}

.reglas-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.regla-item {
    background: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.regla-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    background: rgba(42, 42, 42, 0.7);
}

.regla-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.regla-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.regla-item h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.regla-item ul {
    list-style: none;
    padding-left: 0;
}

.regla-item li {
    color: #ffffff;
    margin-bottom: 0.75rem;
    padding-left: 0;
    line-height: 1.8;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.reglas-note {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6), rgba(26, 26, 26, 0.5));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.reglas-note-icon {
    font-size: 3rem;
    line-height: 1;
    color: #ffffff;
}

.reglas-note-content h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.reglas-note-content p {
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* Equipo */
.equipo {
    padding: 100px 0;
    border-top: 3px solid rgba(230, 126, 34, 0.3);
    border-bottom: 3px solid rgba(230, 126, 34, 0.3);
}

.equipo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.equipo-subtitle {
    color: #a0a0a0;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.miembro-card-centered {
    grid-column: 2;
    justify-self: center;
}

@media (max-width: 1024px) {
    .equipo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .miembro-card-centered {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .equipo-grid {
        grid-template-columns: 1fr;
    }
    
    .miembro-card-centered {
        grid-column: 1;
        max-width: 100%;
    }
}

.miembro-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.miembro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 196, 15, 0.1), transparent);
    transition: left 0.6s ease;
}

.miembro-card:hover::before {
    left: 100%;
}

.miembro-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
    background: rgba(42, 42, 42, 0.7);
}

.miembro-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.miembro-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: visible;
    position: relative;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1), 0 0 60px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.miembro-card:hover .miembro-avatar {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.15), 0 0 80px rgba(255, 255, 255, 0.1);
}

.avatar-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.3), transparent);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.miembro-card h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.cargo {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cargo-icon {
    font-size: 1.3rem;
}

.descripcion {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
    min-height: 60px;
}

.miembro-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: rgba(107, 107, 107, 0.3);
    color: #c0c0c0;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(107, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.miembro-card:hover .skill-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.miembro-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

/* Postulaciones Staff */
.postulaciones {
    padding: 100px 0;
    background: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(15, 15, 15, 0.8) 100%);
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

.postulaciones-requisitos {
    margin-bottom: 3rem;
}

.requisitos-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.requisitos-card h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.requisitos-card > p {
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.requisitos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.requisitos-box, .anuncios-box {
    background: rgba(26, 26, 26, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.requisitos-box h4, .anuncios-box h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requisitos-box ul {
    list-style: none;
    padding: 0;
}

.requisitos-box li {
    color: #ffffff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.check-emoji {
    font-size: 1.2rem;
}

.anuncios-box p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.postulaciones-form-section {
    margin-top: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.postulaciones-content {
    display: block;
}

.form-card-wrapper {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.postulaciones-info .info-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.info-card > p {
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.requisitos, .anuncios-info, .tickets-info {
    margin-bottom: 2rem;
}

.requisitos h4, .anuncios-info h4, .tickets-info h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requisitos ul {
    list-style: none;
}

.requisitos li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requisitos li i {
    color: #4ecdc4;
    font-size: 1rem;
}

.anuncios-info p, .tickets-info p {
    color: #ffffff;
    line-height: 1.6;
}

.anuncios-info i, .tickets-info i {
    color: #ffffff;
    margin-right: 0.5rem;
}

.postulaciones-form .form-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-align: left;
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.form-card > p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

/* Estilos del formulario de postulaciones */
.staff-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c0c0c0;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.form-group label i {
    color: #ffffff;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Estilos específicos para el selector de rango */
.rango-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem !important;
}

.rango-select option {
    background: #2d1b0e;
    color: #ffffff;
    padding: 0.5rem;
}

.rango-select:focus {
    border-color: rgba(255, 255, 255, 0.4) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2) !important;
}

.required {
    color: #ff6b6b;
    font-weight: bold;
    margin-left: 0.25rem;
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(42, 42, 42, 0.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.foro-form select option {
    background: #2d1b0e;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.media-link-input {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
        rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.media-link-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1)),
        rgba(0, 0, 0, 0.35);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.staff-form button[type="submit"] {
    width: auto;
    margin: 1.5rem auto 0;
    padding: 12px 32px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Animaciones para las preguntas que aparecen */
.helper-questions,
.builder-questions,
.mod-questions,
.manager-questions,
.developer-questions,
.media-streamer-questions,
.media-youtuber-questions,
.media-tiktoker-questions,
.media-influencer-questions {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
    }
}

/* Mejorar visibilidad del formulario */
.staff-form {
    background: transparent;
    padding: 0;
}

/* Secciones del formulario */
.form-section {
    background: rgba(45, 45, 45, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(107, 107, 107, 0.3);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.form-section:last-of-type {
    margin-bottom: 1rem;
}

.form-section-title {
    font-size: 1.5rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(230, 126, 34, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title i {
    color: #e67e22;
    font-size: 1.3rem;
}

/* Resaltar el selector de rango */
.form-group:first-child {
    background: rgba(61, 61, 61, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(230, 126, 34, 0.3);
    margin-bottom: 2rem;
}

.form-group:first-child label {
    font-size: 1.2rem;
    color: #e67e22;
    text-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

/* Estilos para el modal de confirmación */
.confirm-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirm-message h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.confirm-message p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.confirm-message strong {
    color: #ffffff;
}

/* Tickets Section */
.tickets {
    padding: 100px 0;
    background: 
        rgba(26, 26, 26, 0.6),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamond" width="45" height="45" patternUnits="userSpaceOnUse"><rect width="45" height="45" fill="%23000"/><rect x="0" y="0" width="22.5" height="22.5" fill="%234ecdc4"/><rect x="22.5" y="22.5" width="22.5" height="22.5" fill="%234ecdc4"/><rect x="0" y="22.5" width="22.5" height="22.5" fill="%2333a8a0"/><rect x="22.5" y="0" width="22.5" height="22.5" fill="%2333a8a0"/></pattern></defs><rect width="100" height="100" fill="url(%23diamond)"/></svg>');
    border-top: 3px solid rgba(107, 107, 107, 0.3);
}

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

.tickets-info-card {
    background: rgba(45, 45, 45, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(107, 107, 107, 0.3);
}

.tickets-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.tickets-features {
    display: grid;
    gap: 1.5rem;
}

.ticket-feature {
    background: rgba(45, 45, 45, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(107, 107, 107, 0.2);
}

.ticket-feature h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-feature p {
    color: #ffffff;
    line-height: 1.6;
}

.ticket-feature i {
    color: #ffffff;
}

.tickets-contact-card {
    background: rgba(45, 45, 45, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(107, 107, 107, 0.3);
    text-align: center;
}

.tickets-contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tickets-contact-card p {
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Conectar */
.conectar {
    padding: 100px 0;
    background: rgba(45, 27, 14, 0.5);
}

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

.info-card, .action-card {
    background: rgba(230, 126, 34, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(230, 126, 34, 0.3);
}

.info-card h3, .action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.info-item i {
    font-size: 1.5rem;
    color: #ffffff;
    width: 30px;
}

.copyable {
    cursor: pointer;
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.copyable:hover {
    color: #e0e0e0;
}

.status-online {
    color: #4ecdc4;
    font-weight: 600;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn.discord {
    background: #7289da;
    color: white;
}

.action-btn.discord:hover {
    background: #5b6eae;
    transform: translateY(-2px);
}

.action-btn.tienda {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

.action-btn.tienda:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(230, 126, 34, 0.3);
}

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

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #c0c0c0;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-links h4, .footer-social h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e67e22;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(61, 61, 61, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 107, 107, 0.3);
}

.social-links a:hover {
    background: #e67e22;
    color: #ffffff;
    border-color: #e67e22;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 107, 107, 0.3);
    color: #a0a0a0;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .sidebar-toggle {
        left: 20px;
    }
    
    .postulaciones-content,
    .tickets-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .conectar-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modalidades-grid {
        grid-template-columns: 1fr;
    }
    
    .requisitos-grid {
        grid-template-columns: 1fr;
    }
    
    .reglas-intro-card h3 {
        font-size: 2rem;
    }
    
    .regla-header {
        flex-direction: column;
        text-align: center;
    }
    
    .regla-emoji {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .modalidad-card, .miembro-card, .info-card, .action-card {
        padding: 2rem;
    }
    
    .sidebar {
        width: 100%;
    }
}
/* =======================
   FIX BORDES - SOLO MEDIA
   (quita la caja doble)
   ======================= */

/* 1) Quita COMPLETAMENTE el borde/caja externa del formulario */
#postulaciones-media .form-card-wrapper{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* 2) Quita cualquier borde/caja extra del form si existiera */
#postulaciones-media form.staff-form{
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

/* 3) Deja SOLO una tarjeta bonita en las secciones internas */
#postulaciones-media .form-section{
  background: rgba(26, 26, 26, 0.6) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55) !important;
  border-radius: 18px !important;
}

/* 4) El primer bloque (selector) que NO parezca otra tarjeta */
#postulaciones-media .staff-form .form-group:first-child{
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 1.5rem !important;
}

/* 5) Inputs con borde más fino (para que no “enmarque” todo) */
#postulaciones-media .form-group input[type="text"],
#postulaciones-media .form-group input[type="number"],
#postulaciones-media .form-group select,
#postulaciones-media .form-group textarea{
  border: 1px solid rgba(255,255,255,0.18) !important;
}
/* ===== Postulaciones Media: separar cards + mejorar título Requisitos Generales ===== */

/* 1) Más espacio entre la tarjeta de Requisitos Generales y la de Requisitos por Rango */
#postulaciones-media .postulaciones-requisitos .requisitos-card{
  margin-bottom: 3.5rem; /* sube/baja este valor */
}

/* 2) Título "Requisitos Generales": centrar y agrandar
   (funciona si es h3 o h2 dentro del card) */
#postulaciones-media .postulaciones-requisitos .requisitos-card:first-child h3{
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

/* 3) Si "Requisitos Generales" está como texto suelto (no h3), lo centramos también */
#postulaciones-media .postulaciones-requisitos .requisitos-card:first-child{
  text-align: center;
}

/* Pero mantenemos el contenido interno alineado a la izquierda (listas) */
#postulaciones-media .postulaciones-requisitos .requisitos-card:first-child .requisitos-grid,
#postulaciones-media .postulaciones-requisitos .requisitos-card:first-child .requisitos-box{
  text-align: left;
}

/* 4) Un poquito más de aire arriba del segundo card (Requisitos por Rango) */
#postulaciones-media .postulaciones-requisitos .requisitos-card + .requisitos-card{
  margin-top: 2.5rem;
}
/* Título Requisitos Generales */
.postulaciones-requisitos.requisitos-generales > h3{
    text-align: center;
    font-size: 2.8rem;          /* tamaño grande (ajustable) */
    font-weight: 900;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    /* estilo premium como el resto del sitio */
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

