/* ===================== RESET & BASE ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0f;
    color: #e8e8e8;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===================== BACKGROUND ANIMATION ===================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 45, 85, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 150, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0f 0%, #0d0d1a 30%, #0a0a12 70%, #050508 100%);
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 45, 85, 0.6);
    border-radius: 50%;
    animation: float 20s infinite linear;
    box-shadow: 0 0 10px rgba(255, 45, 85, 0.4);
}

.particle:nth-child(1) { left: 10%; top: 100%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 30%; top: 100%; animation-delay: 3s; animation-duration: 22s; background: rgba(0, 150, 255, 0.5); box-shadow: 0 0 10px rgba(0, 150, 255, 0.3); }
.particle:nth-child(3) { left: 50%; top: 100%; animation-delay: 7s; animation-duration: 16s; background: rgba(255, 140, 0, 0.5); box-shadow: 0 0 10px rgba(255, 140, 0, 0.3); }
.particle:nth-child(4) { left: 70%; top: 100%; animation-delay: 11s; animation-duration: 20s; }
.particle:nth-child(5) { left: 90%; top: 100%; animation-delay: 15s; animation-duration: 24s; background: rgba(0, 150, 255, 0.5); box-shadow: 0 0 10px rgba(0, 150, 255, 0.3); }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateY(-120vh) rotate(1080deg); opacity: 0; }
}

.bg-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 45, 85, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 45, 85, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ===================== TOP NAVIGATION ===================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 45, 85, 0.15);
    padding: 14px 0;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 26px;
    color: #ff2d55;
    filter: drop-shadow(0 0 8px rgba(255, 45, 85, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: #ff2d55;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 45, 85, 0.4);
}

.logo-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #0096ff;
    letter-spacing: 3px;
}

.nav-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-nav-outline {
    padding: 9px 18px;
    border: 1.5px solid rgba(255, 45, 85, 0.6);
    border-radius: 25px;
    color: #ff2d55;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

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

.btn-nav-outline:hover {
    background: rgba(255, 45, 85, 0.1);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.3), inset 0 0 10px rgba(255, 45, 85, 0.1);
    border-color: #ff2d55;
    transform: translateY(-1px);
}

.btn-nav-primary {
    padding: 9px 18px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    border: none;
    border-radius: 25px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 45, 85, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-nav-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-nav-primary:hover::after {
    opacity: 1;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 85, 0.6);
    filter: brightness(1.1);
}

/* ===================== MAIN CONTENT ===================== */
.main-content {
    padding-top: 80px;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 20px;
    position: relative;
    z-index: 1;
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    text-align: center;
    padding: 40px 0 30px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-icon {
    font-size: 56px;
    margin-bottom: 16px;
    color: #ff2d55;
    filter: drop-shadow(0 0 25px rgba(255, 45, 85, 0.6));
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin-bottom: 6px;
    animation: gradient-shift 4s ease infinite;
}

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

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0096ff;
    letter-spacing: 8px;
    margin-bottom: 14px;
    text-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.hero-desc {
    font-size: 14px;
    opacity: 0.7;
    color: #a0a0c0;
    font-weight: 500;
}

/* ===================== COUNTER SECTION ===================== */
.counter-section {
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.06), rgba(0, 150, 255, 0.04));
    border-radius: 24px;
    padding: 28px 24px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 45, 85, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.04) 0%, transparent 70%);
    animation: pulse-bg 5s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.15) rotate(5deg); opacity: 1; }
}

.counter-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.counter-left, .counter-right {
    text-align: left;
}

.counter-right {
    text-align: right;
}

.counter-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
    display: block;
    margin-bottom: 8px;
    color: #a0a0c0;
    font-weight: 700;
}

.counter-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #ff2d55;
    text-shadow: 0 0 30px rgba(255, 45, 85, 0.4);
    line-height: 1;
}

.counter-total {
    font-size: 16px;
    opacity: 0.5;
    color: #0096ff;
    font-weight: 500;
}

.counter-value-remaining {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #ff8c00;
    text-shadow: 0 0 25px rgba(255, 140, 0, 0.4);
    line-height: 1;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.04);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 200% 100%;
    border-radius: 5px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 45, 85, 0.5);
    animation: progress-shimmer 2s linear infinite;
}

