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

html, body {
    height: 100vh;
    overflow: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    -webkit-tap-highlight-color: transparent; /* Remove highlight color for touch devices */
    user-select: none; /* Prevent text selection */
}

.login-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 0;
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle {
    width: 150px;
    height: 150px;
    background-color: #0d1b2a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-image {
    width: 117%;
    height: auto;
    max-width: 150px;
    object-fit: contain;
}

.logo-text {
    font-size: 48px;
    font-weight: bold;
    color: white;
    line-height: 1;
    letter-spacing: 1px;
}

.logo-fancy {
    font-family: 'Dancing Script', cursive;
}

.logo-normal {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    background: linear-gradient(135deg, #4caf50, #81c784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ind-tag {
    background-color: #ffc107;
    color: #0d1b2a;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* Login Form */
.login-form {
    width: 100%;
}

.error-message {
    background-color: #f44336;
    color: white;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: white;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0d1b2a;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background-color: #0d1b2a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #1a2a3a;
}

/* Bottom Section */
.bottom-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

/* Indian Casino Banner */
.indian-casino-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.indian-casino-banner img {
    max-width: 60%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Betfair Section */
.betfair-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.betfair-section img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

/* Regulatory Section */
.regulatory-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px 0;
    border-top: 1px solid #ddd;
}

.regulatory-section img {
    height: 15px;
    width: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-circle {
        width: 120px;
        height: 120px;
    }

    .logo-text {
        font-size: 38px;
    }

    .ind-tag {
        font-size: 10px;
        padding: 3px 10px;
    }

    .betfair-section {
        gap: 10px;
    }

    .regulatory-section {
        gap: 10px;
    }

    .regulatory-section img {
        height: 12px;
    }
}

@media (max-width: 480px) {
    html, body {
        height: 100vh;
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .login-container {
        gap: 30px;
        max-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 32px;
    }

    .ind-tag {
        font-size: 9px;
        padding: 2px 8px;
        margin-top: 5px;
    }

    .indian-casino-banner {
        padding: 12px 15px;
    }

    .banner-left,
    .banner-right {
        font-size: 16px;
    }

    .slot-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .betfair-section {
        gap: 8px;
    }

    .betfair-section img {
        height: 15px;
    }

    .regulatory-section {
        gap: 8px;
    }

    .regulatory-section img {
        height: 10px;
    }
}

