:root {
    --edr-red: #c60000;
    --edr-black: #000000;
    --edr-white: #ffffff;
    --grass: #087a2f;
    --grass-dark: #04591f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, var(--grass), var(--grass-dark));
    color: var(--edr-white);
    min-height: 100vh;
}

.field-bg {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .5;
}

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    background: rgba(0,0,0,.82);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
    animation: fadeUp .8s ease;
}

.ball {
    font-size: 48px;
    animation: bounce 1.8s infinite ease-in-out;
}

h1, h2 {
    margin-top: 0;
}

label {
    display: block;
    margin-top: 16px;
    margin-bottom: 6px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    color: white;
    outline: none;
}

button, .card a {
    display: inline-block;
    margin-top: 22px;
    padding: 14px 18px;
    border: none;
    border-radius: 14px;
    background: var(--edr-red);
    color: white;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

button:hover, .card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198,0,0,.35);
}

.alert {
    background: rgba(198,0,0,.2);
    border: 1px solid var(--edr-red);
    padding: 12px;
    border-radius: 12px;
    margin: 16px 0;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,.85);
    padding: 18px 24px;
    border-bottom: 3px solid var(--edr-red);
}

.hero {
    padding: 60px 24px;
    text-align: center;
    background: radial-gradient(circle, rgba(198,0,0,.35), transparent 60%);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    padding: 24px;
}

.card {
    background: rgba(0,0,0,.75);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-10px) rotate(12deg);
    }
}
select {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.65);
    color: white;
    outline: none;
}
.stadium-lights {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top center,
        rgba(255,255,255,.15),
        transparent 45%);
}

.hero-dashboard {
    position: relative;
    overflow: hidden;
    min-height: 320px;

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.75)),
        url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?q=80&w=1600&auto=format&fit=crop');

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
        rgba(198,0,0,.15),
        rgba(0,0,0,.45));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 70px 24px;
    text-align: center;
}

.group-chip,
.invite-box {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.15);
}

.banner-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 24px;
}

.banner-card {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,.05);
    transition: transform .25s;
}

.banner-card:hover {
    transform: scale(1.02);
}

.banner-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 24px;
}

.glass-card {
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(12px);
}

.group-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.member-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px;
    border-radius: 14px;

    background: rgba(255,255,255,.05);
}

.badge-admin {
    padding: 6px 10px;
    border-radius: 999px;
    background: #c60000;
    font-size: 12px;
    font-weight: bold;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px;
    border-radius: 16px;

    background: rgba(255,255,255,.05);
}

.ranking-position {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c60000;
    font-weight: bold;
}

.ranking-name {
    flex: 1;
}

.ranking-points {
    font-weight: bold;
}

.match-placeholder {
    text-align: center;
    padding: 30px 20px;
}

.mini-ball {
    font-size: 46px;
    animation: bounce 2s infinite;
}

.big-number {
    font-size: 44px;
    font-weight: bold;
    margin: 10px 0;
}

.table-wrap {
    overflow-x: auto;
}

.pro-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.pro-table th,
.pro-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    text-align: left;
}

.pro-table th {
    background: rgba(198,0,0,.35);
}

.pro-table tr:hover {
    background: rgba(255,255,255,.05);
}
.single-column {
    grid-template-columns: 1fr;
    max-width: 980px;
    margin: 0 auto;
}

.success {
    background: rgba(0, 180, 80, .2);
    border: 1px solid rgba(0, 255, 120, .6);
    padding: 12px;
    border-radius: 12px;
    margin: 16px 0;
}

.match-card {
    animation: fadeUp .6s ease;
}

.match-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.9);
}

.match-head span {
    margin-left: 10px;
    opacity: .75;
}

.match-date {
    font-weight: bold;
}

.prediction-form {
    margin: 0;
}

.teams-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 18px;
    align-items: center;
}

.team-box {
    background: rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 18px;
    text-align: center;
}

.team-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.team-box input {
    max-width: 90px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

.vs-box {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.locked-msg {
    margin-top: 18px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    text-align: center;
    font-weight: bold;
}

@media (max-width: 700px) {
    .teams-row {
        grid-template-columns: 1fr;
    }

    .vs-box {
        padding: 4px 0;
    }

    .match-head {
        flex-direction: column;
    }
}
.topnav {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.topnav a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    transition: .2s;
}

.topnav a:hover {
    background: #c60000;
    transform: translateY(-2px);
}

.ranking-pro-card {
    padding: 18px;
}

.ranking-ultra-item {
    display: grid;
    grid-template-columns: 70px 1fr 90px;
    align-items: center;
    gap: 14px;
    padding: 18px;
    margin-bottom: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    animation: fadeUp .45s ease;
}

.ranking-ultra-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(255,215,0,.22), rgba(198,0,0,.25));
}