@keyframes progress-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.counter-alert {
    text-align: center;
    font-size: 13px;
    color: #ff8c00;
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* ===================== SECTION TITLES ===================== */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #ff2d55;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 16px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #ff2d55, #ff6b35);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 45, 85, 0.5);
}

/* ===================== CATEGORIES ===================== */
.categories-section {
    margin-bottom: 28px;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: #e8e8e8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 45, 85, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    background: rgba(255, 45, 85, 0.06);
    border-color: rgba(255, 45, 85, 0.25);
    transform: translateX(6px) scale(1.01);
    box-shadow: 0 8px 30px rgba(255, 45, 85, 0.15);
}

.category-icon {
    font-size: 24px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.15), rgba(0, 150, 255, 0.1));
    border-radius: 14px;
    border: 1px solid rgba(255, 45, 85, 0.2);
    color: #ff2d55;
    flex-shrink: 0;
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.25), rgba(0, 150, 255, 0.2));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.3);
}

.category-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.category-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.category-info p {
    font-size: 12px;
    opacity: 0.6;
    color: #a0a0c0;
}

.category-arrow {
    font-size: 20px;
    opacity: 0.4;
    color: #ff2d55;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(4px);
    text-shadow: 0 0 10px rgba(255, 45, 85, 0.5);
}

/* ===================== INFO SECTION ===================== */
.info-section {
    margin-bottom: 28px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 45, 85, 0.15);
    transform: translateX(4px);
}

.info-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 45, 85, 0.08);
    border-radius: 12px;
    color: #ff2d55;
    flex-shrink: 0;
    transition: all 0.3s;
}

.info-item:hover .info-icon {
    background: rgba(255, 45, 85, 0.15);
    transform: scale(1.1);
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 10px;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
    color: #a0a0c0;
    font-weight: 700;
}

.info-value {
    font-size: 16px;
    font-weight: 700;
    color: #e8e8e8;
}

.info-value.highlight {
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

/* ===================== PRIZES SECTION ===================== */
.prizes-section {
    margin-bottom: 28px;
}

.prizes-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prize-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 16px;
    border-left: 4px solid;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.prize-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.prize-card.gold {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
    border-left-color: #ffd700;
}

.prize-card.gold:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.04));
}

.prize-card.silver {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.06), rgba(192, 192, 192, 0.02));
    border-left-color: #c0c0c0;
}

.prize-card.silver:hover {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.04));
}

.prize-card.bronze {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.06), rgba(205, 127, 50, 0.02));
    border-left-color: #cd7f32;
}

.prize-card.bronze:hover {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.04));
}

.prize-rank {
    font-size: 36px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.prize-info h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.prize-card.gold .prize-info h3 { color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.prize-card.silver .prize-info h3 { color: #c0c0c0; text-shadow: 0 0 10px rgba(192, 192, 192, 0.3); }
.prize-card.bronze .prize-info h3 { color: #cd7f32; text-shadow: 0 0 10px rgba(205, 127, 50, 0.3); }

.prize-amount {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.prize-bonus {
    font-size: 12px;
    opacity: 0.8;
    color: #ffd700;
}

.prize-total {
    text-align: center;
    margin-top: 20px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.08), rgba(0, 150, 255, 0.04));
    border-radius: 16px;
    border: 1px solid rgba(255, 45, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.prize-total::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.prize-total span {
    font-size: 12px;
    opacity: 0.7;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.prize-total strong {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 1;
}

/* ===================== RULES SECTION ===================== */
.rules-section {
    margin-bottom: 28px;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.rule-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 45, 85, 0.15);
    transform: translateX(4px);
}

.rule-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 45, 85, 0.4);
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.rule-item p {
    font-size: 14px;
    opacity: 0.9;
    padding-top: 4px;
    color: #c0c0d0;
}

/* ===================== FOOTER ===================== */
.main-footer {
    text-align: center;
    padding: 40px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 30px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff2d55, transparent);
}

.main-footer p {
    font-size: 12px;
    opacity: 0.4;
    margin: 0;
    color: #a0a0c0;
}

.footer-location {
    margin-top: 8px !important;
    font-size: 11px !important;
    letter-spacing: 2px;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    border: none;
    border-radius: 16px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 45, 85, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 45, 85, 0.5);
    filter: brightness(1.1);
}

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

.btn-secondary {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #e8e8e8;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    border-color: #ff2d55;
    color: #ff2d55;
    background: rgba(255, 45, 85, 0.05);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.1);
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    border: none;
    border-radius: 16px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 45, 85, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 45, 85, 0.5);
    filter: brightness(1.1);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

.btn-submit:disabled::before {
    display: none;
}

/* ===================== FORM STYLES ===================== */
.form-header {
    text-align: center;
    padding: 24px 0;
    margin-bottom: 24px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 18px;
    transition: all 0.3s;
    font-weight: 600;
}

.back-btn:hover {
    color: #ff2d55;
    transform: translateX(-4px);
}

.form-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ff2d55;
    text-shadow: 0 0 20px rgba(255, 45, 85, 0.3);
    letter-spacing: 3px;
}

