
        :root {
            --primary: #f59e0b;
            --primary-dark: #d97706;
            --secondary: #e2569c;
            --dark: #1f2937;
            --light: #f9fafb;
            --gray: #6b7280;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            
        }

        body {
            background-image: url(/image/photo_2025-06-17_05-22-27.jpg);
            background-size: 150px;
            background-position: center;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 100%;
            max-width: 500px;
        }

        .header {
            background-color: var(--primary);
            padding: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
        }

        .logo {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        h1 {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 16px;
            font-weight: 400;
        }

        .content {
            padding: 25px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .stat-card {
            background-color: #f3f4f6;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
        }

        .stat-label {
            color: var(--gray);
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .stat-value {
            color: var(--dark);
            font-size: 18px;
            font-weight: 700;
        }

        .prize-pool {
            background-color: #fef3c7;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            margin-bottom: 25px;
            border: 2px dashed var(--primary);
        }

        .prize-label {
            color: var(--primary-dark);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .prize-amount {
            color: var(--primary-dark);
            font-size: 24px;
            font-weight: 700;
        }

        .connect-btn {
            background-color: var(--secondary);
            color: rgb(138, 46, 69);
            border: none;
            border-radius: 50px;
            padding: 15px 30px;
            font-size: 18px;
            width: 100%;
            font-display: flex;
            font-variant-position: normal;
            cursor: pointer;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(236, 72, 153, 0.3);
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: center;
            justify-content: space-between;  
            text-align: center;
        } 

        .button-image {
            float: left;
        }

        .connect-btn:hover {
            background-color: #db2777;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(236, 72, 153, 0.4);
        }

        .connect-btn:active {
            transform: translateY(0);
        }

        .enter-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 30px;
            font-size: 18px;
            width: 100%;
            cursor: pointer;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
        }

        .enter-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(245, 158, 11, 0.4);
        }

        .enter-btn:active {
            transform: translateY(0);
        }

        .enter-btn:disabled {
            background-color: #d1d5db;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .status {
            text-align: center;
            margin-bottom: 20px;
            min-height: 24px;
            font-size: 14px;
        }

        .success {
            color: #10b981;
        }

        .error {
            color: #ef4444;
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(245, 158, 11, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .how-it-works {
            margin-top: 25px;
        }

        .how-it-works h3 {
            color: var(--dark);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .steps {
            list-style-type: none;
        }

        .steps li {
            display: flex;
            margin-bottom: 12px;
            color: var(--gray);
        }

        .steps li .step-number {
            color: var(--primary);
            font-weight: 700;
            margin-right: 10px;
        }

        .footer {
            background-color: #f3f4f6;
            padding: 15px;
            text-align: center;
            font-size: 12px;
            color: var(--gray);
        }

        .wallet-connected {
            background-color: #d1fae5;
            color: #065f46;
            padding: 10px 15px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 14px;
            font-weight: 600;
        }

        .wallet-connected .wallet-icon {
            margin-right: 8px;
            font-size: 16px;
        }

        .disconnect-btn {
            background: none;
            border: none;
            color: #ef4444;
            font-size: 12px;
            cursor: pointer;
            margin-left: 10px;
        }

        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background-color: var(--primary);
            opacity: 0;
            z-index: 9999;
            animation: confetti-fall 5s linear forwards;
        }

        @keyframes confetti-fall {
            0% {
                transform: translateY(-100vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }