.container{

    width:100%;
    max-width:430px;

    margin:0 auto;

    padding:18px 20px 120px;

}

.actions{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:12px;

    margin:30px 0;

}

.action-card{

    background:#FFFFFF;

    border-radius:18px;

    padding:20px 12px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    gap:12px;

    box-shadow:0 6px 18px rgba(0,0,0,.06);

    transition:.25s;

}

.action-card:hover{

    transform:translateY(-3px);

}


.action-card span{

    display:block;

    font-size:14px;

    font-weight:600;

}

.course-link{

    display:block;

}

.title-row{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:10px;

}

.title-icon{

    width:28px;

    height:28px;

    color:#E58AB3;

    flex-shrink:0;

}

.action-icon{

    width:30px;

    height:30px;

    display:block;

    flex-shrink:0;

}

.section-icon{

    width:22px;

    height:22px;

}

.course-icon{

    width:20px;

    height:20px;

}

.action-icon-wrapper{

    width:58px;

    height:58px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #FCE5EF,
        #F7D7E7
    );

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 8px 20px rgba(229,138,179,.20);

    transition:.25s;

}

.action-card:hover .action-icon-wrapper{

    transform:scale(1.08);

}

.action-icon{

    width:28px;

    height:28px;

    color:#E58AB3;

}

.back-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:24px;

    font-weight:600;

    color:#E58AB3;

    transition:.25s;

}

.back-link:hover{

    transform:translateX(-3px);

}

.profile-header{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    margin:10px 0 35px;

}

.profile-avatar{

    width:90px;

    height:90px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #FCE5EF,
        #F7D7E7
    );

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 24px rgba(229,138,179,.20);

    margin-bottom:18px;

}

.profile-avatar img{

    width:42px;

    height:42px;

}

.profile-name{

    font-size:24px;

    font-weight:700;

    color:#222;

    margin-bottom:8px;

}

.profile-subtitle{

    color:#777;

    font-size:16px;

}

.profile-header{

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    margin:20px 0 32px;

}

.profile-avatar{

    width:72px;
    height:72px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #FCE5EF,
        #F7D7E7
    );

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:16px;

    box-shadow:0 10px 24px rgba(229,138,179,.20);

}

.profile-avatar img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:50%;

}

.profile-name{

    font-size:24px;
    font-weight:700;
    color:#222;

}

.profile-stats{

    display:flex;
    justify-content:space-evenly;

    margin:30px 0 34px;

}

.profile-stat{

    flex:1;
    text-align:center;

}

.profile-stat-value{

    font-size:28px;
    font-weight:700;
    color:#E58AB3;

}

.profile-stat-label{

    margin-top:4px;

    font-size:14px;
    color:#888;
    line-height:1.4;

}

.profile-menu{

    display:flex;
    flex-direction:column;
    gap:14px;

}

.profile-footer{

    margin-top:36px;
    text-align:center;

}

.profile-footer a{

    font-size:13px;
    color:#999;

}

.chips{

    display:flex;

    gap:10px;

    margin:12px 0 16px;

    overflow-x:auto;

    scrollbar-width:none;

}

.chips::-webkit-scrollbar{

    display:none;

}

.chip{

    border:none;

    background:#FFFFFF;

    padding:10px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    color:#777;

    box-shadow:0 6px 16px rgba(0,0,0,.05);

    transition:
        background .25s,
        color .25s,
        transform .18s,
        box-shadow .25s;

    white-space:nowrap;

}

.chip:hover{

    transform:translateY(-1px);

}

.chip:active{

    transform:scale(.95);

}

.chip.active{

    background:linear-gradient(
        135deg,
        #E58AB3,
        #F1A6C8
    );

    color:#FFFFFF;

    box-shadow:
        0 8px 20px rgba(229,138,179,.25);

}

.chip.active{

    background:#E58AB3;

    color:#FFFFFF;

    box-shadow:0 8px 18px rgba(229,138,179,.28);

}

.chip:active{

    transform:scale(.96);

}

.page-header{

    display:grid;

    grid-template-columns:48px 1fr 48px;

    align-items:center;

    margin-bottom:10px;

    min-height:48px;

}

.page-title{

    margin:0;

    text-align:center;

    font-size:22px;

    font-weight:700;

    color:#1E1E1E;

    line-height:1;

}

.page-header-button{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#FFFFFF;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
        0 6px 16px rgba(0,0,0,.05);

    transition:.2s;

}

.page-header-button:hover{

    transform:translateY(-1px);

}

.page-header-button:active{

    transform:scale(.96);

}

.page-header-placeholder{

    width:42px;

    height:42px;

}

.page-header-icon{

    width:18px;

    height:18px;

}

.home-header{

    margin-bottom:22px;

}

.home-header h1{

    margin:0;

    font-size:34px;

    font-weight:700;

    line-height:1.2;

    color:#1E1E1E;

}

.home-header p{

    margin-top:14px;

    font-size:18px;

    color:#777;

    line-height:1.5;

}