.form-header p {
    font-size: 14px;
    opacity: 0.7;
    color: #a0a0c0;
}

.registration-form {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff2d55;
}

.form-group input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #e8e8e8;
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus {
    border-color: #ff2d55;
    background: rgba(255, 45, 85, 0.05);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.15);
}

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

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.5;
    line-height: 1.4;
    color: #a0a0c0;
}

.form-info-box {
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.06), rgba(0, 150, 255, 0.04));
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 45, 85, 0.12);
    position: relative;
    overflow: hidden;
}

.form-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #ff2d55, #ff6b35);
}

.form-info-box h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #ff2d55;
    font-weight: 700;
    padding-left: 8px;
}

.form-info-box ul {
    list-style: none;
    padding: 0;
    padding-left: 8px;
}

.form-info-box li {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    color: #c0c0d0;
}

.form-info-box li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #ff2d55;
    font-weight: 700;
}

/* ===================== PAYMENT STYLES ===================== */
.payment-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 200% 100%;
    animation: progress-shimmer 3s linear infinite;
}

.payment-user-info {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.payment-user-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #e8e8e8;
}

.payment-user-info p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 6px;
    color: #a0a0c0;
}

.payment-details {
    margin-bottom: 24px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-row span {
    font-size: 14px;
    opacity: 0.7;
    color: #a0a0c0;
}

.payment-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #ff8c00;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.payment-instructions {
    margin-bottom: 24px;
}

.payment-instructions h4 {
    font-size: 15px;
    margin-bottom: 14px;
    color: #ff2d55;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-instructions ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.payment-instructions li {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #c0c0d0;
}

.payment-warning {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(255, 140, 0, 0.02));
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 14px;
    font-size: 13px;
    line-height: 1.6;
    color: #c0c0d0;
}

.payment-warning strong {
    color: #ff8c00;
}

.btn-payment-sms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, #00c853, #00a844);
    border: none;
    border-radius: 18px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    margin: 24px 0;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-payment-sms:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.4);
    filter: brightness(1.1);
}

.btn-payment-sms span {
    font-size: 32px;
}

.btn-payment-sms strong {
    display: block;
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.btn-payment-sms small {
    font-size: 12px;
    opacity: 0.9;
    display: block;
    letter-spacing: 1px;
}

.payment-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.payment-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.payment-divider span {
    position: relative;
    background: #0a0a0f;
    padding: 0 18px;
    font-size: 13px;
    opacity: 0.5;
    color: #a0a0c0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.payment-manual {
    text-align: center;
}

.payment-manual p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 10px;
    color: #a0a0c0;
}

.sms-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sms-preview code {
    flex: 1;
    font-size: 20px;
    font-family: 'Orbitron', monospace;
    color: #00c853;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
    letter-spacing: 1px;
}

.btn-copy-small {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 14px;
    color: #e8e8e8;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13px;
}

.btn-copy-small:hover {
    background: rgba(255, 45, 85, 0.15);
    border-color: rgba(255, 45, 85, 0.3);
    color: #ff2d55;
    box-shadow: 0 0 15px rgba(255, 45, 85, 0.2);
}

.payment-confirmation {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    backdrop-filter: blur(10px);
}

.payment-confirmation h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #e8e8e8;
}

.payment-confirmation p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 18px;
    color: #a0a0c0;
}

.btn-confirm-payment {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    border: none;
    border-radius: 16px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 45, 85, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-confirm-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 45, 85, 0.5);
    filter: brightness(1.1);
}

.btn-confirm-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

.btn-confirm-payment:disabled::before {
    display: none;
}

