:root {
    --primary-gold: #fbbf24;
    --primary-gold-dark: #f59e0b;
    --primary-rose: #f472b6;
    --glass-bg: rgba(15, 23, 42, 0.7);
    --border-glow: rgba(255, 255, 255, 0.1);
}

.claim-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 30% 40%, #0f172a, #020617);
    position: relative;
    overflow: hidden;
    margin-top: -6rem; /* Adjust for navbar */
    padding: 6rem 1rem 4rem;
}

/* Animated Background Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-gold), transparent);
    top: -150px;
    left: -150px;
    animation: float1 20s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-rose), transparent);
    bottom: -200px;
    right: -200px;
    animation: float2 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: 40%;
    right: 10%;
    animation: float3 18s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -20px) rotate(-5deg); }
    66% { transform: translate(20px, 30px) rotate(3deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -10px) scale(1.05); }
}

/* Premium Card */
.claim-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glow);
    width: 100%;
    max-width: 560px;
    padding: 2.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo Wrapper */
.logo-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #facc15, #9333ea);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(251, 191, 36, 0.3);
}

.logo-wrapper svg {
    width: 35px;
    height: 35px;
    color: var(--text-heading);
}

/* Form Styling */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #cbd5e1; /* Bright label color */
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

/* Inputs */
.input-wrapper {
    position: relative;
}

.input-field {
    width: 100%;
    background: rgba(2, 6, 23, 0.6);
    border: 1.5px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(2, 6, 23, 0.8);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

/* Password Toggle */
.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-subtle);
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: var(--primary-gold);
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 1.75rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-glow);
}

.divider span {
    position: relative;
    background: var(--text-heading);
    padding: 0 1rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-subtle);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--text-heading);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(251, 191, 36, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(251, 191, 36, 0.4);
}

/* Alert Messages */
.alert-message {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fca5a5;
    font-size: 0.85rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #86efac;
}

/* Grid for Desktop */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Footer Links - HIGHER VISIBILITY */
.footer-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glow);
    text-align: center;
}

.footer-link-text {
    color: #cbd5e1; /* Bright gray for better visibility */
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.footer-link-text a {
    color: #60a5fa; /* Vibrant blue for links */
    font-weight: 700;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link-text a:hover {
    color: var(--primary-gold);
}

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-subtle); /* Brighter gray */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 0.5rem;
}

.back-link:hover {
    color: white;
    transform: translateX(-4px);
}

@media (max-width: 560px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
