* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('cell-fondo-scaled.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.9);  /* Darker overlay for better contrast */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.content {
    max-width: 800px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffbb33;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  /* Added shadow for better readability */
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2ea3f2;  /* Changed to blue for better contrast */
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);  /* Added shadow for better readability */
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);  /* Added shadow for better readability */
    font-weight: 400;  /* Slightly bolder for better visibility */
    line-height: 1.6;  /* Improved line height for better readability */
}

.divider {
    width: 100px;
    height: 4px;
    background: #2ea3f2;
    margin: 2rem auto;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0e7490;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

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

.social-btn {
    padding: 0.8rem 1.5rem;
    background: #0e7490;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #2ea3f2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: column;
    }
}