@keyframes fadeInAll {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@font-face {
    font-family: "ComicIR";
    src: url("assets/font/B Mehr Bold.ttf");
}

:root {
    --bg: #090a14;
    --bg-2: #111324;
    --primary: #ff2e63;
    --primary-2: #ffb703;
    --cyan: #00f5d4;
    --purple: #7b2cff;
    --text: #ffffff;
    --muted: #b8bfd9;
    --card: rgba(255,255,255,0.08);
    --border: rgba(255,255,255,0.16);
    --shadow: 0 24px 80px rgba(0,0,0,0.45);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    font-family: "ComicIR", Tahoma, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: "ComicIR", Tahoma, Arial, sans-serif;
}

body {
    margin: 0;
    font-family: "ComicIR", Tahoma, Arial, sans-serif;
    background:
        radial-gradient(circle at 20% 0%, rgba(255,46,99,0.25), transparent 32%),
        radial-gradient(circle at 90% 10%, rgba(0,245,212,0.18), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(123,44,255,0.2), transparent 40%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
    animation: fadeInAll 1s ease-in-out;
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.15));
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    font-family: "ComicIR", Tahoma, Arial, sans-serif;
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(9, 10, 20, 0.65);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.header-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,46,99,0.24), rgba(0,245,212,0.14), rgba(255,183,3,0.18));
    opacity: 0.65;
    filter: blur(40px);
}

.header-top {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.site-logo img {
    width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(255,46,99,0.55));
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 600px;
    min-height: 50px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 16px 45px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.header-search:focus-within {
    border-color: rgba(0,245,212,0.5);
    box-shadow: 0 0 30px rgba(0,245,212,0.2), inset 0 0 0 1px rgba(255,255,255,0.04);
}

.header-search input {
    flex: 1;
    min-width: 0;
    height: 40px;
    padding: 0 40px 0 14px;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--text);
    font-size: 14px;
}

.header-search input::placeholder {
    color: rgba(255,255,255,0.55);
}

.search-icon {
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
    color: var(--cyan);
}

.search-icon svg,
.action-icon svg,
.nav-pill svg,
.slider-btn svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.header-search button {
    height: 40px;
    border: 0;
    padding: 0 24px;
    border-radius: 999px;
    color: #111;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-2), #fff06a);
    box-shadow: 0 12px 30px rgba(255,183,3,0.28);
    transition: 0.25s ease;
}

.header-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255,183,3,0.45);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.action-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.action-icon {
    width: 20px;
    height: 20px;
}

.cart-btn .action-icon {
    color: var(--primary-2);
}

.register-btn .action-icon {
    color: var(--primary);
}

.main-nav {
    position: relative;
    padding: 4px 0 16px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    color: rgba(255,255,255,0.86);
    font-size: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.nav-pill span {
    width: 20px;
    height: 20px;
    color: var(--cyan);
    transition: color 0.3s ease;
}

.nav-pill:hover,
.nav-pill.active {
    color: #10101a;
    background: linear-gradient(135deg, var(--cyan), #faff00);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 245, 212, 0.4);
}

.nav-pill:hover span,
.nav-pill.active span {
    color: #10101a;
}

.site-main {
    padding-top: 34px;
    font-family: "ComicIR", Tahoma, Arial, sans-serif;
}

.hero-slider-section {
    padding: 12px 0 44px;
}

.hero-slider {
    position: relative;
    min-height: 560px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #111;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.14);
}

.hero-slider:after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 2px solid rgba(255,255,255,0.13);
    border-radius: calc(var(--radius) - 10px);
    pointer-events: none;
    z-index: 4;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.7s ease, transform 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9,10,20,0.95), rgba(9,10,20,0.62), rgba(9,10,20,0.18)),
        radial-gradient(circle at 20% 50%, rgba(255,46,99,0.32), transparent 36%);
}

.slide-content {
    position: absolute;
    z-index: 5;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
    width: min(560px, 82%);
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #111;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-2), #fff76b);
    box-shadow: 0 12px 40px rgba(255,183,3,0.3);
}

.slide-content h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.15;
    text-shadow: 4px 4px 0 rgba(255,46,99,0.45), 8px 8px 0 rgba(0,245,212,0.15);
}

.slide-content p {
    margin: 18px 0 28px;
    color: var(--muted);
    font-size: 18px;
    line-height: 2;
}

.slide-cta,
.panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 28px;
    border-radius: 18px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    box-shadow: 0 18px 45px rgba(255,46,99,0.28);
    transition: 0.25s ease;
}

.slide-cta:hover,
.panel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(255,46,99,0.42);
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    color: white;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(14px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: 0.25s ease;
}