/* ===================== MODAL STYLES ===================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #12121a, #0d0d15);
    border-radius: 24px;
    padding: 36px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(255, 45, 85, 0.2);
    animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 45, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 200% 100%;
    animation: progress-shimmer 3s linear infinite;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #ff2d55;
    letter-spacing: 2px;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #ff2d55;
    background: rgba(255, 45, 85, 0.1);
}

.modal-body p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 18px;
    color: #c0c0d0;
}

.modal-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #e8e8e8;
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.modal-input:focus {
    border-color: #ff2d55;
    background: rgba(255, 45, 85, 0.05);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.15);
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #00c853;
    filter: drop-shadow(0 0 20px rgba(0, 200, 83, 0.4));
    animation: success-bounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes success-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.ref-code-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    border: 2px dashed rgba(255, 45, 85, 0.4);
    position: relative;
    overflow: hidden;
}

.ref-code-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.05) 0%, transparent 70%);
}

.ref-label {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0a0c0;
    position: relative;
    z-index: 1;
}

.ref-code {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    color: #ff2d55;
    letter-spacing: 3px;
    margin: 14px 0;
    text-shadow: 0 0 20px rgba(255, 45, 85, 0.4);
    position: relative;
    z-index: 1;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 45, 85, 0.15);
    border: 1px solid rgba(255, 45, 85, 0.3);
    border-radius: 10px;
    color: #ff2d55;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.btn-copy:hover {
    background: rgba(255, 45, 85, 0.25);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.2);
    transform: translateY(-2px);
}

.next-steps {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.next-steps p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 18px;
    color: #a0a0c0;
}

.pending-icon {
    font-size: 56px;
    margin-bottom: 20px;
    color: #ff8c00;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.4));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.4)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 25px rgba(255, 140, 0, 0.6)); }
}

.pending-info {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pending-info p {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #e8e8e8;
}

.pending-info ul {
    list-style: none;
    padding: 0;
}

.pending-info li {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 8px;
    color: #c0c0d0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pending-info li strong {
    color: #ff8c00;
}

.pending-status {
    margin: 20px 0;
}

.pending-note {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 20px;
    color: #a0a0c0;
}

/* ===================== PROFILE STYLES ===================== */
.profile-card {
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.08), rgba(0, 150, 255, 0.06));
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 45, 85, 0.15);
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #ff2d55, #ff6b35);
}

.profile-avatar {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(255, 45, 85, 0.4);
    color: white;
    position: relative;
    z-index: 1;
}

.profile-info h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #e8e8e8;
    position: relative;
    z-index: 1;
}

.profile-pubg-id {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 6px;
    color: #a0a0c0;
    position: relative;
    z-index: 1;
}

.profile-ref {
    font-family: 'Orbitron', monospace;
    font-size: 13px;
    color: #ff2d55;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 45, 85, 0.3);
}

.status-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 200% 100%;
    animation: progress-shimmer 3s linear infinite;
}

.status-card h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff2d55;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.status-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
    position: relative;
    z-index: 1;
}

.status-step {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.status-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 45, 85, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.status-step:hover::before {
    opacity: 1;
}

.status-step.completed {
    border-left-color: #00c853;
    background: rgba(0, 200, 83, 0.04);
}

.status-step.pending {
    border-left-color: #ff8c00;
    background: rgba(255, 140, 0, 0.04);
}

.status-step.rejected {
    border-left-color: #ff2d55;
    background: rgba(255, 45, 85, 0.04);
}

.step-icon {
    font-size: 26px;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.step-title {
    font-weight: 700;
    font-size: 15px;
    color: #e8e8e8;
}

.step-date {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 4px;
    color: #a0a0c0;
}

.status-badge {
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 700;
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.5s ease;
}

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

.status-badge.approved {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.08));
    color: #00c853;
    border: 1px solid rgba(0, 200, 83, 0.3);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
}

.status-badge.rejected {
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.15), rgba(255, 45, 85, 0.08));
    color: #ff2d55;
    border: 1px solid rgba(255, 45, 85, 0.3);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.2);
}

.status-badge.waiting {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 140, 0, 0.08));
    color: #ff8c00;
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
}

/* ===================== TEAM STYLES ===================== */
.team-section {
    margin-bottom: 24px;
}

.team-section h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff2d55;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 16px;
}

