* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: url('../img/cursor.png'), auto;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative; /* Ya no absoluta */
    text-align: center;
    z-index: 2;
}

.logo {
    width: 600px;
    height: auto;
    margin-bottom: -35px;
}

.subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.servers-container {
    display: flex;
    gap: 40px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.server-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.server-card:hover {
    transform: translateY(-10px);
}

.server-title {
    color: #00ccff;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.server-info {
    color: #fff;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.info-label {
    color: #ffffff;
    font-weight: 400;
}

.info-value {
    color: #e0e0e0;
    font-weight: 500;
}

.status-online {
    color: #00ff00;
    font-weight: bold;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: url('../img/cursor-get.png'), pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    letter-spacing: 0.3px;
}

.btn:hover {
    cursor: url('../img/cursor-get.png'), pointer;
}

.btn:active {
    cursor: url('../img/cursor-get.png'), pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2a4d6b, #1e3a52);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a5d7b, #2e4a62);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 77, 107, 0.4);
}

.btn-discord {
    background: linear-gradient(135deg, #4a5568, #2d3748);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #5a6578, #3d4758);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 85, 104, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #4a6741, #2d4025);
}

.social-widgets {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-widget {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    cursor: url('../img/cursor-get.png'), pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    cursor: url('../img/cursor-get.png'), pointer;
}

.widget-facebook {
    background: linear-gradient(135deg, #1877f2, #166fe5);
}

.widget-facebook:hover {
    background: linear-gradient(135deg, #2885ff, #1877f2);
}

.widget-tiktok {
    background: linear-gradient(135deg, #000000, #25292e);
}

.widget-tiktok:hover {
    background: linear-gradient(135deg, #25292e, #000000);
}

.widget-instagram {
    background: linear-gradient(135deg, #E4405F, #833AB4, #F77737);
}

.widget-instagram:hover {
    background: linear-gradient(135deg, #F77737, #E4405F, #833AB4);
}

/* Cursor personalizado para elementos interactivos */
a, button, .clickable {
    cursor: url('../img/cursor-get.png'), pointer;
}

/* Asegurar que todos los elementos clicables tengan el cursor de selección */
a:hover, button:hover, .clickable:hover {
    cursor: url('../img/cursor-get.png'), pointer;
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }
    
    .container {
        justify-content: flex-start;
        padding: 10px;
    }
    
    .logo-container {
        position: relative;
        top: 20px;
        left: auto;
        transform: none;
        margin-bottom: 40px;
    }
    
    .servers-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
        padding-bottom: 30px;
    }
    
    .server-card {
        width: 95%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .logo {
        width: 250px;
    }
    
    .social-widgets {
        left: 10px;
        gap: 10px;
    }
    
    .social-widget {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}