        body {
            font-family: 'Segoe UI', sans-serif;
            margin: 0;
            padding: 0;
            background: #111;
            color: #eee;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            flex-direction: column;
        }

        a {
            color: #87cefa;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .top-bar {
            width: 100%;
            position: absolute;
            top: 20px;
            left: 0;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            box-sizing: border-box;
        }

        .top-left a {
            color: #666;
        }

        .top-right a {
            color: #87cefa;
            margin-left: 20px;
        }

        .homepage-container {
            text-align: center;
            max-width: 800px;
            padding: 20px;
        }

        .homepage-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .homepage-subtitle {
            font-size: 1.1rem;
            color: #bbb;
            line-height: 1.5;
            margin-bottom: 40px;
        }

        .claim-wrapper {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .claim-row {
            background-color: rgba(30, 30, 30, 0.95);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 600px;
            width: 100%;
            box-sizing: border-box;
            position: relative;
        }

        .dropdown-wrapper {
            position: relative;
            width: 160px;
        }

        .claim-row select,
        .claim-row input,
        .claim-row button {
            height: 42px;
            padding: 0 12px;
            font-size: 16px;
            border-radius: 6px;
            border: 1px solid #777;
            background-color: #2c2c2c;
            color: white;
            box-sizing: border-box;
        }

        .claim-row select {
            width: 100%;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            padding-right: 30px;
        }

        .dropdown-arrow {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #aaa;
            font-size: 12px;
        }

        .claim-row input {
            flex: 1;
            min-width: 100px;
        }

        .claim-row button {
            background-color: #777;
            border: none;
            color: white;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.2s ease;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .claim-row button:hover {
            background-color: #555;
        }

        .claim-row .slash {
            font-size: 18px;
            color: #aaa;
            user-select: none;
            line-height: 42px;
        }

        /*@media (max-width: 600px) {
            body {
                transform: scale(0.95); 
            }

            .claim-row {
                flex-direction: column;
                align-items: stretch;
            }

            .claim-row .slash {
                display: none;
            }

            .claim-row select,
            .claim-row input,
            .claim-row button {
                width: 100%;
            }

            .top-bar {
                flex-direction: column;
                align-items: center;
                gap: 10px;
                text-align: center;
            }

            .top-right {
                margin-top: 5px;
            }
        }  */

@media (max-width: 600px) {
    .top-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 20px;
        font-size: 13px;
    }

    .top-left, .top-right {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .homepage-title {
        font-size: 2rem;
    }

    .homepage-subtitle {
        font-size: 1rem;
    }

    .claim-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .claim-row .slash {
        display: none;
    }

    .dropdown-wrapper {
        width: 100%;
    }

    .claim-row select,
    .claim-row input,
    .claim-row button {
        width: 100%;
        font-size: 15px;
        height: 42px;
    }

    .claim-row input {
        width: 100%;
        flex: none;
    }
}