/* ============================================================
   BRAWL NETWORK — main.css
   Single stylesheet shared by all pages.
   Link with: <link rel="stylesheet" href="/main.css">
   ============================================================ */


/* ── BASE ────────────────────────────────────────────────── */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 180, 255, 0.2), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 160, 0, 0.2), transparent 45%),
        #06080f;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body::before {
    content: "";
    position: fixed;
    inset: -20%;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 200, 255, 0.15), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 120, 0, 0.15), transparent 40%);
    animation: floatBG 18s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes floatBG {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 30px) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}


/* ── NAVBAR ──────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    display: flex;
    gap: 10px;
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-btn {
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-btn.active {
    background: linear-gradient(180deg, #3a5eff, #2d4be0);
    box-shadow: 0 0 12px rgba(58, 94, 255, 0.6);
}

@media (max-width: 600px) {
    .nav-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .navbar {
        top: 10px;
        width: min(calc(100vw - 24px), 310px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
    }

    .nav-btn {
        width: 100%;
        min-width: 0;
        padding: 10px 8px;
        font-size: 12px;
        text-align: center;
        white-space: nowrap;
    }
}



/* ── LAYOUT ──────────────────────────────────────────────── */

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    position: relative;
}

.grid::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(0, 255, 150, 0.12), transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

@media (max-width: 600px) {
    .container {
        padding: 110px 12px 30px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}


/* ── HEADER ──────────────────────────────────────────────── */

.header {
    text-align: center;
    margin: 10px 0 25px;
}

.title {
    font-size: 30px;
    font-weight: 700;
}

.subtitle {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 6px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    text-align: center;
    background: linear-gradient(90deg, #ffffff, #7ab6ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: 0.5s ease;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, #3a5eff, #00e676);
    border-radius: 2px;
}

.section-title.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    text-shadow: 0 0 10px rgba(122, 182, 255, 0.4);
}



/* Header entrance animation */
.header .title,
.header .subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.header.show .title {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 20px rgba(122, 182, 255, 0.4);
}

.header.show .subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.brand {
    margin-bottom: 14px;
}

.brand img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 0 25px rgba(58, 94, 255, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.6s ease;
}

.header.show .brand img {
    opacity: 1;
    transform: translateY(0);
    animation: logoFloat 4s ease-in-out infinite;
    animation-delay: 0.4s;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

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


/* ── CARD ────────────────────────────────────────────────── */

.card {
    background: linear-gradient(180deg, #1f3f52, #0c1f2a);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(25px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.5s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card.show:hover {
    transform: translateY(-6px);
}

.card.expired {
    opacity: 0.45;
    filter: grayscale(0.6);
}

.card.expired .icon {
    filter: grayscale(1);
}

@media (max-width: 600px) {
    .card {
        padding: 14px;
        border-radius: 14px;
    }
}


/* ── CARD CONTENTS ───────────────────────────────────────── */

.icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 14px;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.name {
    font-size: 15px;
    margin-bottom: 14px;
    font-weight: 600;
}

.date {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .icon {
        width: 90px;
        height: 90px;
        margin-bottom: 10px;
    }

    .name {
        font-size: 13px;
        margin-bottom: 10px;
    }
}


/* ── BUTTON ──────────────────────────────────────────────── */

.btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(180deg, #00e676, #00c853);
    color: #062b16;
    box-shadow: 0 5px 0 #009624;
    transition: all 0.15s ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.btn:hover::after {
    opacity: 1;
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #009624;
}

.btn.disabled {
    background: #555;
    color: #bbb;
    box-shadow: none;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}


/* ── BADGES ──────────────────────────────────────────────── */

.badge {
    position: absolute;
    top: -17px;
    left: 1px;
    transform: translate(-20%, -20%);
    background: linear-gradient(180deg, #ff4d4d, #d80000);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.badge-limited {
    position: absolute;
    top: 12px;
    left: 12px;
    transform: none;
    background: linear-gradient(180deg, #ff8c00, #ff3d00);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: pulseLimited 2s infinite alternate;
}

@keyframes pulseLimited {
    from {
        box-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
    }

    to {
        box-shadow: 0 0 18px rgba(255, 140, 0, 0.8);
    }
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff3b3b;
    padding: 4px 6px;
    font-size: 10px;
    border-radius: 5px;
}


/* ── FEATURED HERO ───────────────────────────────────────── */

.featured-hero {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    padding: 35px 20px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #08131a, #0f2b38, #143f52);
    border: 1px solid rgba(0, 255, 150, 0.2);
    box-shadow: 0 0 60px rgba(0, 255, 150, 0.15), 0 20px 60px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeUp 0.8s ease forwards;
}

.featured-hero::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
    animation: borderMove 4s linear infinite;
    opacity: 0.4;
}

.featured-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(58, 94, 255, 0.15), transparent 70%);
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
}

@keyframes borderMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.featured-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 10px;
}

.featured-img,
.upcoming-img {
    width: 160px;
    height: 160px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 140, 0, 0.4);
    animation: qrFloat 4s ease-in-out infinite;
    transition: 0.3s;
}

.featured-img:hover,
.upcoming-img:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 255, 255, 0.4);
}

