/* Registration Page Specific Styles */

.registration-main {
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    background: linear-gradient(135deg, #0a1a0a 0%, #000000 50%, #0a1a0a 100%);
}

.registration-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 30px;
    align-items: start;
}

/* Left Side - Character Showcase */
.registration-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.character-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-character {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.character-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.warrior-showcase::before {
    content: '⚔️';
    z-index: 1;
    position: relative;
}

.mage-showcase::before {
    content: '🧙';
    z-index: 1;
    position: relative;
}

.registration-info {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.info-title {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list li {
    color: #ffffff;
    font-size: 14px;
    padding-left: 10px;
    line-height: 1.6;
}

.info-list li::marker {
    color: #00ff00;
}

/* Center - Registration Form */
.registration-center {
    display: flex;
    justify-content: center;
}

.registration-card {
    width: 100%;
    max-width: 700px;
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.registration-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.card-title {
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 36px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-subtitle {
    color: #cccccc;
    font-size: 14px;
}

/* Registration Form */
.registration-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: #d4af37;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-icon {
    font-size: 16px;
}

.required {
    color: #ff0000;
    margin-left: 3px;
}

.form-input {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    background: rgba(0, 0, 0, 0.8);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #ff4444;
}

.form-input:valid:not(:placeholder-shown) {
    border-color: #00ff00;
}

.input-hint {
    color: #888888;
    font-size: 11px;
    margin-top: -5px;
}

/* Password Strength Indicator */
.password-strength {
    height: 4px;
    margin-top: 5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.password-strength::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: #ff4444;
    transition: all 0.3s ease;
}

.password-strength.weak::after {
    width: 33%;
    background: #ff4444;
}

.password-strength.medium::after {
    width: 66%;
    background: #ffaa00;
}

.password-strength.strong::after {
    width: 100%;
    background: #00ff00;
}

.password-match,
.pin-match {
    font-size: 11px;
    margin-top: 5px;
    font-weight: bold;
}

.password-match.match,
.pin-match.match {
    color: #00ff00;
}

.password-match.no-match,
.pin-match.no-match {
    color: #ff4444;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #00ff00;
}

.checkbox-label {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.link-terms {
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-terms:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* reCAPTCHA Container */
.recaptcha-container {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
}

.recaptcha-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.recaptcha-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00ff00;
}

.recaptcha-checkbox label {
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
}

.recaptcha-footer {
    font-size: 11px;
    color: #cccccc;
    margin-top: 10px;
}

.recaptcha-logo {
    color: #00ff00;
    font-weight: bold;
    margin-top: 5px;
}

/* Register Button */
.register-btn {
    width: 100%;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    border: 3px solid #d4af37;
    border-radius: 10px;
    padding: 18px 30px;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.register-btn:hover::before {
    width: 300px;
    height: 300px;
}

.register-btn:hover {
    background: linear-gradient(135deg, #00cc00 0%, #00aa00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
}

.register-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 20px;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-text {
    color: #cccccc;
    font-size: 14px;
}

.footer-link {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Right Side - Features */
.registration-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.features-panel {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.features-title {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-content p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
}

.stats-panel {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.stats-title {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.stat-box {
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-box:last-child {
    margin-bottom: 0;
}

.stat-number {
    color: #00ff00;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.stat-label {
    color: #cccccc;
    font-size: 12px;
}

/* Active Nav Link */
.nav-link.active {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .registration-container {
        grid-template-columns: 1fr;
    }
    
    .registration-left,
    .registration-right {
        display: none;
    }
    
    .registration-center {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .registration-card {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .card-title {
        font-size: 24px;
    }
}


