/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1E3C72, #2A5298);
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Intro Section */
#intro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 450px;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Enter Button */
#enterBtn {
    background: linear-gradient(90deg, #FFD700, #FF8C00);
    color: black;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

#enterBtn:hover {
    background: linear-gradient(90deg, #FF8C00, #FFD700);
    transform: scale(1.05);
}

/* Social Media Buttons */
.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: white;
    font-size: 20px;
    text-align: center;
    margin: 5px;
    transition: all 0.3s ease-in-out;
}

.social-links a:hover {
    background: white;
    color: #2A5298;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #intro {
        width: 95%;
    }
}