/* Gaming Authentication Styles */
:root {
    /* Gaming Color Palette */
    --gaming-primary: #ff6b35;
    --gaming-secondary: #004e89;
    --gaming-accent: #ffd23f;
    --gaming-dark: #1a1a2e;
    --gaming-darker: #16213e;
    --gaming-light: #eee;
    --gaming-white: #ffffff;
    --gaming-gray: #6c757d;
    --gaming-success: #4caf50;
    --gaming-warning: #ff9800;
    --gaming-error: #f44336;
    --gaming-info: #2196f3;
    
    /* Gaming Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #004e89 0%, #1976d2 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #ffd23f 0%, #ffab00 100%);
    --gradient-gaming: linear-gradient(135deg, #ff6b35 0%, #004e89 50%, #ffd23f 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-hard: 0 15px 50px rgba(0, 0, 0, 0.2);
    --shadow-gaming: 0 10px 40px rgba(255, 107, 53, 0.3);
    
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-gaming: 'Orbitron', monospace;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--gaming-white);
    overflow-x: hidden;
}

/* Auth Body */
.auth-body {
    min-height: 100vh;
    position: relative;
    background: var(--gradient-dark);
}

.register-body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #1a1a2e 100%);
}

/* Background Animation */
.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--gaming-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: 2s;
    background: var(--gaming-primary);
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 60%;
    animation-delay: 1s;
    background: var(--gaming-secondary);
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    left: 90%;
    animation-delay: 5s;
    background: var(--gaming-primary);
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 45%;
    animation-delay: 6s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 75%;
    animation-delay: 7s;
    background: var(--gaming-accent);
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10vh) translateX(20px);
        opacity: 1;
    }
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(1px);
}

/* Navigation */
.auth-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gaming-white);
    font-family: var(--font-family-gaming);
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition-medium);
}

.brand-link:hover {
    color: var(--gaming-primary);
    text-decoration: none;
}

.brand-link i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gaming-light);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--gaming-primary);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Main Content */
.auth-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 20px;
}

.auth-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - 120px);
    max-height: calc(100vh - 120px);
}

/* Branding Section */
.auth-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.branding-content {
    max-width: 450px;
    text-align: center;
}

.brand-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s ease-in-out infinite alternate;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-gaming);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.brand-logo i {
    font-size: 3rem;
    color: var(--gaming-white);
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-family: var(--font-family-gaming);
}

.brand-subtitle {
    font-size: 1rem;
    color: var(--gaming-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition-medium);
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
}

.feature-item i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item span {
    font-weight: 600;
    color: var(--gaming-white);
}

.stats-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-family-gaming);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gaming-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Form Section */
.auth-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 2rem;
    box-shadow: var(--shadow-hard);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gaming-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-family-gaming);
}

.form-title i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    color: var(--gaming-gray);
    font-size: 1rem;
}

/* Alert */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
    color: #ffcdd2;
}

.alert i {
    margin-top: 0.2rem;
    color: var(--gaming-error);
}

.alert-content p {
    margin: 0;
}

/* Form Styles */
.auth-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    width: 100%;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gaming-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--gaming-primary);
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--gaming-white);
    font-size: 1rem;
    transition: var(--transition-medium);
    outline: none;
    font-family: var(--font-family-primary);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-color: var(--gaming-primary);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.form-input.error {
    border-color: var(--gaming-error);
    background: rgba(244, 67, 54, 0.1);
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-medium);
    transform: translateX(-50%);
}

.form-input:focus + .password-toggle + .input-focus-border,
.form-input:focus + .input-focus-border {
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gaming-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

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

.password-toggle.active {
    color: var(--gaming-primary);
}

.form-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gaming-error);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Password Strength */
.password-strength {
    margin-top: 0.75rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: var(--transition-medium);
    border-radius: 2px;
}

.strength-fill.weak {
    width: 25%;
    background: var(--gaming-error);
}

.strength-fill.fair {
    width: 50%;
    background: var(--gaming-warning);
}

.strength-fill.good {
    width: 75%;
    background: var(--gaming-info);
}

.strength-fill.strong {
    width: 100%;
    background: var(--gaming-success);
}

.strength-text {
    font-size: 0.8rem;
    color: var(--gaming-gray);
}

/* Password Match */
.password-match {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--gaming-success);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.password-match.show {
    display: flex;
}