@keyframes qrFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

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

.big-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(180deg, #00e676, #00c853);
    color: #062b16;
    border-radius: 12px;
    box-shadow: 0 6px 0 #009624, 0 0 20px rgba(0, 255, 100, 0.4);
    text-decoration: none;
    animation: pulseBtn 2s infinite;
    transition: 0.2s;
}

.big-cta:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.6);
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 6px 0 #009624, 0 0 10px rgba(0, 255, 100, 0.3);
    }

    50% {
        box-shadow: 0 6px 0 #009624, 0 0 25px rgba(0, 255, 100, 0.7);
    }

    100% {
        box-shadow: 0 6px 0 #009624, 0 0 10px rgba(0, 255, 100, 0.3);
    }
}


/* ── FEATURED CARD (grid) ────────────────────────────────── */

.featured {
    border: 2px solid #ffcc00;
    scale: 1.05;
    z-index: 2;
    animation: glowPulse 2s infinite alternate;
}

.featured:hover {
    transform: translateY(-8px);
}

@keyframes glowPulse {
    from {
        box-shadow: 0 0 15px rgba(255, 200, 0, 0.4);
    }

    to {
        box-shadow: 0 0 35px rgba(255, 200, 0, 0.9);
    }
}

@media (max-width: 600px) {
    .featured {
        transform: none !important;
        scale: 1;
    }
}


/* ── UPCOMING CARD ───────────────────────────────────────── */

.upcoming-card {
    position: relative;
    max-width: 900px;
    margin: 20px auto 40px;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, #24170c, #372516, #4b2a15);
    border: 2px solid rgba(255, 140, 0, 0.4);
    box-shadow: 0 0 40px rgba(255, 120, 0, 0.3), inset 0 0 50px rgba(255, 140, 0, 0.1);
    animation: fadeUp 0.8s ease forwards;
}

.countdown {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #ffcc66;
    text-shadow: 0 0 10px rgba(255, 180, 0, 0.6);
}