.slider-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.slider-prev {
    right: 24px;
}

.slider-next {
    left: 24px;
}

.slider-dots {
    position: absolute;
    z-index: 8;
    bottom: 28px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255,255,255,0.45);
    transition: 0.25s ease;
}

.slider-dot.is-active {
    width: 38px;
    background: var(--primary-2);
}

.comic-gallery-section {
    padding: 30px 0 70px;
}

.section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-weight: 900;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 46px);
    text-shadow: 3px 3px 0 rgba(255,46,99,0.35);
}

.comic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.comic-card {
    position: relative;
    min-height: 330px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 22px 60px rgba(0,0,0,0.36);
    transform-style: preserve-3d;
    transition: 0.35s ease;
}

.comic-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.22), transparent 35%),
        linear-gradient(to top, rgba(0,0,0,0.35), transparent 45%);
    pointer-events: none;
}

.comic-card:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    width: 8px;
    z-index: 3;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 20px rgba(255,255,255,0.18);
}

.comic-card img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transition: 0.45s ease;
}

.comic-card:hover {
    transform: translateY(-12px) rotate(-1.5deg);
    border-color: rgba(0,245,212,0.45);
    box-shadow: 0 30px 80px rgba(0,245,212,0.13), 0 22px 60px rgba(0,0,0,0.48);
}

.comic-card:hover img {
    transform: scale(1.08);
}

.feature-panel-section {
    padding: 0 0 90px;
}

.feature-panel {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045)),
        radial-gradient(circle at 20% 30%, rgba(255,46,99,0.16), transparent 34%),
        radial-gradient(circle at 100% 90%, rgba(0,245,212,0.13), transparent 32%);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.feature-text {
    padding: 28px;
}

.panel-label {
    display: inline-block;
    color: #111;
    background: var(--cyan);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
}

.feature-text h2 {
    margin: 18px 0 14px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.35;
}

.feature-text p {
    color: var(--muted);
    line-height: 2.1;
    font-size: 16px;
}

.panel-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.panel-points div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.panel-points strong {
    display: block;
    margin-bottom: 6px;
}

.panel-points small {
    color: var(--muted);
}

.feature-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 430px;
    box-shadow: 0 24px 65px rgba(0,0,0,0.45);
}

.feature-image:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255,46,99,0.22), transparent 45%);
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 60px 15px;
    position: relative;
}

.auth-box {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    text-align: center;
    z-index: 10;
}

.auth-box::before {
    content: "";
    position: absolute;
    inset: -3px;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary), var(--cyan), var(--purple));
    filter: blur(20px);
    opacity: 0.35;
    border-radius: inherit;
    animation: glow-pulse 4s infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.25; filter: blur(15px); }
    100% { opacity: 0.5; filter: blur(25px); }
}

.auth-box h2, .auth-box h3 {
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--text);
    font-size: 28px;
    text-shadow: 3px 3px 0 rgba(255, 46, 99, 0.4);
}

.form-group {
    margin-bottom: 24px;
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 15px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    height: 54px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 0 18px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.25), inset 0 4px 15px rgba(0, 0, 0, 0.3);
}

.w-100 {
    width: 100%;
    margin-top: 15px;
    font-size: 18px;
}

.auth-switch {
    margin-top: 30px;
    color: var(--muted);
    font-size: 15px;
}

.auth-switch a {
    color: var(--cyan);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
    transition: 0.3s;
}

.auth-switch a:hover {
    color: var(--primary-2);
    text-shadow: 0 0 10px rgba(255, 183, 3, 0.5);
}

.auth-alert {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 46, 99, 0.2);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 46, 99, 0.2);
}

.dashboard-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.18);
    padding: 35px;
    border-radius: 34px;
    margin-bottom: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.dashboard-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,245,212,0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.dash-avatar img {
    border-radius: 50%;
    border: 4px solid var(--cyan);
    box-shadow: 0 0 30px rgba(0,245,212,0.4);
    width: 100px;
    height: 100px;
}

.dash-info h2 {
    margin: 0 0 8px;
    font-size: 28px;
    text-shadow: 2px 2px 0 rgba(123, 44, 255, 0.4);
}

.dash-info p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.btn-logout {
    margin-right: 0 !important;
    background: rgba(255,46,99,0.15) !important;
    border: 1px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(255, 46, 99, 0.2) !important;
}

.btn-logout:hover {
    background: var(--primary) !important;
    color: #fff;
    box-shadow: 0 15px 35px rgba(255, 46, 99, 0.4) !important;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dash-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.12);
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dash-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 183, 3, 0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 20px rgba(255, 183, 3, 0.15);
}

