/* ============================================
   TMSECRET HOMEPAGE STYLES
   ============================================ */

/* Setup Form Wrapper */
.setup-form-wrapper {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: hidden;
}

/* Background Animations */
.setup-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.gradient-orb.orb-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f093fb, #4facfe);
    bottom: -80px;
    right: -80px;
    animation-delay: 2s;
}

.gradient-orb.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
}

.floating-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particles .particle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 1s;
}

.floating-particles .particle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.floating-particles .particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
}

.floating-particles .particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) translateX(20px);
        opacity: 0.8;
    }
}

/* Progress Steps */
.setup-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 18px;
    font-weight: 700;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.setup-progress .step-number {
    top: unset;
}

.checkmark {
    position: absolute;
    width: 30px;
    height: 30px;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.progress-step.active .step-number {
    color: #ffffff;
}

.progress-step.completed .step-circle {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border-color: #43e97b;
}

.progress-step.completed .step-number {
    opacity: 0;
}

.progress-step.completed .checkmark {
    opacity: 1;
    transform: scale(1);
}

.step-label {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #718096;
    transition: all 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: #667eea;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e2e8f0;
    position: relative;
    margin: 0 10px;
}

.progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-line.filled .progress-line-fill {
    width: 100%;
}

/* Form Container */
.setup-form-container {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.form-step {
    display: none;
    animation: fadeSlideIn 0.5s ease-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Step Header */
.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.step-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.step-header p {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
}

/* Animated Input Fields */
.animated-input-field {
    margin-bottom: 30px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.input-wrapper input {
    width: 100%;
    padding: 18px 15px;
    font-size: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    background: #f7fafc;
    font-weight: 500;
}

.input-wrapper input:focus {
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.floating-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #a0aec0;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.input-wrapper input:focus + .floating-label,
.input-wrapper input:not(:placeholder-shown) + .floating-label {
    top: -10px;
    font-size: 13px;
    color: #667eea;
    background: #ffffff;
    font-weight: 600;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
}

.input-underline-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.4s ease;
}

.input-wrapper input:focus ~ .input-underline .input-underline-fill {
    width: 100%;
}

.input-hint {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Username Wrapper */
.username-wrapper {
    display: flex;
    align-items: center;
}

.username-prefix {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    z-index: 2;
}

.username-wrapper input {
    padding-left: 35px;
}

.username-wrapper .floating-label {
    left: 35px;
}

.username-feedback {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.username-feedback.available {
    color: #43e97b;
}

.username-feedback.taken {
    color: #f56565;
}

.preview-link {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.link-label {
    display: block;
    font-size: 12px;
    color: #718096;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-preview {
    font-size: 15px;
    color: #667eea;
    font-weight: 600;
    word-break: break-all;
}

#username-preview {
    color: #764ba2;
    font-weight: 700;
}

/* Social Selection */
.social-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.social-card {
    cursor: pointer;
    position: relative;
}

.social-card input[type="radio"] {
    display: none;
}

.social-card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.social-card:hover .social-card-content {
    background: #ffffff;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.social-card input[type="radio"]:checked + .social-card-content {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon.instagram-gradient {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.social-icon.whatsapp-gradient {
    background: linear-gradient(135deg, #43e97b, #25d366);
}

.social-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.social-info {
    flex: 1;
}

.social-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.social-info p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.selection-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.selection-indicator svg {
    width: 18px;
    height: 18px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.social-card input[type="radio"]:checked + .social-card-content .selection-indicator {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.social-card input[type="radio"]:checked + .social-card-content .selection-indicator svg {
    opacity: 1;
    transform: scale(1);
    stroke: #ffffff;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
}

.btn-back,
.btn-next,
.btn-submit {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-back {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-back:hover {
    background: #cbd5e0;
    transform: translateX(-3px);
}

.btn-next {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    flex: 1;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: #ffffff;
    flex: 1;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(67, 233, 123, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
}

.btn-submit .btn-loading,
.btn-submit .btn-success {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: block;
}

.btn-submit.success .btn-text,
.btn-submit.success .btn-loading {
    display: none;
}

.btn-submit.success .btn-success {
    display: block;
}

.spinner {
    width: 24px;
    height: 24px;
    animation: rotate 1s linear infinite;
}

.spinner circle {
    stroke: #ffffff;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -125px;
    }
}

/* ============================================
   SECRET MESSAGE GAME BANNER STYLES
   ============================================ */

/* Main Banner Container */
.secret-game-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 20px;
}

/* Floating Secret Cards */
.floating-secrets {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.secret-card {
    position: absolute;
    animation: floatSecret 6s ease-in-out infinite;
}

.secret-1 { top: 10%; left: 5%; animation-delay: 0s; }
.secret-2 { top: 70%; right: 8%; animation-delay: 1.5s; }
.secret-3 { top: 25%; right: 12%; animation-delay: 3s; }
.secret-4 { bottom: 15%; left: 10%; animation-delay: 4.5s; }

.secret-envelope {
    position: relative;
    width: 80px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 111, 0, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.secret-card:hover .secret-envelope {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 111, 0, 0.6);
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.3);
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 111, 0, 0.2), transparent);
    border-radius: 8px 8px 0 0;
}

.secret-icon {
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.secret-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 2px;
}

/* Main Content */
.secret-game-banner .banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Mystery Badge */
.mystery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 2px solid rgba(255, 111, 0, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 24px;
    animation: spin 3s linear infinite;
}

.badge-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Secret Game Title */
.secret-title-container {
    margin-bottom: 50px;
}

.secret-game-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 30px 0;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.word {
    position: relative;
    display: inline-block;
}

.word-space {
    width: 20px;
}

/* Unlock Word Animation */
.unlock-word {
    animation: unlockAnimation 3s ease-in-out infinite;
    color: #4facfe;
    text-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
}

/* Mystery Word with Symbols */
.mystery-word {
    position: relative;
}

.mystery-word .word-text {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.mystery-symbols {
    position: absolute;
    top: -10px;
    right: -30px;
    display: flex;
    gap: 3px;
}

.mystery-symbols span {
    font-size: 30px;
    animation: questionFloat 2s ease-in-out infinite;
}

.mystery-symbols span:nth-child(2) { animation-delay: 0.3s; }
.mystery-symbols span:nth-child(3) { animation-delay: 0.6s; }

/* Reveal Word */
.reveal-word {
    position: relative;
    background: linear-gradient(45deg, #a8edea, #fed6e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reveal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 237, 234, 0.3), transparent);
    animation: glowPulse 2s ease-in-out infinite;
    border-radius: 50%;
}

/* Secrets Word with Lock */
.secrets-word {
    position: relative;
    background: linear-gradient(45deg, #ffd89b, #19547b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lock-icon {
    position: absolute;
    top: -15px;
    right: -40px;
    font-size: 35px;
    animation: unlockBounce 2s ease-in-out infinite;
}

/* Subtitle with Typing Effect */
.secret-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

.typing-text {
    display: inline-block;
}

.cursor-blink {
    display: inline-block;
    color: #ff6f00;
    animation: blink 1s step-end infinite;
    font-weight: bold;
    margin-left: 2px;
}

/* Enhanced Google Sign-In Button */
.game-cta-container {
    margin: 50px 0;
}

.signin-wrapper {
    position: relative;
    display: inline-block;
}

.signin-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.3), transparent);
    filter: blur(30px);
    animation: glowBreath 3s ease-in-out infinite;
    pointer-events: none;
}

.game-signin-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff6f00, #ff8f00);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 111, 0, 0.4);
}

.game-signin-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 111, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.game-signin-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.btn-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: gradientShift 3s linear infinite;
}

.btn-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.btn-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.btn-particles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.btn-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 0.7s; }
.btn-particles span:nth-child(3) { top: 80%; left: 40%; animation-delay: 1.4s; }
.btn-particles span:nth-child(4) { top: 40%; left: 70%; animation-delay: 2.1s; }

.btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-main-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-sub-text {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    animation: arrowBounce 2s ease-in-out infinite;
}

.signin-hint {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    justify-content: center;
}

.hint-icon {
    font-size: 16px;
}

/* Logged In State */
.game-signin-btn.logged-in {
    background: linear-gradient(135deg, #667eea, #764ba2);
    cursor: default;
}

/* Game Stats Container */
.game-stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 111, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.2);
}

.stat-icon {
    font-size: 40px;
    animation: iconBounce 2s ease-in-out infinite;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Secret Background Elements */
.secret-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Matrix Rain Effect */
.matrix-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.rain-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #ff6f00, transparent);
    animation: matrixDrop 8s linear infinite;
}

/* Floating Locks */
.floating-locks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.lock-anim {
    position: absolute;
    font-size: 40px;
    opacity: 0.2;
    animation: lockFloat 10s ease-in-out infinite;
}

.lock-1 { top: 15%; left: 15%; animation-delay: 0s; }
.lock-2 { top: 65%; right: 20%; animation-delay: 2s; }
.lock-3 { bottom: 20%; left: 25%; animation-delay: 4s; }
.lock-4 { top: 40%; right: 15%; animation-delay: 6s; }

/* Gradient Orbs */
.bg-gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -100px;
    left: -100px;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -100px;
    right: -100px;
    animation: orbFloat 18s ease-in-out infinite;
    animation-delay: 3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 20s ease-in-out infinite;
    animation-delay: 6s;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes floatSecret {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes unlockAnimation {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes questionFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes unlockBounce {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes glowBreath {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes gradientShift {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes matrixDrop {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes lockFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.4; }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-30px, 30px); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .setup-form-wrapper {
        padding: 20px 10px;
    }

    .setup-progress {
        padding: 0;
        margin-bottom: 30px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
    }

    .step-number {
        font-size: 16px;
    }

    .checkmark {
        width: 24px;
        height: 24px;
    }

    .step-label {
        font-size: 11px;
        margin-top: 8px;
    }

    .progress-line {
        margin: 0 5px;
    }

    .setup-form-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .step-icon {
        font-size: 50px;
    }

    .step-header h2 {
        font-size: 24px;
    }

    .step-header p {
        font-size: 15px;
    }

    .input-wrapper input {
        font-size: 16px;
        padding: 16px 12px 16px 41px;
    }

    .social-card-content {
        gap: 15px;
        padding: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon img {
        width: 28px;
        height: 28px;
    }

    .social-info h3 {
        font-size: 16px;
    }

    .social-info p {
        font-size: 13px;
    }

    .form-navigation {
        gap: 10px;
    }

    .btn-back,
    .btn-next,
    .btn-submit {
        padding: 14px 24px;
        font-size: 15px;
    }

    .gradient-orb.orb-1 {
        width: 200px;
        height: 200px;
    }

    .gradient-orb.orb-2 {
        width: 180px;
        height: 180px;
    }

    .gradient-orb.orb-3 {
        width: 150px;
        height: 150px;
    }

    .secret-game-banner {
        min-height: 100vh;
        padding: 60px 15px;
    }

    .floating-secrets {
        opacity: 0.5;
    }

    .secret-envelope {
        width: 60px;
        height: 45px;
    }

    .secret-icon {
        font-size: 18px;
    }

    .secret-text {
        font-size: 10px;
    }

    .mystery-badge {
        padding: 10px 20px;
    }

    .badge-icon {
        font-size: 20px;
    }

    .badge-text {
        font-size: 14px;
    }

    .secret-game-title {
        font-size: clamp(36px, 10vw, 60px);
        gap: 5px;
    }

    .title-line {
        gap: 10px;
    }

    .mystery-symbols {
        right: -20px;
    }

    .mystery-symbols span {
        font-size: 20px;
    }

    .lock-icon {
        font-size: 25px;
        right: -30px;
    }

    .secret-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .game-signin-btn {
        gap: 10px;
        padding: 20px 30px;
        font-size: 16px;
    }

    .btn-text {
        align-items: center;
    }

    .btn-main-text {
        font-size: 16px;
    }

    .btn-sub-text {
        font-size: 12px;
    }

    .game-stats-container {
        gap: 15px;
        margin-top: 40px;
    }

    .stat-card {
        min-width: 150px;
        padding: 20px 25px;
        gap: 15px;
    }

    .stat-icon {
        font-size: 30px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .lock-anim {
        font-size: 30px;
    }

    .orb-1, .orb-2, .orb-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .secret-game-title {
        font-size: clamp(28px, 12vw, 48px);
    }

    .game-signin-btn {
        padding: 18px 25px;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        min-width: 120px;
        padding: 15px 20px;
    }

    .stat-content {
        align-items: center;
    }
    .secret-title-container {
    margin-bottom: 0;
    }

}
