* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #00ffff;
    --primary-magenta: #ff00ff;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 30, 0.9);
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --success: #00ff88;
    --warning: #ffaa00;
    --danger: #ff3366;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

.app-container {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-magenta));
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.screen {
    position: absolute;
    width: 100%;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.screen-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.logo-container {
    position: relative;
    margin: 40px auto 30px;
    text-align: center;
}

.logo {
    display: inline-block;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    height: 130px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-weight: 900;
}

.logo-accent {
    font-weight: 400;
    opacity: 0.8;
}

.glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 0, 255, 0.8));
    }
}

.light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.main-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

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

.path-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.path-btn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.path-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.path-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.path-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.path-desc {
    font-size: 14px;
    color: var(--text-gray);
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out 0.1s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.progress-indicator {
    position: relative;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

.progress-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
}

.progress-text {
    font-size: 12px;
    color: var(--text-gray);
}

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

.header-mini .placeholder {
    width: 40px;
}

.logo-mini {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-mini-image {
    height: 130px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.logo-mini span {
    font-weight: 400;
    opacity: 0.8;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.survey-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.survey-card {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: fadeIn 0.5s ease-out;
}

.survey-card.active {
    display: flex;
}

.card-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.amount-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover, .amount-btn.selected {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border-color: var(--primary-cyan);
}

.custom-amount {
    grid-column: span 2;
    display: flex;
    gap: 10px;
}

.custom-amount input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: var(--text-light);
    font-size: 16px;
}

.custom-amount input::placeholder {
    color: var(--text-gray);
}

.confirm-custom {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-custom:hover {
    transform: scale(1.05);
}

.priority-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.priority-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.priority-btn:hover, .priority-btn.selected {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border-color: var(--primary-cyan);
}

.priority-icon {
    font-size: 24px;
}

.assets-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.asset-checkbox {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.asset-checkbox:hover {
    background: rgba(255, 255, 255, 0.08);
}

.asset-checkbox input {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    accent-color: var(--primary-cyan);
}

.checkbox-label {
    font-size: 16px;
    color: var(--text-light);
}

.next-survey-btn {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-survey-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.simulation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.date-display {
    font-size: 14px;
    color: var(--text-gray);
}

.balance-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.balance-label {
    font-size: 12px;
    color: var(--text-gray);
}

.balance-amount {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.simulation-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.asset-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.asset-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.asset-card.selected {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(255, 0, 255, 0.15) 100%);
    border-color: var(--primary-cyan);
}

.asset-card.glow {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border-color: var(--primary-magenta);
    animation: glowPulse 2s ease-in-out infinite;
}

.asset-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.asset-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.asset-price {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.asset-trend {
    font-size: 14px;
    font-weight: 600;
}

.asset-trend.positive {
    color: var(--success);
}

.time-selector {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.time-selector.hidden {
    display: none;
}

.time-selector h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.time-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-btn:hover, .time-btn.selected {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border-color: var(--primary-cyan);
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border: none;
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.results-header {
    text-align: center;
    margin-bottom: 25px;
}

.results-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.result-amount {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.count-up {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-gray);
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
}

.table-row.user-choice {
    color: var(--warning);
    font-weight: 600;
}

.table-row.highlight {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    margin: 0 -20px;
    padding: 12px 20px;
    border-radius: 8px;
}

.profit {
    font-weight: 600;
}

.profit.best {
    color: var(--success);
    font-size: 18px;
}

.loss-trigger {
    background: rgba(255, 0, 102, 0.1);
    border: 1px solid rgba(255, 0, 102, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.loss-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.loss-text span {
    color: var(--danger);
    font-weight: 700;
}

.action-text {
    font-size: 16px;
    color: var(--text-gray);
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    margin-bottom: 30px;
}

.proof-icon {
    font-size: 24px;
}

.social-proof p {
    font-size: 14px;
}

.social-proof span {
    font-weight: 700;
    color: var(--success);
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border: none;
    border-radius: 16px;
    padding: 18px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
    }
}

.offer-screen {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 30px 20px;
}

.offer-badge {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 30px;
    width: fit-content;
    letter-spacing: 1px;
}

.offer-container {
    text-align: center;
    margin-bottom: 25px;
}

.offer-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bonus-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-percent {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.bonus-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 10px;
}

.pulse-scale {
    animation: pulseScale 2s ease-in-out infinite;
}

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

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.feature-icon {
    color: var(--success);
    font-size: 20px;
    font-weight: 700;
}

.urgency-container {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 30px;
}

.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.timer-icon {
    font-size: 20px;
}

#countdown {
    font-weight: 700;
    color: var(--warning);
}

.urgency-text {
    font-size: 14px;
    text-align: center;
    color: var(--text-gray);
}

.glow-button {
    animation: glowButton 2s ease-in-out infinite;
}

@keyframes glowButton {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
    }
}

/* Practice subtitle */
.practice-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 10px;
}

/* Time Travel Practice Styles */
.time-travel-container {
    text-align: center;
    padding: 20px;
}

.time-machine-effect {
    position: relative;
    margin-bottom: 30px;
}

.time-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: timeTravel 3s ease-in-out infinite;
}

@keyframes timeTravel {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        filter: hue-rotate(360deg);
    }
}

.time-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 4s linear infinite;
}

.time-travel-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.current-date {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: inline-block;
}

.time-travel-explanation {
    margin-bottom: 30px;
}

.time-travel-explanation p {
    margin-bottom: 10px;
    font-size: 16px;
}

.highlight {
    color: var(--primary-cyan);
    font-weight: 600;
}

.investment-amount-selection h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.practice-amount-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.practice-amount-btn:hover,
.practice-amount-btn.selected {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-gray);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: var(--text-gray);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-cyan);
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-gray);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border: none;
    border-radius: 12px;
    padding: 18px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.success-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.success-animation {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.success-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--success);
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    animation: successPop 0.6s ease-out;
}

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

.success-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.next-steps {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.next-steps h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.messenger-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.messenger-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.messenger-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.messenger-btn.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.messenger-btn.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.final-note {
    font-size: 14px;
    color: var(--text-gray);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 480px) {
    .app-container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .screen {
        padding: 10px;
    }
    
    /* Typography adjustments for mobile */
    .main-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .subtitle {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    /* Logo adjustments */
    .logo-main {
        height: 120px;
        margin-bottom: 15px;
    }
    
    .logo-mini-image {
        height: 40px;
    }
    
    /* Button improvements - larger touch targets */
    .amount-btn, .cta-button, .continue-btn, .register-cta-btn {
        padding: 16px 20px;
        font-size: 16px;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Form improvements */
    .lead-form input {
        padding: 18px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        min-height: 48px;
    }
    
    /* Touch-friendly asset selection */
    .asset-item {
        padding: 18px;
        margin-bottom: 15px;
    }
    
    .percentage-selector .current-allocation {
        padding: 12px 15px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .percentage-btn {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 14px;
        touch-action: manipulation;
    }
    
    /* Improved spacing for mobile */
    .header-mini {
        padding: 15px 10px 10px;
        margin-bottom: 10px;
    }
    
    .back-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    /* Progress indicator mobile optimization */
    .progress-indicator {
        margin: 20px 0;
        padding: 0 10px;
    }
    
    .progress-dots {
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Footer mobile optimization */
    .screen-footer {
        padding: 15px 10px;
        margin-top: 20px;
    }
    
    .footer-content {
        font-size: 12px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Game modal mobile improvements */
    .game-modal {
        padding: 15px;
    }
    
    .game-modal-content {
        max-width: 95vw;
        max-height: 90vh;
    }
    
    /* Better text readability on mobile */
    .motivation-quote {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .quote-text {
        font-size: 15px;
        line-height: 1.5;
    }
    
    /* Contact buttons mobile optimization */
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-btn {
        padding: 16px;
        font-size: 16px;
        min-height: 48px;
    }
    
    /* Timeframe buttons mobile optimization */
    .timeframe-btn {
        padding: 20px;
        min-height: 70px;
    }
    
    .timeframe-period {
        font-size: 18px;
    }
    
    /* Better mobile spacing */
    .asset-selection-container, .timeframe-container, .results-container {
        padding: 10px;
    }
    
    /* Mobile-friendly dropdown */
    .percentage-buttons {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 320px;
        background: rgba(20, 20, 30, 0.98);
        border-radius: 12px;
        padding: 15px;
        z-index: 1000;
    }
}

@media (max-width: 380px) {
    .main-title {
        font-size: 22px;
    }
    
    .subtitle {
        font-size: 13px;
    }
    
    .amount-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .assets-grid {
        grid-template-columns: 1fr;
    }
    
    .time-options {
        grid-template-columns: 1fr;
    }
    
    .charts-container {
        grid-template-columns: 1fr;
    }
    
    .screen {
        padding: 8px;
    }
    
    /* Ultra-compact for small screens */
    .asset-item {
        padding: 15px;
    }
    
    .percentage-buttons {
        grid-template-columns: repeat(3, 1fr);
        width: 95vw;
    }
    
    .logo-main {
        height: 110px;
    }
}

@media (max-width: 320px) {
    /* Support for very small screens like iPhone SE */
    .main-title {
        font-size: 20px;
    }
    
    .logo-main {
        height: 100px;
    }
    
    .amount-btn {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .percentage-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        width: 98vw;
    }
    
    .percentage-btn {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .screen {
        padding: 6px;
    }
    
    .header-mini {
        padding: 10px 6px;
    }
}

.question-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.question-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.question-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.question-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 25px;
}

.period-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.period-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
}

.period-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(255, 0, 255, 0.15) 100%);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.period-btn.selected {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border-color: var(--primary-magenta);
}

.period-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.period-desc {
    font-size: 14px;
    color: var(--text-gray);
}

.game-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.game-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.game-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 30px;
}

.game-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value.profit {
    color: var(--success);
    background: none;
    -webkit-text-fill-color: var(--success);
}

.game-board {
    width: 100%;
    max-width: 350px;
    height: 400px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#investmentGame {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.game-controls {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 350px;
}

.game-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border: none;
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.game-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.screen-footer {
    margin-top: auto;
    width: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    text-align: center;
    padding: 10px 20px;
}

.footer-content p {
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    font-size: 10px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.survey-progress {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.survey-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.survey-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 10%;
}

.survey-step-text {
    font-size: 14px;
    color: var(--text-gray);
}

.choice-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.choice-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.choice-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(255, 0, 255, 0.15) 100%);
    border-color: var(--primary-cyan);
    transform: translateX(5px);
}

.choice-btn.selected {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border-color: var(--primary-magenta);
}

.multi-choice-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.multi-choice {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.multi-choice:hover {
    background: rgba(255, 255, 255, 0.08);
}

.multi-choice input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    accent-color: var(--primary-cyan);
}

.multi-choice span {
    font-size: 16px;
    color: var(--text-light);
}

.next-multi-btn {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-multi-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.analysis-container {
    padding: 20px;
    text-align: center;
}

.analysis-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analysis-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 2px solid var(--primary-cyan);
    border-radius: 50px;
    padding: 15px 30px;
    margin-bottom: 25px;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
    }
}

.badge-icon {
    font-size: 32px;
}

.badge-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.charts-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.chart-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.chart-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 10px;
}

.chart-value {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 5px;
}

.recommendations {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.recommendations h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--success);
}

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

.recommendations li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.recommendations li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Adaptive survey visibility */
.survey-card {
    display: none;
}

.survey-card.active {
    display: flex;
}

.beginner-question,
.investor-question,
.risk-taker-question,
.common-question {
    display: none;
}

.show-beginner .beginner-question.active,
.show-investor .investor-question.active,
.show-risk-taker .risk-taker-question.active,
.common-question.active {
    display: flex;
}

.custom-amount {
    grid-column: span 2;
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.custom-amount input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: var(--text-light);
    font-size: 16px;
}

.custom-amount input::placeholder {
    color: var(--text-gray);
}

.confirm-custom {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.confirm-custom:hover {
    transform: scale(1.05);
}

/* Offer Form Styles */
.offer-form-container {
    margin-top: 30px;
    padding: 0 5px;
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

.offer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-form .form-group {
    display: flex;
    flex-direction: column;
}

.offer-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 15px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 48px;
}

.offer-form input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.1);
}

.offer-form input::placeholder {
    color: var(--text-gray);
}

.offer-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 5px 0;
}

.offer-form .form-checkbox input[type="checkbox"] {
    min-width: 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary-cyan);
}

.offer-form .form-checkbox label {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.offer-form .cta-button {
    margin-top: 10px;
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 700;
    min-height: 56px;
}

/* Thank You Page Specific Styles */
.urgency-reminder {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.timer-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #FFD700;
}

.timer-reminder .timer-icon {
    font-size: 20px;
}

.call-urgency-text {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    font-style: italic;
}

.social-proof-reminder {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.social-text {
    font-size: 15px;
    color: #00ff88;
    margin: 0;
    font-weight: 600;
}

.social-text span {
    color: #FFD700;
    font-weight: 700;
}

@media (min-width: 768px) {
    .app-container {
        box-shadow: 0 0 100px rgba(0, 255, 255, 0.2);
        border-radius: 20px;
        margin: 20px auto;
    }
}