/* Form Options */
.form-options {
    margin: 2rem 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    position: relative;
    transition: var(--transition-medium);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-label .checkbox-custom {
    background: var(--gaming-primary);
    border-color: var(--gaming-primary);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-label .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: var(--gaming-light);
}

.terms-link {
    color: var(--gaming-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.terms-link:hover {
    color: var(--gaming-accent);
    text-decoration: underline;
}

.forgot-link {
    color: var(--gaming-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.forgot-link:hover {
    color: var(--gaming-accent);
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: var(--gaming-white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gaming);
    margin: 1rem 0;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit.loading .btn-content {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition-medium);
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-medium);
}

.loader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Footer */
.form-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-switch {
    color: var(--gaming-gray);
    margin: 0;
}

.switch-link {
    color: var(--gaming-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-medium);
}

.switch-link:hover {
    color: var(--gaming-accent);
    text-decoration: none;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .auth-grid {
        gap: 2rem;
    }
    
    .form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 968px) {
    .auth-main {
        padding: 60px 0 10px;
    }
    
    .auth-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: calc(100vh - 80px);
        max-height: none;
    }
    
    .auth-branding {
        order: 2;
        padding: 0.5rem;
    }
    
    .auth-form-section {
        order: 1;
    }
    
    .branding-content {
        max-width: 400px;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    
    .brand-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .brand-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stats-showcase {
        gap: 2rem;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .auth-container {
        padding: 0 1rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .brand-link {
        font-size: 1.25rem;
    }
    
    .brand-link i {
        font-size: 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row.two-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .auth-main {
        padding: 100px 0 20px;
    }
    
    .form-container {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .brand-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .brand-logo i {
        font-size: 2rem;
    }
    
    .brand-title {
        font-size: 1.75rem;
    }
    
    .brand-subtitle {
        font-size: 1rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Loading Animation */
.auth-body.loading {
    overflow: hidden;
}

.auth-body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.5s ease 1s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Focus Indicators */
.form-input:focus,
.checkbox-wrapper input[type="checkbox"]:focus + .checkbox-label .checkbox-custom,
.btn-submit:focus {
    outline: 2px solid var(--gaming-primary);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --gaming-primary: #ff8c00;
        --gaming-secondary: #0066cc;
        --gaming-white: #ffffff;
        --gaming-dark: #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Email Verification Styles */
.verification-content {
    text-align: center;
    margin: 2rem 0;
}

.verification-icon {
    font-size: 4rem;
    color: var(--gaming-primary);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.verification-text h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.verification-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.verification-text strong {
    color: var(--gaming-primary);
}

.verification-steps {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gaming-primary), var(--gaming-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.step-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.85rem;
}

.btn-resend {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    margin-bottom: 1.5rem;
}

.btn-resend:hover {
    background: linear-gradient(135deg, #ff7849, #ffa332);
    transform: translateY(-2px);
}

.verification-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.option-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.option-item i {
    color: var(--gaming-accent);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.option-item strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.option-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.85rem;
}

.option-item .link {
    color: var(--gaming-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.option-item .link:hover {
    color: var(--gaming-secondary);
    text-decoration: underline;
}

/* Forgot Password Styles */
.forgot-content {
    text-align: center;
    margin: 2rem 0;
}

.forgot-icon {
    font-size: 4rem;
    color: var(--gaming-accent);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.forgot-text h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.forgot-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.forgot-instructions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.forgot-instructions h4 {
    color: var(--gaming-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.forgot-instructions ol {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
}

.forgot-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.reset-form .form-group {
    margin-bottom: 1.5rem;
}

.btn-reset {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    margin-bottom: 1.5rem;
}

.btn-reset:hover {
    background: linear-gradient(135deg, #ff7849, #ffa332);
    transform: translateY(-2px);
}

/* Mobile Responsive for Verification */
@media (max-width: 768px) {
    .verification-steps {
        gap: 1rem;
    }
    
    .step-item {
        padding: 0.75rem;
    }
    
    .verification-options {
        gap: 0.75rem;
    }
    
    .option-item {
        padding: 0.75rem;
    }
    
    .forgot-instructions {
        padding: 1rem;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Social Login Styles */
.social-login-section {
    margin-top: 1rem;
}

.divider {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gaming-gray), transparent);
    opacity: 0.3;
}

.divider-text {
    position: relative;
    background: var(--gaming-dark);
    padding: 0 1rem;
    color: var(--gaming-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

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

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gaming-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-social:hover {
    color: var(--gaming-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-medium);
}

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

.btn-google {
    border-color: rgba(219, 68, 55, 0.3);
}

.btn-google:hover {
    background: rgba(219, 68, 55, 0.1);
    border-color: rgba(219, 68, 55, 0.5);
}

.btn-facebook {
    border-color: rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.5);
}

.btn-social i {
    font-size: 1.2rem;
}

/* Mobile Responsive for Social Buttons */
@media (max-width: 768px) {
    .social-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-social {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
}