.team-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #ff2d55, #ff6b35);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 45, 85, 0.5);
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 200% 100%;
    animation: progress-shimmer 3s linear infinite;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.team-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #e8e8e8;
}

.team-code {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    color: #ff2d55;
    background: rgba(255, 45, 85, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 45, 85, 0.2);
    text-shadow: 0 0 10px rgba(255, 45, 85, 0.2);
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 45, 85, 0.1);
    transform: translateX(4px);
}

.team-member.leader {
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.team-member.leader:hover {
    background: rgba(255, 215, 0, 0.08);
}

.member-role {
    font-size: 11px;
    opacity: 0.7;
    width: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a0a0c0;
}

.team-member.leader .member-role {
    color: #ffd700;
}

.member-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #e8e8e8;
}

.member-status {
    font-size: 18px;
}

.team-invite {
    background: rgba(255, 45, 85, 0.04);
    border-radius: 12px;
    padding: 18px;
    border: 1px dashed rgba(255, 45, 85, 0.3);
    position: relative;
    z-index: 1;
}

.team-invite p {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 12px;
    color: #c0c0d0;
}

.invite-code-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.invite-code-box code {
    flex: 1;
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    color: #ff2d55;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 45, 85, 0.3);
    border: 1px solid rgba(255, 45, 85, 0.15);
    letter-spacing: 2px;
}

.team-empty {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    backdrop-filter: blur(10px);
}

.team-empty p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 18px;
    color: #a0a0c0;
}

.team-actions {
    display: flex;
    gap: 12px;
}

/* ===================== SHARE SECTION ===================== */
.share-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.share-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 200% 100%;
    animation: progress-shimmer 3s linear infinite;
}

.share-section h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff2d55;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.share-section p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 18px;
    color: #a0a0c0;
    position: relative;
    z-index: 1;
}

.share-code-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 14px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 45, 85, 0.15);
}

.share-code-box code {
    flex: 1;
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    color: #ff2d55;
    text-shadow: 0 0 10px rgba(255, 45, 85, 0.3);
    letter-spacing: 2px;
}

.share-code-box button {
    background: rgba(255, 45, 85, 0.15);
    border: 1px solid rgba(255, 45, 85, 0.3);
    border-radius: 10px;
    padding: 10px 18px;
    color: #ff2d55;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.share-code-box button:hover {
    background: rgba(255, 45, 85, 0.25);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.2);
    transform: translateY(-2px);
}

/* ===================== TEAM TABS ===================== */
.team-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.tab-btn {
    flex: 1;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #e8e8e8;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
}

.tab-btn.active {
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    border-color: #ff2d55;
    box-shadow: 0 4px 20px rgba(255, 45, 85, 0.3);
}

.tab-btn:hover:not(.active) {
    border-color: rgba(255, 45, 85, 0.4);
    background: rgba(255, 45, 85, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.team-form {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.team-preview {
    background: rgba(255, 215, 0, 0.04);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.team-preview h4 {
    font-size: 14px;
    color: #ffd700;
    margin-bottom: 6px;
    font-weight: 700;
}

.team-preview p {
    font-size: 14px;
    opacity: 0.85;
    color: #c0c0d0;
}

.team-info-box {
    background: rgba(255, 45, 85, 0.04);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 45, 85, 0.15);
}

.team-info-box p {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 8px;
    color: #c0c0d0;
}

.team-info-box p:last-child {
    margin-bottom: 0;
}

/* ===================== ADMIN STYLES ===================== */
.admin-login-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 48px 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    margin-top: 60px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.admin-login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 200% 100%;
    animation: progress-shimmer 3s linear infinite;
}

.admin-icon {
    font-size: 56px;
    margin-bottom: 20px;
    color: #ff2d55;
    filter: drop-shadow(0 0 20px rgba(255, 45, 85, 0.4));
    animation: icon-float 3s ease-in-out infinite;
}

.admin-login-box h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-bottom: 30px;
    color: #ff2d55;
    text-shadow: 0 0 20px rgba(255, 45, 85, 0.3);
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.admin-header {
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.admin-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #ff2d55;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 45, 85, 0.3);
    letter-spacing: 3px;
}

.admin-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-box:hover {
    border-color: rgba(255, 45, 85, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.1);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35);
    opacity: 0.5;
}

.stat-box span {
    display: block;
    font-size: 10px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #a0a0c0;
    font-weight: 700;
}

.stat-box strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #ff2d55;
    text-shadow: 0 0 15px rgba(255, 45, 85, 0.3);
}

