        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
        }

        input,
        textarea {
            -webkit-user-select: text;
            user-select: text;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background: #212121;
            color: #ececf1;
            line-height: 1.5;
            min-height: 100vh;
            min-height: -webkit-fill-available;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: env(safe-area-inset-bottom);
        }

        /* Container - Mobile First */
        .container {
            max-width: 100%;
            min-height: 100vh;
            min-height: -webkit-fill-available;
            display: flex;
            flex-direction: column;
        }

        /* Header - Mobile Optimized */
        .header {
            background: #2d2d30;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 14px 16px;
            padding-top: max(14px, env(safe-area-inset-top));
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }

        .model-selector {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1;
            max-width: 200px;
        }

        .model-selector:active {
            transform: scale(0.98);
            background: rgba(255, 255, 255, 0.08);
        }

        .model-name {
            font-size: 13px;
            font-weight: 600;
            color: #ececf1;
        }

        .model-version {
            font-size: 10px;
            color: #999;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #999;
        }

        .step-indicator {
            padding: 5px 10px;
            background: rgba(16, 163, 127, 0.1);
            border: 1px solid rgba(16, 163, 127, 0.2);
            border-radius: 8px;
            color: #10a37f;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
        }

        /* Main Content - Mobile Optimized */
        .main {
            flex: 1;
            padding: 16px;
            padding-bottom: calc(16px + env(safe-area-inset-bottom));
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        /* Steps Animation */
        .step {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .step.active {
            display: block;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Message Cards - Mobile Optimized */
        .message-card {
            background: #2d2d30;
            border-radius: 16px;
            padding: 18px;
            margin-bottom: 14px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            background: linear-gradient(135deg, #10a37f, #0d8062);
            border-radius: 20px;
            margin-bottom: 12px;
            font-size: 10px;
            font-weight: 600;
            color: white;
            letter-spacing: 0.5px;
        }

        .pulse-dot {
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.5);
            }
        }

        h1 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .subtitle {
            color: #999;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .highlight {
            color: #10a37f;
            font-weight: 600;
        }

        /* Profit Calculator - Mobile Optimized */
        .profit-calculator {
            background: #1a1a1a;
            border: 2px solid rgba(16, 163, 127, 0.2);
            border-radius: 16px;
            padding: 16px;
            margin: 16px 0;
        }

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

        .calc-title {
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
        }

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

        .calc-label {
            font-size: 10px;
            color: #999;
        }

        .calc-value {
            font-size: 18px;
            font-weight: 700;
            color: #10a37f;
        }

        /* Profit Timeline - Mobile Grid */
        .profit-timeline {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 14px;
        }

        .profit-item {
            background: rgba(16, 163, 127, 0.05);
            border: 1px solid rgba(16, 163, 127, 0.1);
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            transition: all 0.2s;
            cursor: pointer;
        }

        .profit-item:active {
            transform: scale(0.98);
            background: rgba(16, 163, 127, 0.1);
        }

        .profit-period {
            font-size: 10px;
            color: #999;
            margin-bottom: 4px;
        }

        .profit-amount {
            font-size: 15px;
            font-weight: 700;
            color: #10a37f;
        }

        .profit-gain {
            font-size: 11px;
            color: #10a37f;
            margin-top: 2px;
        }

        /* Live Trading - Mobile Optimized */
        .live-trading {
            background: #1a1a1a;
            border-radius: 16px;
            overflow: hidden;
            margin: 16px 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .trading-header {
            background: #2d2d30;
            padding: 12px 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .trading-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10a37f;
            border-radius: 50%;
            animation: blink 2s infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .trading-stats {
            display: flex;
            gap: 12px;
        }

        .trading-stat {
            text-align: right;
        }

        .stat-label {
            font-size: 9px;
            color: #999;
        }

        .stat-value {
            font-size: 13px;
            font-weight: 600;
            color: #10a37f;
        }

        /* Stocks Grid - Mobile Optimized */
        .stocks-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 12px;
            max-height: 280px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .stock-card {
            background: #2d2d30;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 12px;
            transition: all 0.2s;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .stock-card:active {
            transform: scale(0.98);
            background: rgba(16, 163, 127, 0.05);
        }

        .stock-left {
            flex: 1;
        }

        .stock-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }

        .stock-symbol {
            font-size: 13px;
            font-weight: 600;
        }

        .stock-change {
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 6px;
            font-weight: 600;
        }

        .stock-change.positive {
            background: rgba(16, 163, 127, 0.1);
            color: #10a37f;
        }

        .stock-change.negative {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .stock-price {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .stock-info {
            font-size: 10px;
            color: #999;
        }

        /* GPT-5 Features - Mobile Optimized */
        .gpt-features {
            background: linear-gradient(135deg, rgba(16, 163, 127, 0.05), rgba(16, 163, 127, 0.02));
            border: 1px solid rgba(16, 163, 127, 0.2);
            border-radius: 16px;
            padding: 14px;
            margin: 16px 0;
        }

        .gpt-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .gpt-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #10a37f, #0d8062);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

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

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 13px;
            color: #d1d5db;
            line-height: 1.4;
        }

        .feature-check {
            color: #10a37f;
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* Options - Mobile Touch Optimized */
        .options {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 16px 0;
        }

        .option {
            background: #2d2d30;
            border: 2px solid transparent;
            border-radius: 12px;
            padding: 14px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 12px;
            min-height: 70px;
        }

        .option:active {
            transform: scale(0.98);
            background: rgba(16, 163, 127, 0.05);
        }

        .option.selected {
            background: rgba(16, 163, 127, 0.08);
            border-color: #10a37f;
        }

        .option-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .option-content {
            flex: 1;
        }

        .option-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
            color: #ececf1;
        }

        .option-desc {
            font-size: 12px;
            color: #999;
            line-height: 1.3;
        }

        /* Form - Mobile Optimized */
        .form-group {
            margin-bottom: 16px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 13px;
            color: #999;
            font-weight: 500;
        }

        .form-input {
            width: 100%;
            padding: 14px;
            background: #2d2d30;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #ececf1;
            font-size: 16px;
            transition: all 0.2s;
            -webkit-appearance: none;
            appearance: none;
        }

        .form-input:focus {
            outline: none;
            border-color: #10a37f;
            background: rgba(255, 255, 255, 0.03);
        }

        .phone-input-group {
            display: flex;
            gap: 8px;
        }

        .phone-prefix {
            width: 80px;
            padding: 14px;
            background: #1a1a1a;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #999;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Buttons - Mobile Touch Optimized */
        .buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            position: sticky;
            bottom: 0;
            background: #212121;
            padding: 12px 0;
            margin-left: -16px;
            margin-right: -16px;
            padding-left: 16px;
            padding-right: 16px;
            padding-bottom: calc(12px + env(safe-area-inset-bottom));
        }

        .btn {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-appearance: none;
            appearance: none;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-primary {
            background: #10a37f;
            color: white;
        }

        .btn-primary:active {
            background: #0d8062;
        }

        .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: #ececf1;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:active {
            background: rgba(255, 255, 255, 0.08);
        }

        /* Stats Grid - Mobile Optimized */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 16px 0;
        }

        .stat-card {
            background: #2d2d30;
            border-radius: 12px;
            padding: 12px 8px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-number {
            font-size: 18px;
            font-weight: 700;
            color: #10a37f;
            margin-bottom: 4px;
        }

        .stat-desc {
            font-size: 10px;
            color: #999;
            line-height: 1.2;
        }

        /* Modal - Mobile Optimized */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px;
            align-items: center;
            justify-content: center;
        }

        .modal.show {
            display: flex;
        }

        .modal-content {
            background: #2d2d30;
            border-radius: 20px;
            padding: 24px;
            max-width: 340px;
            width: 100%;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .success-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10a37f, #0d8062);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin: 0 auto 16px;
            color: white;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 4px;
            height: 4px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
        }

        /* Select Dropdown - Mobile Optimized */
        select {
            -webkit-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 8px center;
            background-size: 16px;
            padding-right: 30px;
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #10a37f;
            animation: spin 0.8s linear infinite;
        }

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

        /* Reviews Carousel Styles */
        .reviews-section {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 20px 16px;
            margin: 16px 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

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

        .reviews-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #ececf1;
        }

        .trustpilot-logo {
            background: #00b67a;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .reviews-rating {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .stars {
            display: flex;
            gap: 2px;
        }

        .star {
            width: 16px;
            height: 16px;
            background: #00b67a;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .rating-text {
            font-size: 12px;
            color: #999;
        }

        .reviews-carousel {
            position: relative;
            overflow: hidden;
            margin: 0 -16px;
            padding: 0 16px;
        }

        .reviews-track {
            display: flex;
            transition: transform 0.3s ease;
            gap: 12px;
        }

        .review-card {
            flex: 0 0 calc(100% - 24px);
            background: #2d2d30;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 16px;
            margin: 0 12px;
        }

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

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

        .reviewer-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10a37f, #0d8062);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            font-weight: 600;
        }

        .reviewer-details {
            display: flex;
            flex-direction: column;
        }

        .reviewer-name {
            font-size: 13px;
            font-weight: 600;
            color: #ececf1;
        }

        .review-date {
            font-size: 10px;
            color: #666;
        }

        .review-stars {
            display: flex;
            gap: 1px;
        }

        .review-stars .star {
            width: 14px;
            height: 14px;
        }

        .review-text {
            font-size: 13px;
            color: #d1d5db;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .review-verified {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 8px;
            background: rgba(16, 163, 127, 0.1);
            border: 1px solid rgba(16, 163, 127, 0.2);
            border-radius: 6px;
            font-size: 10px;
            color: #10a37f;
            font-weight: 500;
        }

        .review-profit {
            margin-top: 10px;
            padding: 8px;
            background: rgba(16, 163, 127, 0.05);
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .review-profit-label {
            font-size: 11px;
            color: #999;
        }

        .review-profit-amount {
            font-size: 13px;
            font-weight: 600;
            color: #10a37f;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 16px;
        }

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

        .carousel-dot.active {
            width: 20px;
            border-radius: 3px;
            background: #10a37f;
        }

        .carousel-buttons {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 8px;
            pointer-events: none;
        }

        .carousel-btn {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.2s;
            color: #ececf1;
            font-size: 16px;
        }

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

        .carousel-btn:active {
            transform: scale(0.9);
        }

        /* POPUP STYLES START HERE */
        .bonus-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

        .bonus-popup-overlay.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bonus-popup {
            background: #2d2d30;
            border-radius: 20px;
            padding: 30px;
            max-width: 420px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(16, 163, 127, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: #999;
            font-size: 28px;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s;
        }

        .popup-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .popup-title {
            color: #ececf1;
            font-size: 22px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .popup-offer {
            text-align: center;
            color: #999;
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .popup-amount {
            display: block;
            color: #10a37f;
            font-size: 32px;
            font-weight: 700;
            margin: 8px 0;
        }

        .popup-timeline {
            background: rgba(16, 163, 127, 0.05);
            border: 1px solid rgba(16, 163, 127, 0.2);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 20px;
        }

        .timeline-item {
            color: #d1d5db;
            font-size: 14px;
            margin-bottom: 8px;
            padding-left: 8px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .popup-no-card {
            text-align: center;
            color: #ececf1;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .popup-no-card span {
            color: #999;
            font-weight: 400;
        }

        .popup-counter {
            background: rgba(255, 87, 34, 0.1);
            border: 1px solid rgba(255, 87, 34, 0.3);
            border-radius: 10px;
            padding: 10px;
            text-align: center;
            color: #ff5722;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        #spotsLeft {
            color: #ff5722;
            font-weight: 700;
        }

        .popup-cta {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #10a37f, #0d8062);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            box-shadow: 0 4px 15px rgba(16, 163, 127, 0.3);
        }

        .popup-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 163, 127, 0.4);
        }

        .popup-cta:active {
            transform: translateY(0);
        }

        .popup-footer {
            text-align: center;
            color: #666;
            font-size: 11px;
            font-style: italic;
            line-height: 1.4;
        }

        .popup-footer span {
            display: block;
            color: #999;
            margin-top: 4px;
        }

        /* Sticky Bonus Bar */
        .sticky-bonus-bar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #10a37f, #0d8062);
            padding: 12px 20px;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.5s ease;
        }

        .sticky-bonus-bar.show {
            display: block;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0);
            }
        }

        .sticky-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .sticky-text {
            color: white;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sticky-btn {
            padding: 8px 20px;
            background: white;
            color: #10a37f;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .sticky-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }

        /* Mini Reminder */
        .mini-reminder {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #2d2d30;
            border: 2px solid #10a37f;
            border-radius: 12px;
            padding: 16px;
            max-width: 280px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            animation: bounceIn 0.5s ease;
        }

        .mini-reminder.show {
            display: block;
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3) translateY(100px);
            }

            50% {
                transform: scale(1.05) translateY(-10px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .reminder-content {
            color: #ececf1;
            font-size: 13px;
            line-height: 1.4;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .reminder-btn {
            padding: 8px 16px;
            background: #10a37f;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .reminder-btn:hover {
            background: #0d8062;
        }

        .reminder-close {
            position: absolute;
            top: 8px;
            right: 8px;
            background: none;
            border: none;
            color: #666;
            font-size: 20px;
            cursor: pointer;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Responsive Adjustments */
        @media (min-width: 768px) {
            .main {
                max-width: 600px;
                padding: 24px;
            }

            .profit-timeline {
                grid-template-columns: repeat(4, 1fr);
            }

            .stocks-grid {
                grid-template-columns: repeat(2, 1fr);
                max-height: 320px;
            }

            .stock-card {
                display: block;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 24px;
            }

            .bonus-popup {
                padding: 24px;
                margin: 20px;
            }

            .popup-title {
                font-size: 18px;
            }

            .popup-amount {
                font-size: 28px;
            }

            .sticky-content {
                justify-content: center;
                text-align: center;
            }

            .mini-reminder {
                left: 20px;
                right: 20px;
                max-width: none;
            }

            .review-card {
                flex: 0 0 calc(50% - 18px);
            }
        }

        /* iPhone X+ Safe Areas */
        @supports (padding: max(0px)) {
            .header {
                padding-top: max(14px, env(safe-area-inset-top));
            }

            .buttons {
                padding-bottom: max(12px, env(safe-area-inset-bottom));
            }

            .sticky-bonus-bar {
                padding-top: max(12px, env(safe-area-inset-top));
            }
        }

        /* Prevent zoom on input focus (iOS) */
        @media (hover: none) {

            input[type="text"],
            input[type="tel"],
            select {
                font-size: 16px !important;
            }
        }

        /* Dark mode adjustments */
        @media (prefers-color-scheme: dark) {
            .modal {
                background: rgba(0, 0, 0, 0.9);
            }
        }

        /* Animation for form highlight */
        @keyframes highlightForm {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(16, 163, 127, 0);
            }

            50% {
                box-shadow: 0 0 20px 10px rgba(16, 163, 127, 0.5);
            }
        }