/* Adventure Theme Variables */
:root {
    --parchment-color: #f4d03f;
    --wood-dark: #5D4037;
    --wood-light: #795548;
    --gold: #FFD700;
    --adventure-border: 8px solid #8B4513;
}

/* Hide Google Maps UI Elements */
.gm-style-cc,
.gmnoprint,
.gm-style a[href^="https://maps.google.com/maps"],
.gm-style a[target="_blank"],
.gm-style-moc,
.gm-control-active,
.gm-svpc,
.gm-ui-hover-effect,
.gm-style > div:last-child {
    display: none !important;
}

/* Hide Google logo and terms */
.gm-style > div:first-child > div:nth-child(1):not([style*="background-color"]) {
    visibility: hidden !important;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 1.5rem;
    text-align: center;
}

/* Game Title */
.game-title h1 {
    font-family: 'Pirata One', cursive;
    font-size: 3.5rem;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8),
                 0 4px 4px rgba(139, 69, 19, 0.6);
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1) rotate(-2deg);
    }
    50% {
        transform: scale(1.1) rotate(2deg);
    }
}

.subtitle {
    font-family: 'MedievalSharp', cursive;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--gold);
    font-family: 'MedievalSharp', cursive;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
    color: white;
    font-family: 'MedievalSharp', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--parchment-color);
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.3);
}

/* Remember Me Checkbox */
.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-family: 'MedievalSharp', cursive;
    font-size: 0.9rem;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
}

/* Adventure Button Style */
.adventure-btn {
    font-family: 'MedievalSharp', cursive;
    padding: 12px 25px;
    font-size: 1.2rem;
    border: 4px solid var(--gold);
    background: var(--wood-dark);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    width: 100%;
}

.adventure-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    transition: 0.5s;
}

.adventure-btn:hover::before {
    left: 100%;
}

.adventure-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: var(--wood-light);
}

.primary-btn {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-color: var(--gold);
}

.primary-btn:hover {
    background: linear-gradient(45deg, #A0522D, #CD853F);
}

/* SSO Section */
.sso-divider {
    text-align: center;
    margin: 1rem 0;
}

.sso-divider span {
    color: var(--gold);
    font-family: 'MedievalSharp', cursive;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.sso-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sso-btn {
    flex: 1;
    font-size: 1rem;
    padding: 10px;
}

/* Links */
.links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.adventure-link {
    color: var(--gold);
    text-decoration: none;
    font-family: 'MedievalSharp', cursive;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.adventure-link:hover {
    color: var(--parchment-color);
    text-shadow: 0 0 5px rgba(244, 208, 63, 0.5);
}

/* Responsive Design */
@media (max-width: 480px) {
    .game-title h1 {
        font-size: 2.8rem;
    }

    .sso-buttons {
        flex-direction: column;
    }

    .links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
} 