.ranking-ultra-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(192,192,192,.20), rgba(255,255,255,.05));
}

.ranking-ultra-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(205,127,50,.22), rgba(255,255,255,.05));
}

.ranking-me {
    border: 2px solid #c60000;
}

.ranking-medal {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}

.ranking-player strong {
    display: block;
    font-size: 18px;
}

.ranking-player span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.ranking-total {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

.ranking-total small {
    display: block;
    font-size: 12px;
    opacity: .7;
}

@media (max-width: 720px) {
    .topbar {
        flex-direction: column;
        gap: 12px;
    }

    .topnav {
        justify-content: center;
    }

    .ranking-ultra-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.banner-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 18px;
}

.banner-admin-card {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

.banner-admin-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.banner-admin-body {
    padding: 16px;
}

.banner-admin-body small {
    display: block;
    margin-top: 4px;
    opacity: .7;
}

.banner-metrics {
    margin-top: 10px;
    font-size: 14px;
    opacity: .85;
}
.group-admin-card h2 {
    margin-bottom: 6px;
}

.group-admin-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.status-open,
.status-closed {
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: bold;
}

.status-open {
    background: rgba(0, 180, 80, .25);
    border: 1px solid rgba(0, 255, 120, .6);
}

.status-closed {
    background: rgba(198, 0, 0, .25);
    border: 1px solid rgba(198, 0, 0, .8);
}

.group-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.group-stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
}

.group-stats strong {
    display: block;
    font-size: 22px;
}

.group-stats span {
    display: block;
    margin-top: 4px;
    opacity: .75;
    font-size: 13px;
}

.copy-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.copy-box input {
    flex: 1;
}

.copy-box button {
    margin-top: 0;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .group-admin-header,
    .copy-box {
        flex-direction: column;
    }

    .copy-box button {
        width: 100%;
    }
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #25D366;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: .2s;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, .35);
}

.profile-card {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.profile-preview {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
}

.profile-preview img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c60000;
    background: rgba(255,255,255,.12);
}

.profile-preview h2 {
    margin: 0;
}

.profile-preview p {
    margin: 6px 0 0;
    opacity: .75;
}
.member-with-avatar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.member-with-avatar img,
.ranking-player-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c60000;
    background: rgba(255,255,255,.12);
}

.ranking-player-avatar {
    display: flex;
    align-items: center;
    gap: 12px;
}
.match-hero {
    position: relative;
    overflow: hidden;
    margin: 24px;
    border-radius: 32px;
    min-height: 320px;

    background:
        linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.75)),
        url('https://images.unsplash.com/photo-1517927033932-b3d18e61fb3a?q=80&w=1600&auto=format&fit=crop');

    background-size: cover;
    background-position: center;

    box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.match-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top,
        rgba(198,0,0,.35),
        transparent 60%);
}

.match-hero-content {
    position: relative;
    z-index: 2;

    min-height: 320px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 20px;
}

.hero-teams {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;

    margin-top: 22px;
}

.hero-team {
    min-width: 220px;

    padding: 22px;

    border-radius: 24px;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);

    font-size: 24px;
}

.hero-vs {
    font-size: 42px;
    font-weight: bold;
}

.hero-match-date {
    margin-top: 24px;
    font-size: 18px;
    opacity: .9;
}

.countdown {
    margin-top: 24px;

    font-size: 34px;
    font-weight: bold;

    color: #fff;

    text-shadow: 0 0 20px rgba(255,255,255,.35);
}

.match-status {
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: bold;
}

.status-live {
    background: rgba(255,0,0,.2);
    border: 1px solid rgba(255,0,0,.7);
    animation: pulseLive 1.2s infinite;
}

.status-final {
    background: rgba(255,255,255,.15);
}

.status-next {
    background: rgba(0,150,255,.18);
    border: 1px solid rgba(0,150,255,.6);
}

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

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
.csv-help {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.05);
}

.csv-help pre {
    margin: 0;
    white-space: pre-wrap;
    color: #fff;
}

.notif-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    margin-left: 6px;
    border-radius: 999px;
    background: #c60000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.notification-list {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.notification-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

.notification-item.unread {
    border-color: rgba(198,0,0,.9);
    background: rgba(198,0,0,.18);
}

.notification-icon {
    font-size: 30px;
}

.notification-body strong {
    display: block;
    font-size: 17px;
}

.notification-body p {
    margin: 6px 0;
}

