/* Modern Professional Registration Page Styles */

/* Hero Section Modern Styles */
.hero-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.element {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: -5s;
}

.element-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.element-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: -15s;
}

.element-5 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 50%;
    animation-delay: -7s;
}

.element-6 {
    width: 90px;
    height: 90px;
    top: 40%;
    right: 30%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.7;
    }
}

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

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(26, 26, 46, 0.6) 25%,
        rgba(22, 33, 62, 0.5) 50%,
        rgba(15, 52, 96, 0.6) 75%,
        rgba(83, 52, 131, 0.4) 100%
    );
    z-index: 2;
}

/* Modern Welcome Badge */
.welcome-badge-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: badgeGlow 3s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
    100% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2); }
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #ff6b35, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.welcome-text-modern {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #00ffff, #ff0080);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

/* Modern Main Title */
.main-logo-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-title-modern {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ff6b35, #00ffff, #ff0080);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.x-symbol-modern {
    display: inline-block;
    font-size: 0.8em;
    margin: 0 0.2em;
    color: #ff6b35;
    animation: symbolPulse 2s ease-in-out infinite;
}

@keyframes symbolPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.logo-tagline-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.tagline-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tagline-separator {
    color: #ff6b35;
    font-weight: 700;
}

/* Modern Registration Steps */
.registration-steps-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.step-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-line {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
}

.progress-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, #ff6b35, #00ffff);
    border-radius: 1px;
    transition: width 0.5s ease;
}

.step-card-modern {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    min-width: 160px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.step-card-modern.active {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.step-icon {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.step-card-modern h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.step-card-modern p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.step-status {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #00ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #000;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.step-card-modern.completed .step-status {
    opacity: 1;
    transform: scale(1);
}

/* Modern Form Container */
.gaming-form-container-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.gaming-form-container-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, #00ffff, #ff0080, transparent);
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Modern Form Header */
.form-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title-section {
    flex: 1;
}

.form-main-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-main-title i {
    color: #ff6b35;
    font-size: 1.5rem;
}

.form-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.form-security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 0, 0.05));
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ff00;
}

.form-security-badge i {
    font-size: 0.8rem;
}

/* Form Progress Indicator */
.form-progress-indicator {
    margin-bottom: 2rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.progress-step.active .step-dot {
    background: #ff6b35;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.step-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-step.active .step-label {
    color: #ff6b35;
}

/* Modern Form Sections */
.form-section-modern {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.form-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.form-section-modern:hover::before {
    left: 100%;
}

/* Modern Section Headers */
.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-icon {
    font-size: 1.5rem;
    color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-text h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-text p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.section-badge {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 0.3rem 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Tournament Cards */
.tournament-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tournament-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tournament-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tournament-card-modern.selected {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.tournament-card-modern.featured {
    border-color: rgba(255, 215, 0, 0.5);
}

.tournament-card-modern.premium {
    border-color: rgba(138, 43, 226, 0.5);
}

.tournament-card-modern.elite {
    border-color: rgba(255, 20, 147, 0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 0 1.5rem;
    margin-bottom: 1rem;
}

.tournament-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tournament-badge.popular {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
}

.tournament-badge.premium {
    background: linear-gradient(45deg, #8a2be2, #9370db);
    color: #fff;
}

.tournament-badge.elite {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: #fff;
}

.tournament-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff6b35;
}

.card-content {
    padding: 0 1.5rem 1rem 1.5rem;
}

.card-content h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tournament-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
}

.currency {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.period {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.tournament-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature i {
    width: 16px;
    color: #00ffff;
    font-size: 0.9rem;
}

.card-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.participants {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.participants i {
    color: #ff6b35;
    font-size: 0.8rem;
}

/* Modern Form Groups */
.form-group-modern {
    margin-bottom: 2rem;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.label-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-required {
    color: #ff4444;
    font-weight: 700;
}

.input-container-modern {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-modern {
    position: absolute;
    left: 15px;
    z-index: 3;
    color: rgba(255, 107, 53, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-control-modern {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 255, 255, 0.05));
}

.form-control-modern:focus + .input-status {
    opacity: 1;
    transform: scale(1);
}

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

.input-status {
    position: absolute;
    right: 50px;
    color: #00ff00;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.char-counter-modern {
    position: absolute;
    right: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.input-help-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.input-help-modern i {
    font-size: 0.8rem;
    color: #00ffff;
}

/* Modern Player Cards */
.players-section-modern {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.player-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.player-card-modern::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: left 0.6s ease;
}

.player-card-modern:hover::before {
    left: 100%;
}

.player-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.captain-card {
    border-color: rgba(255, 215, 0, 0.4);
}

.assault-card {
    border-color: rgba(255, 69, 0, 0.4);
}

.sniper-card {
    border-color: rgba(0, 255, 0, 0.4);
}

.support-card {
    border-color: rgba(0, 191, 255, 0.4);
}

.player-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-role {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.role-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid;
}

.role-icon.captain {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-color: #ffd700;
    color: #ffd700;
}

.role-icon.assault {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(255, 69, 0, 0.1));
    border-color: #ff4500;
    color: #ff4500;
}

.role-icon.sniper {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 255, 0, 0.1));
    border-color: #00ff00;
    color: #00ff00;
}

.role-icon.support {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(0, 191, 255, 0.1));
    border-color: #00bfff;
    color: #00bfff;
}

.role-info h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-badge.captain {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
}

.role-badge.assault {
    background: linear-gradient(45deg, #ff4500, #ff6347);
    color: #fff;
}

.role-badge.sniper {
    background: linear-gradient(45deg, #00ff00, #32cd32);
    color: #000;
}

.role-badge.support {
    background: linear-gradient(45deg, #00bfff, #87ceeb);
    color: #000;
}

.player-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.player-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Selection Toggle Buttons */
.selection-toggle {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.3rem;
    backdrop-filter: blur(10px);
}

.toggle-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: none;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toggle-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.toggle-btn.active {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.toggle-btn i {
    font-size: 0.8rem;
}

/* Tournament Dropdown Styles */
.tournament-dropdown-container {
    margin-bottom: 2rem;
}

.select-modern {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding-right: 50px;
    cursor: pointer;
}

.select-modern:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.3);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    pointer-events: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.input-container-modern:hover .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select-modern:focus + .select-arrow {
    color: #ff8c42;
    transform: translateY(-50%) rotate(180deg);
}

.select-modern option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

.select-modern option:hover {
    background: #ff6b35;
}

/* Modern Tournament Cards - Horizontal Layout */
.tournament-cards-modern {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.tournament-cards-modern::-webkit-scrollbar {
    height: 6px;
}

.tournament-cards-modern::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.tournament-cards-modern::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff6b35, #00ffff);
    border-radius: 3px;
}

.tournament-cards-modern::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff8c42, #33ffff);
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-steps-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-progress-bar {
        display: none;
    }
    
    .gaming-form-container-modern {
        padding: 2rem;
    }
    
    .form-header-modern {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .tournament-cards-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tagline-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .player-form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .player-card-modern {
        padding: 1.5rem;
    }
    
    .section-header-modern {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .gaming-form-container-modern {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .form-section-modern {
        padding: 1.5rem;
    }
    
    .section-header-modern {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .brand-title-modern {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .logo-tagline-modern {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .player-card-modern {
        padding: 1.2rem;
    }
    
    .player-header-modern {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .role-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .player-number {
        font-size: 1.5rem;
    }
}
