* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-body {
    background: linear-gradient(to right, #e8f4f0, #f8f1eb);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    cursor: url(./Sanrio\ Cinnamoroll\ White\ Arrow\ &\ Head--cursor--SweezyCursors\ \(1\).png), auto;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    animation: fadeInSlideDown 0.6s ease-out forwards;
}

.logo-thing {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

.h-logo {
    background-color: #0b9e84;
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
}

.links-thing {
    display: flex;
    gap: 30px;
    color: #666;
}

.links-thing a {
    text-decoration: none;
    color: inherit;
}

.links-thing span {
    cursor: pointer;
}

.active-link {
    color: #0b9e84;
    font-weight: bold;
}

.light-text {
    color: #aaa;
}

.right-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.grey-box {
    background-color: #eee;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.h-logo-style-button {
    background-color: #0b9e84;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.big-flex-container {
    display: flex;
    max-width: 1000px;
    margin: 40px auto;
    gap: 20px;
    animation: fadeInSlideUp 0.6s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.dark-left-box {
    background-color: #1a332d;
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    flex: 1;
}

.white-right-box {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.small-title {
    color: #bbb;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 20px;
}

.small-title-blue {
    color: #0b9e84;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 20px;
}

.huge-heading {
    font-size: 45px;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.medium-heading {
    font-size: 30px;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.description-text {
    color: #b0c2be;
    line-height: 1.6;
    margin-bottom: 30px;
}

.bullet-points {
    color: #b0c2be;
    line-height: 1.6;
    padding-left: 20px;
}

.bullet-points li {
    margin-bottom: 15px;
}

.form-stuff {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-wrapper label {
    font-size: 14px;
    color: #555;
    font-weight: bold;
}

.input-wrapper input,
.input-wrapper select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    background-color: #fff;
}

.two-inputs {
    display: flex;
    gap: 15px;
}

.two-inputs .input-wrapper {
    flex: 1;
}

.big-green-button {
    background-color: #0b9e84;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
}

.main-dashboard-area {
    max-width: 1100px;
    margin: 40px auto;
    animation: fadeInSlideUp 0.6s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.top-dash-split {
    display: flex;
    gap: 40px;
}

.dash-left {
    flex: 1.2;
}

.smit-text {
    color: #0b9e84;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 20px;
}

.huge-heading-black {
    font-size: 55px;
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: #222;
}

.dash-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.button-row {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.short-btn {
    width: auto;
    padding: 12px 25px;
    border-radius: 20px;
}

.big-white-button {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.stats-row {
    display: flex;
    gap: 20px;
}

.stat-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.stat-title {
    color: #0b9e84;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.stat-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.dash-right-dark {
    background-color: #1a332d;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    flex: 1;
}

.medium-heading-white {
    font-size: 35px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.dark-inner-box {
    background-color: #f7ede2;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.dark-inner-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.dark-inner-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.content-section {
    margin-top: 60px;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-header-left {
    max-width: 600px;
}

.section-header-left h2 {
    font-size: 30px;
    margin: 0;
    color: #222;
}

.white-pill-btn {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.cards-row {
    display: flex;
    gap: 20px;
}

.info-card {
    background-color: #fdfaf5;
    padding: 30px;
    border-radius: 20px;
    flex: 1;
}

.info-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    color: #222;
}

.info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.request-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.tags-row {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag-pill {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
}

.tag-blue {
    background-color: #e8f4f0;
    color: #0b9e84;
}

.tag-red {
    background-color: #fce8e8;
    color: #d65c5c;
}

.tag-green {
    background-color: #e8f5ec;
    color: #43965b;
}

.tag-grey {
    background-color: #f1f3f4;
    color: #5f6368;
}

.req-heading {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.req-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.req-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f9f9f9;
    padding-top: 20px;
}

.req-user-info strong {
    display: block;
    font-size: 14px;
    color: #222;
    margin-bottom: 5px;
}

.req-user-meta {
    font-size: 12px;
    color: #888;
}

.small-white-btn {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.footer-text {
    text-align: left;
    color: #999;
    font-size: 12px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.explore-split {
    display: flex;
    gap: 30px;
}

.explore-filters-box {
    background-color: #fcf9f2;
    padding: 40px;
    border-radius: 20px;
    flex: 0.8;
}

.explore-feed {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-input-wrapper {
    margin-bottom: 25px;
}

.filter-input-wrapper label {
    display: block;
    font-size: 13px;
    color: #444;
    font-weight: bold;
    margin-bottom: 10px;
}

.filter-input-wrapper input,
.filter-input-wrapper select,
.filter-input-wrapper textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    background-color: #fff;
}

.filter-input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.leaderboard-panel {
    background-color: #fdfaf5;
    padding: 40px;
    border-radius: 20px;
    flex: 1;
}

.leaderboard-title {
    color: #0b9e84;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.leaderboard-heading {
    font-size: 32px;
    margin: 0 0 30px 0;
    color: #222;
}

.rank-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.avatar-teal {
    background-color: #0b9e84;
}

.avatar-dark {
    background-color: #1a2733;
}

.avatar-orange {
    background-color: #f08935;
}

.rank-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rank-name-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rank-name {
    font-weight: bold;
    font-size: 14px;
    color: #222;
}

.rank-tags {
    font-size: 13px;
    color: #888;
}

.rank-stats-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.rank-score {
    font-weight: bold;
    font-size: 14px;
    color: #222;
}

.rank-count {
    font-size: 13px;
    color: #888;
}

.trust-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.trust-name {
    font-weight: bold;
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
}

.trust-badges {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.progress-track {
    background-color: #f0f0f0;
    height: 8px;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #f08935, #0b9e84);
    border-radius: 10px;
}

.notification-panel {
    background-color: #fdfaf5;
    padding: 40px;
    border-radius: 20px;
}

.notification-card {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.notification-card:last-child {
    margin-bottom: 0;
}

.notif-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notif-text {
    font-size: 15px;
    color: #222;
    font-weight: bold;
}

.notif-meta {
    font-size: 13px;
    color: #888;
}

.notif-status {
    font-size: 13px;
    font-weight: bold;
    color: #222;
}

.trend-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.trend-title {
    color: #0b9e84;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.trend-value {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.2;
}

.trend-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.recommendation-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.recommendation-card:last-child {
    margin-bottom: 0;
}

.rec-title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.rec-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.form-card {
    background-color: #fdfaf5;
    padding: 40px;
    border-radius: 20px;
    flex: 1.5;
}

.ai-assistant-card {
    background-color: #fdfaf5;
    padding: 40px;
    border-radius: 20px;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .filter-input-wrapper {
    flex: 1;
}

.form-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.btn-white-pill {
    background-color: #fff;
    color: #222;
    font-weight: bold;
    border: 1px solid #ebebeb;
    padding: 12px 25px;
    border-radius: 20px;
    cursor: pointer;
}

.btn-green-pill {
    background-color: #0b9e84;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 25px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(11, 158, 132, 0.3);
}

.ai-guidance-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.ai-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
}

.ai-row:last-child {
    border-bottom: none;
}

.ai-label {
    color: #666;
    font-size: 14px;
    flex-shrink: 0;
    width: 130px;
}

.ai-value {
    color: #222;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
}

.msg-card {
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.msg-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    padding-right: 20px;
}

.msg-header {
    font-size: 15px;
    font-weight: bold;
    color: #222;
}

.msg-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.time-circle {
    background-color: #e8f4f0;
    color: #0b9e84;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1.2;
}

.w-full {
    width: 100%;
}


.profile-inputs-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .links-thing {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .right-buttons {
        width: 100%;
        justify-content: center;
    }

    .big-flex-container,
    .top-dash-split,
    .stats-row,
    .cards-row,
    .explore-split,
    .form-row,
    .two-inputs,
    .profile-inputs-row {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ai-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ai-label {
        width: auto;
    }

    .ai-value {
        text-align: left;
    }

    .msg-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .msg-content {
        padding-right: 0;
    }

    .dark-left-box,
    .white-right-box,
    .dash-right-dark,
    .explore-filters-box,
    .leaderboard-panel,
    .notification-panel,
    .form-card,
    .ai-assistant-card,
    .info-card,
    .request-card {
        padding: 20px !important;
    }

    .huge-heading {
        font-size: 32px !important;
    }

    .huge-heading-black {
        font-size: 36px !important;
    }

    .medium-heading {
        font-size: 24px !important;
    }

    .medium-heading-white {
        font-size: 26px !important;
    }

    .main-dashboard-area {
        padding: 15px;
        margin-top: 20px;
    }
}

/* Premium Micro-Interactions */
.ripple-effect {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: rippleAnim 0.6s linear;
    width: 2px;
    height: 2px;
}

@keyframes rippleAnim {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

#toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.premium-toast {
    background: #1a332d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideUpToast 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.premium-toast.fade-out {
    animation: fadeOutToast 0.4s ease forwards;
}

@keyframes slideUpToast {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeOutToast {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

#main {
    display: none;
}

#load {
    position: absolute;
    top: 40vh;
    left: 45vw;
}

/* From Uiverse.io by Pradeepsaranbishnoi */
#🤚 {
    --skin-color: #E4C560;
    --tap-speed: 0.6s;
    --tap-stagger: 0.1s;
    position: absolute;
    top: 50vh;
    left: 45vw;
    width: 80px;
    height: 60px;
    margin-left: 80px;
}

#🤚:before {
    content: '';
    display: block;
    width: 180%;
    height: 75%;
    position: absolute;
    top: 70%;
    right: 20%;
    background-color: black;
    border-radius: 40px 10px;
    filter: blur(10px);
    opacity: 0.3;
}

.🌴 {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--skin-color);
    border-radius: 10px 40px;
}

.👍 {
    position: absolute;
    width: 120%;
    height: 38px;
    background-color: var(--skin-color);
    bottom: -18%;
    right: 1%;
    transform-origin: calc(100% - 20px) 20px;
    transform: rotate(-20deg);
    border-radius: 30px 20px 20px 10px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.👍:after {
    width: 20%;
    height: 60%;
    content: '';
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: -8%;
    left: 5px;
    border-radius: 60% 10% 10% 30%;
    border-right: 2px solid rgba(0, 0, 0, 0.05);
}

.👉 {
    position: absolute;
    width: 80%;
    height: 35px;
    background-color: var(--skin-color);
    bottom: 32%;
    right: 64%;
    transform-origin: 100% 20px;
    animation-duration: calc(var(--tap-speed) * 2);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transform: rotate(10deg);
}

.👉:before {
    content: '';
    position: absolute;
    width: 140%;
    height: 30px;
    background-color: var(--skin-color);
    bottom: 8%;
    right: 65%;
    transform-origin: calc(100% - 20px) 20px;
    transform: rotate(-60deg);
    border-radius: 20px;
}

.👉:nth-child(1) {
    animation-delay: 0;
    filter: brightness(70%);
    animation-name: tap-upper-1;
}

.👉:nth-child(2) {
    animation-delay: var(--tap-stagger);
    filter: brightness(80%);
    animation-name: tap-upper-2;
}

.👉:nth-child(3) {
    animation-delay: calc(var(--tap-stagger) * 2);
    filter: brightness(90%);
    animation-name: tap-upper-3;
}

.👉:nth-child(4) {
    animation-delay: calc(var(--tap-stagger) * 3);
    filter: brightness(100%);
    animation-name: tap-upper-4;
}

@keyframes tap-upper-1 {

    0%,
    50%,
    100% {
        transform: rotate(10deg) scale(0.4);
    }

    40% {
        transform: rotate(50deg) scale(0.4);
    }
}

@keyframes tap-upper-2 {

    0%,
    50%,
    100% {
        transform: rotate(10deg) scale(0.6);
    }

    40% {
        transform: rotate(50deg) scale(0.6);
    }
}

@keyframes tap-upper-3 {

    0%,
    50%,
    100% {
        transform: rotate(10deg) scale(0.8);
    }

    40% {
        transform: rotate(50deg) scale(0.8);
    }
}

@keyframes tap-upper-4 {

    0%,
    50%,
    100% {
        transform: rotate(10deg) scale(1);
    }

    40% {
        transform: rotate(50deg) scale(1);
    }
}