.qr-img {
    width: 120px;
    margin: 10px auto;
    border-radius: 12px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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


/* ── MISC ────────────────────────────────────────────────── */

.legal {
    text-align: center;
    margin: 14px auto;
    font-size: 12px;
    opacity: 0.5;
    max-width: 420px;
    line-height: 1.4;
}


/* ── FOOTER ──────────────────────────────────────────────── */

.footer-banner {
    display: block;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(90deg, #091a24, #123242);
    box-shadow: inset 0 0 20px rgba(0, 255, 180, 0.05);
    color: #00e6a8;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-banner:hover {
    background: linear-gradient(90deg, #102734, #183646);
    color: #00ffcc;
}

.footer {
    margin-top: 0;
    padding: 45px 20px 25px;
    background: linear-gradient(180deg, rgba(10, 15, 25, 0.95), rgba(5, 8, 15, 1));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    align-items: center;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 45px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 13px;
    opacity: 0.6;
    max-width: 220px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.footer-links a {
    font-size: 14px;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.social-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-title {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 6px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: none;
    opacity: 0.8;
    transition: 0.2s;
    text-decoration: none;
}

.social img {
    width: 15px;
}

.social:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.1);
}

.copyright {
    font-size: 12px;
    opacity: 0.5;
    white-space: nowrap;
    margin: 0;
}

.footer-bottom {
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    opacity: 0.5;
}

.footer-bottom p {
    margin: 3px 0;
}

@media (max-width: 700px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-socials {
        align-items: center;
    }

    .social-row {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .social-list {
        justify-content: center;
    }
}

.footer-email {
    font-size: 13px;
    color: #00e6a8;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.2s;
}

.footer-email:hover {
    opacity: 1;
    text-decoration: underline;
}



/* ── ABOUT PAGE ──────────────────────────────────────────── */

.about-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-subtitle {
    opacity: 0.6;
    margin-bottom: 40px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 22px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #fff, #7ab6ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.6;
    max-width: 600px;
    margin: auto;
}

.highlight {
    color: #00e6a8;
    font-weight: 600;
}

.about-text {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.6;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

/* ── ALL CLAIMED PAGE ───────────────────────────────────── */

.all-claimed-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.all-claimed-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #1f3f52, #0c1f2a);
    border-radius: 22px;
    padding: 36px 28px;
    width: 90%;
    max-width: 420px;
    text-align: center;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pin {
    width: 90px;
    margin-bottom: 14px;
    animation: floatPin 2.5s ease-in-out infinite;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.7));
}

@keyframes floatPin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

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

.all-claimed-card h1 {
    margin: 10px 0;
    font-size: 26px;
    font-weight: 700;
}

.all-claimed-card p {
    opacity: 0.65;
    font-size: 14px;
    margin-bottom: 28px;
}

/* button variants (keep your colors exactly same) */
.btn.store {
    background: linear-gradient(180deg, #00e676, #00c853);
    color: #062b16;
    box-shadow: 0 6px 0 #009624;
}

.btn.rewards {
    background: linear-gradient(180deg, #4d8dff, #2f66ff);
    color: white;
    box-shadow: 0 6px 0 #1f4ed8;
}

.btn.home {
    background: linear-gradient(180deg, #ff9800, #ff6d00);
    color: white;
    box-shadow: 0 6px 0 #c43e00;
}

/* override default btn to match your big buttons */
.all-claimed-card .btn {
    display: block;
    margin: 12px 0;
    padding: 15px;
    font-size: 14px;
}

@media (max-width: 480px) {
    .all-claimed-card {
        padding: 26px 18px;
    }

    .pin {
        width: 70px;
    }
}

/* ── HOME PAGE ONLY ───────────────────────────────────── */

.section {
    margin-top: 16px;
    padding: 16px;
    border-radius: 14px;

    background: rgba(20, 25, 35, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.section.show {
    opacity: 1;
    transform: translateY(0);
}

/* simple button (secondary CTA) */
.btn.secondary {
    background: linear-gradient(180deg, #4d8dff, #2f66ff);
    color: white;
    box-shadow: 0 5px 0 #1f4ed8;
}

/* grid override for homepage (smaller cards) */
.home-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

/* social grid */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.social-card {
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.9), rgba(20, 20, 30, 0.9));
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 500;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.social-card img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.social-card:hover {
    transform: translateY(-3px);
}

.coming-soon {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;

    background: linear-gradient(180deg, #ff9800, #ff6d00);
    color: white;
    font-weight: 600;

    text-align: center;
    opacity: 0.9;
}

.section .btn {
    display: block;
    margin: 20px auto 0;
    width: fit-content;
}

/* COC REWARDS */

.coc-page {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 190, 60, 0.18), transparent 38%),
        radial-gradient(circle at 80% 75%, rgba(0, 220, 140, 0.14), transparent 42%),
        #06080f;
}

.coc-page .nav-btn.clash-active {
    background: linear-gradient(180deg, #ffc94a, #f28a12);
    color: #241100;
    box-shadow: 0 0 14px rgba(255, 190, 70, 0.55);
}

.coc-page .featured-hero {
    background: linear-gradient(135deg, #1d1509, #30220e, #123328);
    border-color: rgba(255, 201, 74, 0.28);
    box-shadow: 0 0 55px rgba(255, 190, 70, 0.14), 0 20px 60px rgba(0, 0, 0, 0.8);
}

.coc-page .featured-hero::after {
    background: radial-gradient(circle at center, rgba(255, 201, 74, 0.14), transparent 70%);
}

.coc-page .card {
    background: linear-gradient(180deg, #263f34, #101f22);
    border-color: rgba(255, 201, 74, 0.16);
}

.coc-page .btn {
    background: linear-gradient(180deg, #ffc94a, #f28a12);
    color: #241100;
    box-shadow: 0 5px 0 #a95200;
}

.coc-page .btn.disabled {
    background: #555;
    color: #bbb;
    box-shadow: none;
}

.coc-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffd45a, #c96a12);
    color: #241100;
    font-size: 18px;
    font-weight: 900;
}

@media (max-width: 600px) {
    .coc-icon {
        width: 90px;
        height: 90px;
        font-size: 14px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

/* CLAIM COUNTS */

.claim-count {
    margin: -4px 0 12px;
    font-size: 12px;
    color: #9fd8ff;
    opacity: 0.85;
    font-weight: 600;
}

.coc-page .claim-count {
    color: #ffd166;
}