



        
        .content {
            padding: 40px 30px;
        }

        .status-section {
            margin-bottom: 30px;
        }

        .status-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            overflow: hidden;
        }

        .status-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.1; }
        }

        .status-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
            z-index: 1;
            position: relative;
        }

        .status-title {
            font-size: 22px;
            font-weight: 600;
            color: #f0f0f0;
            text-align: center;
            margin-bottom: 15px;
        }

        .status-description {
            font-size: 16px;
            color: #e3f2fd;
            text-align: center;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #f0f0f0;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 30px;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #4CAF50, #45a049);
            border-radius: 4px;
            width: 75%;
            position: relative;
            animation: progressAnimation 2s ease-in-out;
        }

        @keyframes progressAnimation {
            0% { width: 0%; }
            100% { width: 75%; }
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .time-info {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 4px solid #2196F3;
        }

        .time-info h3 {
            color: #1976D2;
            font-size: 16px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .time-info p {
            color: #424242;
            font-size: 14px;
            line-height: 1.5;
        }

        .refer-section {
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border-left: 4px solid #FF9800;
            margin-bottom: 20px;
        }

        .refer-section h3 {
            color: #F57C00;
            font-size: 18px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .refer-section p {
            color: #424242;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .refer-button {
            background: linear-gradient(135deg, #FF9800, #F57C00);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .refer-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transition: all 0.3s ease;
            transform: translate(-50%, -50%);
        }

        .refer-button:hover::before {
            width: 200%;
            height: 200%;
        }

        .refer-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
        }

        .refer-button:active {
            transform: translateY(0);
        }

        .refer-button span {
            position: relative;
            z-index: 1;
        }

        .bonus-highlight {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-left: 5px;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        .withdrawal-details {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .detail-row:last-child {
            border-bottom: none;
        }

        .detail-label {
            font-weight: 600;
            color: #495057;
            font-size: 14px;
        }

        .detail-value {
            color: #212529;
            font-size: 14px;
            font-weight: 500;
        }

        .amount {
            color: #4CAF50;
            font-weight: 700;
            font-size: 18px;
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .container {
                /* margin: 10px; */
                max-width: 100%;
            }
            
            .header {
                padding: 20px;
            }
            
            .header h1 {
                font-size: 20px;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .status-title {
                font-size: 20px;
            }
            
            .status-description {
                font-size: 14px;
            }
            
            .refer-section {
                padding: 20px;
            }
            
            .refer-button {
                padding: 12px 25px;
                font-size: 14px;
            }
        }

        @media (max-width: 360px) {
            .refer-button {
                padding: 10px 20px;
                font-size: 13px;
            }
        }
