  * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            min-height: 100%;
        }

        body {
            background: #ffffff;
            color: #111111;
            font-family: Inter, Arial, sans-serif;
        }

        .login-page {
            width: 100%;
            max-width: 340px;
            margin: 0 auto;
            padding: 35px 28px 40px;
        }

        .brand {
            text-align: center;
        }

        .brand h1 {
            margin: 0;
            font-size: 22px;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: 0.2px;
        }

        .brand p {
            margin: 6px 0 10px;
            font-size: 15px;
            line-height: 1.2;
        }

        .avocado-logo {
            display: block;
            width: 52px;
            height: 52px;
            margin: 4px auto 8px;
            object-fit: contain;
        }

        .message {
            margin: 0 0 10px;
            min-height: 16px;
            color: #a40000;
            font-size: 12px;
            line-height: 1.3;
            text-align: center;
        }

        .login-form {
            width: 131px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 14px;
        }

        label {
            display: block;
            margin-bottom: 2px;
            font-size: 10px;
            line-height: 1.2;
        }

        input[type='email'],
        input[type='password'] {
            display: block;
            width: 131px;
            height: 16px;
            padding: 1px 3px;
            border: 1px solid #111;
            border-radius: 0;
            background: #fff;
            font: 11px Arial, sans-serif;
            outline: none;
        }

        input[type='email']:focus,
        input[type='password']:focus {
            outline: 1px solid #555;
            outline-offset: 1px;
        }

        .account-links {
            display: flex;
            align-items: center;
            white-space: nowrap;
            margin-top: 15px;
            font-size: 7px;
            line-height: 1;
        }

        .account-links a {
            color: #111;
            text-decoration: underline;
margin-top: 15px;
        }

        .account-links span {
            margin: 0 3px;
            margin-top: 15px;
        }

        .login-button,
        .resend-button {
            display: block;
            margin: 12px auto 0;
            min-width: 69px;
            height: 25px;
            padding: 0 12px;
            border: 1px solid #111;
            border-radius: 0;
            background: #fff;
            color: #111;
            font-family: Arial, sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
        }

        .login-button:hover,
        .resend-button:hover {
            background: #f1f1f1;
        }

        .verification-box {
            width: 260px;
            margin: 0 auto;
            text-align: center;
        }

        .verification-box p {
            font-size: 12px;
            line-height: 1.4;
        }

        @media (max-width: 360px) {
            .login-page {
                padding-top: 28px;
            }
        }


.treasure-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.treasure-message {
    padding: 24px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.treasure-success {
    background: #e8f8ec;
    border: 2px solid #28a745;
}

.treasure-error {
    background: #fdecec;
    border: 2px solid #dc3545;
}

.treasure-already-found {
    background: #fff8e1;
    border: 2px solid #ffc107;
}

.treasure-message h2 {
    margin-top: 0;
}

.treasure-message a {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
}