.admin-section {
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.admin-section h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff2d55;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 16px;
}

.admin-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #ff2d55, #ff6b35);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 45, 85, 0.5);
}

.table-responsive {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.admin-table th {
    background: rgba(255, 45, 85, 0.1);
    padding: 14px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color: #ff2d55;
    border-bottom: 1px solid rgba(255, 45, 85, 0.15);
}

.admin-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #c0c0d0;
    transition: all 0.2s;
}

.admin-table tr:hover td {
    background: rgba(255, 45, 85, 0.03);
}

.admin-table code {
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    color: #ff2d55;
    background: rgba(255, 45, 85, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 45, 85, 0.15);
    text-shadow: 0 0 5px rgba(255, 45, 85, 0.2);
}

.btn-approve, .btn-reject, .btn-delete {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    margin-right: 6px;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-approve {
    background: #00c853;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.btn-approve:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

.btn-reject {
    background: #ff2d55;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
}

.btn-reject:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.4);
}

.btn-delete {
    background: #6b7280;
    color: white;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-delete:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

.teams-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.team-admin-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.team-admin-card:hover {
    border-color: rgba(255, 45, 85, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.1);
}

.team-admin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35);
    opacity: 0.5;
}

.team-admin-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #e8e8e8;
    font-weight: 700;
}

.team-admin-card p {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 6px;
    color: #a0a0c0;
}

/* Admin ayarlar form */
.ayar-form {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ayar-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 200% 100%;
    animation: progress-shimmer 3s linear infinite;
}

.ayar-group {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.ayar-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff2d55;
    margin-bottom: 8px;
}

.ayar-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #e8e8e8;
    font-size: 15px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.ayar-group input:focus {
    border-color: #ff2d55;
    background: rgba(255, 45, 85, 0.05);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.15);
}

/* Admin tabs */
.admin-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.admin-tab-btn {
    flex: 1;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #e8e8e8;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.admin-tab-btn.active {
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    border-color: #ff2d55;
    box-shadow: 0 4px 20px rgba(255, 45, 85, 0.3);
}

.admin-tab-btn:hover:not(.active) {
    border-color: rgba(255, 45, 85, 0.4);
    background: rgba(255, 45, 85, 0.05);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }

    .counter-value {
        font-size: 34px;
    }

    .counter-value-remaining {
        font-size: 30px;
    }

    .hero-title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .nav-right {
        gap: 8px;
    }

    .btn-nav-outline, .btn-nav-primary {
        padding: 7px 14px;
        font-size: 10px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .teams-grid {
        grid-template-columns: 1fr;
    }

    .admin-tabs {
        flex-direction: column;
    }

    .team-tabs {
        flex-direction: column;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .profile-avatar {
        width: 64px;
        height: 64px;
        font-size: 30px;
    }
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 45, 85, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 45, 85, 0.5);
}

/* ===================== SELECTION ===================== */
::selection {
    background: rgba(255, 45, 85, 0.3);
    color: white;
}

/* ===================== LOADER ===================== */
.btn-loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

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

/* ===================== FOCUS VISIBLE ===================== */
:focus-visible {
    outline: 2px solid #ff2d55;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===================== BOTTOM NAVIGATION ===================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 45, 85, 0.15);
    padding: 8px 0 12px;
}

.bottom-nav-container {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 12px;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.bottom-nav-item i {
    font-size: 20px;
}

.bottom-nav-item.active {
    color: #ff2d55;
}

.bottom-nav-item:hover {
    color: #ff2d55;
}

/* Mobile tap highlight fix for bottom nav */
.bottom-nav-item:active {
    background-color: transparent !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Admin logout */
.admin-logout-form {
    display: inline;
}
.admin-logout-btn {
    background: none;
    border: none;
    color: #ff2d55;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
}

/* ===================== ERROR PAGES ===================== */
.error-page {
    text-align: center;
    padding-top: 100px;
}
.error-icon {
    font-size: 80px;
}
.error-title {
    font-size: 48px;
}
.error-desc {
    opacity: 0.7;
    margin: 20px 0;
}
.error-btn {
    max-width: 200px;
    margin: 0 auto;
}
