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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 100%);
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 428px;
            margin: 0 auto;
            min-height: 100vh;
            position: relative;
        }

        /* Header */
        .header {
            background: rgba(26, 31, 46, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 24px;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #4f46e5, #06b6d4, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            letter-spacing: -0.5px;
        }

        .header-subtitle {
            text-align: center;
            font-size: 14px;
            color: #94a3b8;
            margin-top: 4px;
            font-weight: 500;
        }

        /* Main Content */
        .main-content {
            padding: 24px;
        }

        /* Hero Section */
        .hero-section {
            text-align: center;
            margin-bottom: 32px;
            padding: 32px 20px;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(16, 185, 129, 0.1));
            border: 1px solid rgba(79, 70, 229, 0.2);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #4f46e5, #10b981, #06b6d4);
        }

        .hero-emoji {
            font-size: 48px;
            margin-bottom: 16px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .hero-title {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #4f46e5, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .hero-subtitle {
            font-size: 16px;
            color: #e2e8f0;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .hero-description {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        /* Apology Message */
        .apology-message {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
            text-align: center;
        }

        .apology-emoji {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .apology-title {
            font-size: 18px;
            font-weight: 700;
            color: #a855f7;
            margin-bottom: 8px;
        }

        .apology-text {
            font-size: 14px;
            color: #d1d5db;
            line-height: 1.5;
        }

        /* Eligibility Section */
        .eligibility-section {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
        }

        .eligibility-title {
            font-size: 16px;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .eligibility-text {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .epochs-highlight {
            background: rgba(79, 70, 229, 0.2);
            color: #4f46e5;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        /* Rewards Preview */
        .rewards-section {
            margin-bottom: 32px;
        }

        .rewards-title {
            font-size: 20px;
            font-weight: 700;
            color: #e2e8f0;
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .rewards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 16px;
        }

        .reward-card {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .reward-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }

        .reward-icon {
            font-size: 28px;
            margin-bottom: 8px;
            display: block;
        }

        .reward-name {
            font-size: 14px;
            font-weight: 600;
            color: #e2e8f0;
            margin-bottom: 4px;
        }

        .reward-type {
            font-size: 11px;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nft-rewards {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 16px;
        }

        .nft-title {
            font-size: 14px;
            font-weight: 600;
            color: #10b981;
            margin-bottom: 12px;
            text-align: center;
        }

        .nft-list {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .nft-item {
            text-align: center;
        }

        .nft-emoji {
            font-size: 24px;
            margin-bottom: 4px;
            display: block;
        }

        .nft-name {
            font-size: 10px;
            color: #94a3b8;
        }

        /* Wallet Connection */
        .wallet-section {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 24px;
            text-align: center;
        }

        .wallet-status {
            margin-bottom: 20px;
        }

        .wallet-connected {
            display: none;
        }

        .wallet-connected.active {
            display: block;
        }

        .wallet-address {
            font-size: 14px;
            color: #4f46e5;
            background: rgba(79, 70, 229, 0.1);
            padding: 8px 12px;
            border-radius: 8px;
            margin-bottom: 16px;
        }

        .connect-button, .register-button {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .connect-button {
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: white;
        }

        .register-button {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .connect-button:hover, .register-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
        }

        .register-button:hover {
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

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

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 32px 24px;
            max-width: 350px;
            width: 90%;
            text-align: center;
            position: relative;
            backdrop-filter: blur(20px);
        }

        .modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #10b981, #06b6d4, #4f46e5);
        }

        .success-emoji {
            font-size: 48px;
            margin-bottom: 16px;
            animation: celebration 1s ease-in-out;
        }

        @keyframes celebration {
            0% { transform: scale(0.8) rotate(-10deg); }
            50% { transform: scale(1.1) rotate(5deg); }
            100% { transform: scale(1) rotate(0deg); }
        }

        .success-title {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #10b981, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .success-message {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .close-button {
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-button:hover {
            transform: translateY(-1px);
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 24px;
            color: #64748b;
            font-size: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 12px;
        }

        .footer-link {
            color: #4f46e5;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #06b6d4;
        }

        /* Responsive */
        @media (max-width: 375px) {
            .container {
                max-width: 100%;
            }
            
            .main-content {
                padding: 16px;
            }
            
            .hero-section {
                padding: 24px 16px;
            }
            
            .rewards-grid {
                grid-template-columns: 1fr;
            }
        }