/* Prevent Horizontal Scroll */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; /* Prevents horizontal scroll */
}

/* Main Container: Center Everything */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    justify-content: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    min-height: auto;
}

/* Logo */
.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Import Bebas Neue Font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Motto Styling - Bebas Neue */
.motto {
    font-size: 18px;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -20px;
    opacity: 0.9;
}

.sub-motto {
    font-size: 14px;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 1px;
    margin-top: -13px;
}

/* Signup Box */
/* Signup Box - Balanced Spacing */
.signup-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 20px 25px 20px; /* Adjusted bottom padding */
    border-radius: 10px;
    text-align: center;
    width: 350px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Social Links - Reduced Bottom Margin */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px; /* Reduced spacing between social buttons & end of box */
}


/* Google Sign-Up Button */
/* Google Sign-Up Button - Centered and Larger */
.g_id_signin {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ensures it stays centered */
}

.g_id_signin iframe {
    transform: scale(1.1); /* Slightly larger button */
}


/* Social Icons - Moved Inside Signup Box */
.signup-box .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

/* Social Buttons - White Border and White Text */
.social-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.8); /* White/Grey Border */
    background: transparent; /* No Background */
    color: rgba(255, 255, 255, 0.8); /* White Text */
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/* Ensure Only X Icon is White */
.social-button.x img {
    filter: invert(1); /* X icon becomes white */
    width: 25px;
    height: 25px;
}

/* YouTube Icon Stays Normal */
.social-button.youtube img {
    filter: none; /* Prevents inversion */
    width: 25px;
    height: 25px;
}

/* Hover Effect */
.social-button:hover {
    border-color: rgba(255, 255, 255, 1); /* Bright White Border on Hover */
    transform: scale(1.05);
}

/* Footer Stays at the Bottom */
footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 30px;
} 

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        width: 100%;
        padding: 15px;
    }

    .logo {
        max-width: 250px;
    }

    .motto {
        font-size: 16px;
    }

    .sub-motto {
        font-size: 12px;
    }

    .signup-box {
        width: 90%;
    }

    footer {
        font-size: 12px;
    }
}
