* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: #111;
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: #111;
}

main {
    height: 100vh;
    width: 100%;
    background-color: #111;
    display: grid;
    grid-template-columns: 1fr 1fr 0.3fr 1.3fr 1fr;
    grid-template-rows: 1fr 1fr 0.5fr 0.8fr 1fr;
    gap: 16px;
    padding: 16px;
    grid-template-areas:
        "top-left top-center1 top-center1 top-center2 top-right"
        "top-left center center center top-right"
        "bottom-left center center center top-right"
        "bottom-left center center center bottom-right"
        "bottom-left bottom-center1 bottom-center2 bottom-center2 bottom-right";
}

main>div {
    position: relative;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.pink-txt {
    color: #f24e6a;
}

.grey-txt {
    color: #888;
    font-size: 0.75rem;
    font-weight: 500;
}

.green-txt {
    color: #2ebc7d;
    font-weight: 600;
}

.top-left {
    grid-area: top-left;
    background-color: #FCE8E9;
    border-radius: 24px;
}

.tl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tl-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.tl-header i {
    font-size: 1.5rem;
    color: #555;
}

.tl-circle-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.progress-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#f24e6a 75%, #f4d5d9 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #FCE8E9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.progress-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.progress-inner span {
    font-size: 0.7rem;
    color: #666;
}

.tl-stats h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tl-stats p {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

.tl-btn {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    width: max-content;
}

.bottom-left {
    grid-area: bottom-left;
    background-color: #191919;
    border-radius: 24px;
}

.bottom-left * {
    color: #fff;
}

.bottom-left .pink-txt {
    color: #f24e6a;
}

.bl-header {
    display: flex;
    justify-content: space-between;
}

.bl-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.bl-arrow {
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bl-arrow i {
    font-size: 1.2rem;
}

.bl-images {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    flex: 1;
}

.bl-img {
    flex: 1;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}

.bl-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #191919;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.bl-add-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f24e6a;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bl-add-btn i {
    font-size: 1.2rem;
    color: #fff;
}

.top-right {
    grid-area: top-right;
    background-color: #FDF9FA;
    border-radius: 24px;
}

.top-right h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.tr-avatars {
    display: flex;
    margin-top: 20px;
}

.tr-avatars img,
.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #FDF9FA;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.tr-avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #111;
    color: #fff;
}

.tr-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tr-info h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.tr-info h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.tr-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tr-icon {
    width: 45px;
    height: 45px;
    background: #FCE8E9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
}

.tr-icon i {
    font-size: 1.5rem;
}

.bottom-right {
    grid-area: bottom-right;
    background-color: #FDF9FA;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cubo-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.rings {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.ring {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid #111;
    border-radius: 50%;
}

.r1 {
    top: 0;
    left: 12px;
}

.r2 {
    bottom: 0;
    left: 0;
}

.r3 {
    bottom: 0;
    right: 0;
}

.cubo-logo h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.cubo-logo p {
    font-size: 0.8rem;
    color: #555;
}

.br-btn {
    background: #FCE8E9;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-center1 {
    grid-area: top-center1;
    background-color: #FDF9FA;
    border-radius: 24px;
    padding: 24px;
}

.tc1-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tc1-top h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-left: -2px;
}

.tc1-icon {
    width: 36px;
    height: 36px;
    background: #FCE8E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f24e6a;
    font-size: 1.2rem;
}

.tc1-desc {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.3;
}

.tc1-stat {
    margin-top: auto;
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    align-items: center;
}

.top-center2 {
    grid-area: top-center2;
    background-color: #FDF9FA;
    border-radius: 24px;
}

.tc2-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tc2-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tc2-left h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    margin-left: -2px;
}

.tc2-stat {
    line-height: 1.6;
    font-size: 0.8rem;
}

.tc2-icon {
    width: 45px;
    height: 45px;
    background: #FCE8E9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bottom-center1 {
    grid-area: bottom-center1;
    background-color: #FDF9FA;
    border-radius: 24px;
}

.bc1-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bc1-left h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.bc1-left p {
    font-size: 0.8rem;
    color: #555;
}

.bc1-icon {
    width: 40px;
    height: 40px;
    background: #FCE8E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #f24e6a;
}

.palette {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.color-box {
    width: 40px;
    height: 30px;
    border-radius: 8px;
}

.c-blk {
    background: #111;
}

.c-gry {
    background: #888;
}

.c-pnk {
    background: #f24e6a;
}

.c-lpnk {
    background: #FCE8E9;
}

.bc1-bot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
}

.bottom-center2 {
    grid-area: bottom-center2;
    background-color: #FDF9FA;
    border-radius: 24px;
    flex-direction: row;
    padding: 0;
}

.bc2-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bc2-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.bc2-content p {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 20px;
}

.bc2-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    width: max-content;
}

.bc2-img {
    width: 140px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.center {
    grid-area: center;
    background-color: #FCE5E6;
    border-radius: 24px;
    padding: 0;
    overflow: visible;
}

.center-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, #F18698 60%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.center-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 115%;
    background-size: auto 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 1;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 15px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fl-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.fl-top i {
    color: #888;
}

.fl-tl {
    top: 25%;
    left: 5%;
    width: 160px;
}

.fl-chart {
    font-size: 2.5rem;
    line-height: 1;
}

.fl-tr {
    top: 15%;
    right: 5%;
    width: 180px;
}

.fl-bars {
    display: flex;
    gap: 8px;
    height: 40px;
    align-items: flex-end;
    margin-bottom: 5px;
}

.bar {
    flex: 1;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.b1 {
    height: 60%;
}

.b2 {
    height: 100%;
}

.b3 {
    height: 40%;
}

.b4 {
    height: 80%;
}

.fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.f-pnk {
    background: #f24e6a;
}

.f-yell {
    background: #fcd303;
}

.fl-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.5rem;
    color: #888;
}

.fl-bl {
    bottom: 10%;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 30px;
}

.play-btn {
    width: 36px;
    height: 36px;
    background: #f24e6a;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.play-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}

.play-info span {
    font-size: 0.6rem;
    color: #666;
}

.fl-br {
    bottom: 10%;
    right: 5%;
    width: 160px;
}

.heart-ico {
    width: 28px;
    height: 28px;
    background: #FCE8E9;
    border-radius: 50%;
    color: #f24e6a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.fl-br h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.fl-br span {
    font-size: 0.7rem;
    color: #666;
}

.fl-br .green-txt {
    font-size: 0.7rem;
    margin-top: 10px;
}