  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(61, 122, 82, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #3d7a52 0%, #4fd68c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-left: 30px;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #4fd68c;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3d7a52, #4fd68c);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .hero {
            text-align: center;
            padding: 160px 20px 100px;
            background: radial-gradient(ellipse at top, rgba(61, 122, 82, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(61, 122, 82, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(79, 214, 140, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -2px;
            position: relative;
        }

        .hero h1 span {
            background: linear-gradient(135deg, #3d7a52 0%, #4fd68c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 50px;
        }

        .product-image {
            max-width: 600px;
            margin: 60px auto;
            animation: float 3s ease-in-out infinite;
            position: relative;
            filter: drop-shadow(0 30px 60px rgba(79, 214, 140, 0.3));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(2deg); }
        }

        .product-image img {
            width: 100%;
            height: auto;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3d7a52 0%, #4fd68c 100%);
            color: white;
            padding: 20px 60px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(79, 214, 140, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 25px 50px rgba(79, 214, 140, 0.4);
        }

        .section {
            padding: 100px 20px;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 60px;
            letter-spacing: -1px;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .step {
            text-align: center;
            padding: 50px 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 30px;
            border: 1px solid rgba(79, 214, 140, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(61, 122, 82, 0.1) 0%, rgba(79, 214, 140, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .step:hover::before {
            opacity: 1;
        }

        .step:hover {
            transform: translateY(-10px);
            border-color: rgba(79, 214, 140, 0.3);
            box-shadow: 0 30px 60px rgba(79, 214, 140, 0.2);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3d7a52 0%, #4fd68c 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 800;
            margin: 0 auto 25px;
            position: relative;
            box-shadow: 0 10px 30px rgba(79, 214, 140, 0.3);
        }

        .step h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #ffffff;
            position: relative;
        }

        .step p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            position: relative;
        }

        .rules {
            background: radial-gradient(ellipse at center, rgba(61, 122, 82, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
        }

        .rules-content {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            padding: 50px;
            border-radius: 30px;
            border: 1px solid rgba(79, 214, 140, 0.1);
            backdrop-filter: blur(10px);
        }

        .rules-content ul {
            list-style: none;
            padding: 0;
        }

        .rules-content li {
            padding: 20px 0;
            padding-left: 45px;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            border-bottom: 1px solid rgba(79, 214, 140, 0.1);
        }

        .rules-content li:last-child {
            border-bottom: none;
        }

        .rules-content li:before {
            content: "✓";
            position: absolute;
            left: 0;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #3d7a52, #4fd68c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 16px;
        }

        .form-section {
            background: radial-gradient(ellipse at center, rgba(61, 122, 82, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
        }

        .form-container {
            max-width: 650px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            padding: 60px;
            border-radius: 30px;
            border: 1px solid rgba(79, 214, 140, 0.1);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #ffffff;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 18px 20px;
            border: 1px solid rgba(79, 214, 140, 0.2);
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: #1a1a1a;
            color: #ffffff;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4fd68c;
            background: rgba(79, 214, 140, 0.05);
            box-shadow: 0 0 0 4px rgba(79, 214, 140, 0.1);
        }

        .price-info {
            background: linear-gradient(135deg, #3d7a52, #4fd68c);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 35px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 10px 30px rgba(79, 214, 140, 0.3);
        }

        .progress-section {
            background: linear-gradient(135deg, #1a2f1f 0%, #0a0a0a 100%);
            border-top: 1px solid rgba(79, 214, 140, 0.2);
            border-bottom: 1px solid rgba(79, 214, 140, 0.2);
        }

        .progress-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .progress-stats {
            text-align: center;
            margin-bottom: 40px;
        }

        .progress-stats h2 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .progress-number {
            font-size: 80px;
            font-weight: 900;
            margin: 30px 0;
            background: linear-gradient(135deg, #4fd68c, #3d7a52);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -3px;
        }

        .progress-bar-container {
            background: rgba(255, 255, 255, 0.1);
            height: 40px;
            border-radius: 20px;
            overflow: hidden;
            margin-top: 30px;
            border: 1px solid rgba(79, 214, 140, 0.2);
            position: relative;
        }

        .progress-bar {
            background: linear-gradient(90deg, #3d7a52, #4fd68c);
            height: 100%;
            width: 74.5%;
            transition: width 1s ease;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .check-section {
            background: #0a0a0a;
        }

        .check-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .hash-input {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .hash-input input {
            flex: 1;
        }

        .btn-secondary {
            background: linear-gradient(135deg, #3d7a52, #4fd68c);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(79, 214, 140, 0.3);
        }

        .result-box {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(79, 214, 140, 0.2);
            display: none;
            backdrop-filter: blur(10px);
        }

        .result-box.active {
            display: block;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .result-box h3 {
            color: #4fd68c;
            margin-bottom: 25px;
            font-size: 24px;
        }

        .result-box p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
            font-size: 16px;
        }

        .result-box strong {
            color: #ffffff;
        }

        footer {
            background: #000000;
            color: white;
            padding: 60px 20px;
            text-align: center;
            border-top: 1px solid rgba(79, 214, 140, 0.2);
        }

        .footer-disclaimer {
            max-width: 800px;
            margin: 0 auto;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.8;
        }

        .footer-disclaimer strong {
            color: #4fd68c;
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 140px 20px 80px;
            }

            .hero h1 {
                font-size: 36px;
                letter-spacing: -1px;
            }

            .hero p {
                font-size: 18px;
            }

            nav {
                display: none;
            }

            .section-title {
                font-size: 32px;
            }

            .form-container {
                padding: 40px 25px;
            }

            .hash-input {
                flex-direction: column;
            }

            .btn-secondary {
                width: 100%;
            }

            .progress-number {
                font-size: 56px;
            }

            .step {
                padding: 40px 30px;
            }
        }





    .ranking-container {
        max-width: 600px;
        margin: 0 auto;
       background: #0a0a0a;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th, td {
        padding: 12px 15px;
        text-align: left;
    }

    th {
         background: #0a0a0a;
        color: white;
    }

    tr:nth-child(even) {
         background: #171717;
    }

    tr:hover {
        background: #0f0f0f;
    }

    .position {
        font-weight: bold;
    }

    @media (max-width: 480px) {
        th, td {
            padding: 8px 10px;
        }
    }

