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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 50%, #1a1a1a 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated background elements */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(180, 180, 180, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(220, 220, 220, 0.06) 0%, transparent 50%);
            animation: backgroundMove 20s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes backgroundMove {
            0%, 100% { transform: translateX(0px) translateY(0px); }
            25% { transform: translateX(10px) translateY(-10px); }
            50% { transform: translateX(-5px) translateY(10px); }
            75% { transform: translateX(-10px) translateY(-5px); }
        }

        .faucet-card {
            background: rgba(220, 220, 220, 0.15);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(220, 220, 220, 0.2);
            max-width: 450px;
            width: 100%;
            text-align: center;
            animation: cardFloat 6s ease-in-out infinite;
            position: relative;
        }

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

        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #e8e8e8;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(220, 220, 220, 0.3);
            animation: logoGlow 3s ease-in-out infinite alternate;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .logo::before {
            content: '';
            width: 40px;
            height: 40px;
            background: #3a3a3a;
            border-radius: 50%;
            display: inline-block;
            position: relative;
            border: 3px solid #2d2d2d;
        }

        .logo::after {
            content: 'M';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            margin-left: -25px;
            color: #e8e8e8;
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: none;
        }

        @keyframes logoGlow {
            from { text-shadow: 0 2px 10px rgba(220, 220, 220, 0.3); }
            to { text-shadow: 0 2px 20px rgba(220, 220, 220, 0.6); }
        }

        .subtitle {
            color: rgba(220, 220, 220, 0.9);
            font-size: 1rem;
            margin-bottom: 25px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }

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

        .faucet-info {
            background: rgba(220, 220, 220, 0.1);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
            color: #e8e8e8;
            border: 1px solid rgba(220, 220, 220, 0.1);
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.7s forwards;
        }

        .stat-value {
            color: #4CAF50;
            font-size: 1.6rem;
            font-weight: bold;
            margin-bottom: 5px;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .stat-label {
            color: rgba(220, 220, 220, 0.8);
            font-size: 0.9rem;
        }

        .cooldown-notice {
            background: rgba(180, 120, 0, 0.2);
            border: 1px solid rgba(200, 140, 20, 0.4);
            border-radius: 8px;
            padding: 12px;
            color: #e8e8e8;
            font-size: 0.85rem;
            margin-top: 15px;
        }

        .input-group {
            margin-bottom: 25px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.9s forwards;
        }

        .wallet-input {
            width: 100%;
            padding: 15px;
            font-size: 0.95rem;
            border: 2px solid rgba(220, 220, 220, 0.2);
            border-radius: 12px;
            background: rgba(220, 220, 220, 0.1);
            color: #e8e8e8;
            outline: none;
            transition: all 0.3s ease;
        }

        .wallet-input::placeholder {
            color: rgba(220, 220, 220, 0.6);
        }

        .wallet-input:focus {
            border-color: rgba(220, 220, 220, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 220, 220, 0.1);
        }

        .claim-btn, .completed-btn {
            width: 100%;
            padding: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #e8e8e8;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.1s forwards;
            position: relative;
            overflow: hidden;
        }

        .claim-btn {
            background: linear-gradient(45deg, #4a4a4a, #3a3a3a);
            border: 2px solid #2d2d2d;
        }

        .claim-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 220, 220, 0.2), transparent);
            transition: left 0.5s;
        }

        .claim-btn:hover::before {
            left: 100%;
        }

        .completed-btn {
            background: linear-gradient(45deg, #28a745, #20c997);
            display: none;
        }

        .claim-btn:hover, .completed-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .claim-btn:active, .completed-btn:active {
            transform: translateY(-1px);
        }

        .claim-btn:disabled, .completed-btn:disabled {
            background: #666;
            cursor: not-allowed;
            transform: none;
        }

        .countdown-timer {
            background: rgba(180, 120, 0, 0.2);
            border: 1px solid rgba(200, 140, 20, 0.4);
            border-radius: 12px;
            padding: 15px;
            margin: 20px 0;
            text-align: center;
            display: none;
            color: #e8e8e8;
        }

        .countdown-display {
            color: #d4c107;
            font-size: 1.4rem;
            font-weight: bold;
            font-family: 'Courier New', monospace;
            animation: countdownPulse 1s ease-in-out infinite;
        }

        @keyframes countdownPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .success-message, .error-message {
            padding: 12px;
            border-radius: 12px;
            margin: 15px 0;
            font-weight: 500;
            text-align: center;
            display: none;
            animation: messageSlide 0.5s ease-out;
        }

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

        .success-message {
            background: rgba(40, 167, 69, 0.2);
            border: 1px solid rgba(40, 167, 69, 0.4);
            color: #d4edda;
        }

        .error-message {
            background: rgba(220, 53, 69, 0.2);
            border: 1px solid rgba(220, 53, 69, 0.4);
            color: #f8d7da;
        }

        /* Task Modal Styles */
        .task-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
            animation: modalFadeIn 0.3s ease-out;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .task-content {
            background: rgba(255, 255, 255, 0.95);
            padding: 35px;
            border-radius: 20px;
            max-width: 550px;
            width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .task-title {
            font-size: 1.6em;
            color: #3a3a3a;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .task-description {
            color: #555;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .task-list {
            text-align: left;
            margin: 25px 0;
        }

        .task-item {
            display: flex;
            align-items: center;
            padding: 12px;
            margin: 8px 0;
            background: rgba(58, 58, 58, 0.1);
            border-radius: 10px;
            border-left: 3px solid #3a3a3a;
            transition: transform 0.2s ease;
        }

        .task-item:hover {
            transform: translateX(5px);
        }

        .task-icon {
            font-size: 1.3em;
            margin-right: 12px;
            color: #3a3a3a;
        }

        .task-text {
            flex: 1;
            color: #333;
        }

        .task-text strong {
            color: #3a3a3a;
        }

        .task-link {
            color: #3a3a3a;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            transition: color 0.2s ease;
        }

        .task-link:hover {
            color: #2d2d2d;
            text-decoration: underline;
        }

        .modal-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 25px;
        }

        .close-btn, .complete-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .close-btn {
            background: #6c757d;
            color: white;
        }

        .close-btn:hover {
            background: #5a6268;
            transform: translateY(-1px);
        }

        .complete-btn {
            background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
            color: white;
            font-weight: 600;
        }

        .complete-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(58, 58, 58, 0.3);
        }

        .warning-box {
            background: rgba(255, 193, 7, 0.15);
            border: 1px solid rgba(255, 193, 7, 0.4);
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
            color: #856404;
            font-size: 0.9rem;
        }

        /* Footer with social links */
        .footer {
            margin-top: 30px;
            text-align: center;
            color: rgba(220, 220, 220, 0.7);
            font-size: 0.85rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.3s forwards;
        }

        .footer-info {
            margin-bottom: 15px;
        }

        .footer-info a {
            color: rgba(220, 220, 220, 0.8);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-info a:hover {
            color: #e8e8e8;
        }

        .powered-by {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 10px;

        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(220, 220, 220, 0.1);
            border-radius: 50%;
            color: rgba(220, 220, 220, 0.8);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(220, 220, 220, 0.2);
        }

        .social-link:hover {
            background: rgba(220, 220, 220, 0.2);
            color: #e8e8e8;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(220, 220, 220, 0.2);
        }

        @media (max-width: 600px) {
            .faucet-card {
                padding: 25px;
                margin: 10px;
            }

            .logo {
                font-size: 1.8rem;
            }

            .task-content {
                padding: 20px;
            }

            .modal-buttons {
                flex-direction: column;
            }

            .close-btn, .complete-btn {
                width: 100%;
            }

            .social-links {
                gap: 10px;
            }

            .social-link {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }
