/* Reset & Core Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #0d1117;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
}

/* Modal Popup Window */
.login-modal {
    width: 100%;
    max-width: 420px;
    background-color: #f7b205; /* Main bright yellow color */
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
}

/* Dark Header with Hero Image Background */
.modal-header {
    height: 240px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)), 
                url('images/sports.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Close Button (X) */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.6);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Header Branding Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.logo-chip {
    font-size: 3rem;
    color: #f7b205;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.brand-top {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
}

.brand-bottom {
    font-size: 1.5rem;
    font-weight: 900;
    color: #f7b205;
    letter-spacing: 2px;
}

/* Curved Header Separator */
.header-curve {
    height: 25px;
    background-color: #f7b205;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

/* Yellow Body Area */
.modal-body {
    padding: 0 25px 20px;
    background-color: #f7b205;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    font-size: 0.95rem;
    outline: none;
    background-color: #ffffff;
    color: #333333;
}

.input-field::placeholder {
    color: #999999;
}

/* Dark Gradient Login Button */
.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to bottom, #3a3a3a 0%, #1a1a1a 100%);
    color: #f7b205;
    border: 1px solid #000;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 4px;
}

/* Text Links */
.account-links {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #222222;
    font-weight: bold;
}

.signup-link {
    color: #0077cc;
    text-decoration: none;
}

.forgot-link {
    display: inline-block;
    margin-top: 8px;
    color: #222222;
    text-decoration: none;
    font-weight: bold;
}

/* 'or' Divider Line */
.or-divider {
    position: relative;
    margin: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.or-divider span {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #333333;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Social Buttons Row */
.social-login-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.google-btn { background-color: #ffffff; color: #ea4335; }
.fb-btn { background-color: #1877f2; color: #ffffff; }
.phone-btn { background-color: #ffcc00; color: #000000; border: 1px solid #000000; }

/* Policy Links */
.policy-links {
    font-size: 0.75rem;
    color: #222222;
    line-height: 1.6;
    font-weight: bold;
}

.policy-links a {
    color: #222222;
    text-decoration: underline;
}

/* Dark Yellow Footer */
.dark-footer {
    background-color: #a87900;
    padding: 15px;
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-socials a {
    color: #f7b205;
    background-color: rgba(0,0,0,0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-email {
    font-size: 0.8rem;
    color: #f7b205;
    text-decoration: underline;
}

/* Floating Chat Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 15px;
    background-color: #0088cc;
    color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 999;
    text-decoration: none;
}