.notification-body span {
    font-size: 13px;
    opacity: .7;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.achievement-total {
    min-width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(198,0,0,.2);

    font-weight: bold;
    font-size: 18px;
}

.achievement-grid {
    margin-top: 24px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 18px;

    border-radius: 22px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    transition: all .25s ease;
}

.achievement-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255,255,255,.18);

    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.achievement-icon {
    width: 70px;
    height: 70px;

    min-width: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 34px;

    box-shadow: 0 0 25px rgba(255,255,255,.15);
}

.achievement-info strong {
    display: block;
    font-size: 17px;
}

.achievement-info p {
    margin: 6px 0 10px;
    opacity: .9;
}

.achievement-info span {
    font-size: 13px;
    opacity: .65;
}

.empty-text {
    opacity: .75;
    margin-top: 18px;
}
.share-achievement-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 10px;

    padding: 10px 18px;

    border-radius: 999px;

    background: #c60000;

    color: #fff;
    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    transition: all .25s ease;
}

.share-achievement-btn:hover {
    transform: translateY(-2px);
    background: #e00000;
}

.achievement-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;

    background: rgba(0,0,0,.78);
    backdrop-filter: blur(8px);
}

.achievement-modal {
    position: relative;

    width: 100%;
    max-width: 760px;

    padding: 24px;

    border-radius: 30px;

    background: rgba(10,10,10,.96);

    border: 1px solid rgba(255,255,255,.14);

    box-shadow: 0 30px 100px rgba(0,0,0,.65);

    text-align: center;

    animation: modalPop .35s ease;
}

.achievement-modal h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.achievement-modal h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.achievement-modal p {
    opacity: .85;
}

.achievement-modal img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.achievement-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    padding: 0;
    margin: 0;

    font-size: 28px;
    line-height: 1;

    background: rgba(255,255,255,.12);
}

.achievement-modal-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;

    margin-top: 22px;
}

.achievement-modal-actions a,
.achievement-modal-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 20px;

    border-radius: 999px;

    background: #c60000;

    color: #fff;
    text-decoration: none;

    font-weight: bold;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.95);
    }

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

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.career-stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.career-stat strong {
    display: block;
    font-size: 34px;
    margin-bottom: 6px;
}

.career-stat span {
    display: block;
    font-size: 13px;
    opacity: .75;
}
.hof-card h2 {
    margin-bottom: 18px;
}

.hof-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hof-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hof-item {
    display: grid;
    grid-template-columns: 48px 58px 1fr;
    align-items: center;
    gap: 12px;

    width: 100%;
    min-height: 74px;

    padding: 12px;

    border-radius: 18px;

    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);

    overflow: hidden;
}

.hof-position {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #c60000;
    color: #fff;

    font-weight: bold;
    font-size: 14px;
}

.hof-avatar {
    width: 50px !important;
    height: 50px !important;

    min-width: 50px !important;
    max-width: 50px !important;

    min-height: 50px !important;
    max-height: 50px !important;

    border-radius: 50% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;

    border: 2px solid #c60000;
    background: rgba(255,255,255,.12);
}

.hof-user {
    min-width: 0;
    overflow: hidden;
}

.hof-user strong {
    display: block;

    font-size: 15px;
    line-height: 1.2;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hof-user span {
    display: block;

    margin-top: 4px;

    font-size: 12px;
    opacity: .75;
}

.hof-item:first-child {
    border: 2px solid #ffd700;

    background: linear-gradient(
        135deg,
        rgba(255,215,0,.18),
        rgba(255,255,255,.05)
    );
}

.hof-item:first-child .hof-position {
    background: #ffd700;
    color: #000;
}
.level-stat {
    background: linear-gradient(
        135deg,
        rgba(255,215,0,.18),
        rgba(198,0,0,.18)
    );
    border: 1px solid rgba(255,215,0,.45);
}
.xp-bar {

    width: 100%;
    height: 12px;

    margin: 12px 0;

    border-radius: 999px;

    overflow: hidden;

    background: rgba(
        255,
        255,
        255,
        .08
    );
}

.xp-bar-fill {

    height: 100%;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #ffd700,
        #ff9f00
    );

    transition: width .5s ease;
}
.avatar-unlock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.avatar-unlock-card {
    position: relative;
    padding: 20px;
    border-radius: 24px;
    text-align: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .25s ease;
}

.avatar-unlock-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
}

.avatar-equipped {
    border: 2px solid #ffd700;
    background: linear-gradient(
        135deg,
        rgba(255,215,0,.18),
        rgba(198,0,0,.15)
    );
}

.avatar-image-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
}

.avatar-image-wrap img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c60000;
    background: rgba(255,255,255,.12);
}

.avatar-lock-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.avatar-locked {
    opacity: .6;
}

.avatar-status {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,215,0,.2);
    border: 1px solid rgba(255,215,0,.6);
    font-weight: bold;
}

.avatar-status.locked {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
}