body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-image: url('background.png');
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.header .logo img {
    max-height: 50px;
}

.actions a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.actions a:hover {
    background-color: #fff;
    color: #000;
}

.content {
    flex: 1; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px; 
    padding: 20px;
}

.content .logo img {
    max-width: 150px;
    margin-bottom: 10px;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
}

.content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 10px 0 30px;
}

.content .cta {
    padding: 15px 30px;
    background: linear-gradient(80deg, #330d69, #30c9cd);
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8); 
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer .social-icons a svg {
    width: 30px;
    height: 30px;
    fill: white;
    transition: transform 0.3s, fill 0.3s;
}

.footer .social-icons a:hover svg {
    transform: scale(1.2);
    fill: #9ff442;
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #f4901f;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.modal-content .logo img {
    max-width: 100px;
    margin-bottom: 20px;
}

.modal-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-content .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.modal-content .social-icons a img {
    max-width: 30px;
}


@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 10px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .footer .social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .modal-content {
        width: 95%;
    }
}