.dash-card h3 {
    margin-top: 0;
    color: var(--primary-2);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 18px;
    margin-bottom: 18px;
    font-size: 22px;
}

.dash-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dash-card ul li {
    padding: 14px 0;
    color: var(--text);
    border-bottom: 1px dashed rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
}

.dash-card ul li:last-child {
    border-bottom: none;
}

.dash-card a {
    color: var(--cyan);
    font-weight: bold;
    transition: 0.3s;
}

.dash-card a:hover {
    color: var(--primary);
    padding-right: 8px;
}

.site-footer {
    position: relative;
    background:
        radial-gradient(circle at 10% 0%, rgba(255,46,99,0.23), transparent 34%),
        radial-gradient(circle at 90% 40%, rgba(0,245,212,0.12), transparent 30%),
        #070812;
    border-top: 1px solid rgba(255,255,255,0.14);
    overflow: hidden;
    font-family: "ComicIR", Tahoma, Arial, sans-serif;
}

.footer-wave {
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--cyan), var(--purple));
    box-shadow: 0 0 35px rgba(0,245,212,0.45);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    padding: 52px 0;
}

.footer-box {
    min-height: 220px;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255,255,255,0.065);
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.footer-box h3 {
    margin: 0 0 18px;
    font-size: 23px;
    color: white;
    text-shadow: 2px 2px 0 rgba(255,46,99,0.35);
}

.footer-box p {
    color: var(--muted);
    line-height: 2;
    margin: 0;
}

.phone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phone-list li {
    padding: 9px 0;
    color: var(--muted);
    border-bottom: 1px dashed rgba(255,255,255,0.14);
}

.phone-list li:last-child {
    border-bottom: 0;
}

.trust-images {
    display: flex;
    gap: 16px;
    align-items: center;
}

.trust-images img {
    width: 110px;
    height: 130px;
    object-fit: contain;
    padding: 14px;
    border-radius: 20px;
    background: white;
    transition: 0.25s ease;
}

.trust-images img:hover {
    transform: translateY(-6px) rotate(-2deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    text-align: center;
    color: var(--muted);
}

.dash-xp-widget {
    margin-right: auto;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.xp-circle {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 245, 212, 0.15);
}

.xp-circle::after {
    content: '';
    position: absolute;
    inset: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.4));
    border-radius: 50%;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    position: relative;
    z-index: 2;
    transform: rotate(90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke: url(#xp-gradient);
    animation: progress 2s ease-out forwards;
    filter: drop-shadow(0 0 8px rgba(0, 245, 212, 0.6));
}

@keyframes progress {
    0% { stroke-dasharray: 0, 100; }
}

.xp-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.xp-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-weight: bold;
}
.xp-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    text-shadow: 0 0 15px rgba(255, 46, 99, 0.5);
    background: linear-gradient(90deg, #fff, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 1024px) {
    .comic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-panel {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .header-top {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 0;
        gap: 12px;
    }
    
    .site-logo {
        order: 1;
    }
    
    .site-logo img {
        width: 110px;
    }
    
    .header-actions {
        order: 2;
        width: auto;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .action-btn {
        height: 38px;
        padding: 0 12px;
        font-size: 13px;
        border-radius: 12px;
    }
    
    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
        min-height: 42px;
        padding: 4px;
        border-radius: 20px;
    }
    
    .header-search input {
        height: 34px;
        padding: 0 35px 0 10px;
        font-size: 13px;
    }
    
    .header-search button {
        height: 34px;
        padding: 0 16px;
        font-size: 13px;
    }

    .hero-slider {
        min-height: 470px;
    }
    .slide-content {
        right: 28px;
        width: calc(100% - 56px);
    }
    .slide-content p {
        font-size: 15px;
    }
    .slider-btn {
        width: 44px;
        height: 44px;
    }
    .comic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .comic-card,
    .comic-card img {
        min-height: 250px;
    }
    .feature-panel {
        padding: 18px;
    }
    .feature-text {
        padding: 10px;
    }
    .panel-points {
        grid-template-columns: 1fr;
    }
    .trust-images {
        flex-wrap: wrap;
    }
    .dashboard-header {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .btn-logout {
        margin-right: 0;
        width: 100%;
        margin-top: 20px;
    }
    .dash-xp-widget {
        margin: 20px auto;
    }
}

@media (max-width: 440px) {
    .comic-grid {
        grid-template-columns: 1fr;
    }
    .nav-inner {
        flex-direction: column;
        width: 100%;
    }
    .nav-pill {
        width: 100%;
        justify-content: center;
    }
    .header-search button {
        padding: 0 10px;
        font-size: 12px;
    }
}
