@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    scroll-behavior: smooth;
}

/* Global Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}

/* Custom Checkbox */
.styled-checkbox {
    appearance: none;
    background-color: transparent;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.25em;
    height: 1.25em;
    border: 2px solid #ef4444;
    border-radius: 0.3em;
    display: grid;
    place-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.styled-checkbox::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em white;
    background-color: white;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.styled-checkbox:checked {
    background-color: #ef4444;
}

.styled-checkbox:checked::before {
    transform: scale(1);
}

.styled-checkbox:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.4);
    outline: none;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background-color: #000000;
    background-image:
        radial-gradient(circle at top left, rgba(239, 68, 68, 0.16), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(220, 38, 38, 0.12), transparent 24%),
        linear-gradient(180deg, #090909 0%, #000000 100%);
    color: white;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

.service-selector-section {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(248, 113, 113, 0.18), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(220, 38, 38, 0.18), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(127, 29, 29, 0.22), transparent 38%),
        linear-gradient(180deg, #05070f 0%, #080b15 52%, #05070c 100%);
}

.service-selector-kicker,
.service-selector-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fca5a5;
}

.service-selector-kicker::before,
.service-selector-label::before {
    content: '';
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: radial-gradient(circle, #f87171 0%, rgba(248, 113, 113, 0.16) 70%);
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.52);
}

.service-selector-shell {
    position: relative;
}

.service-selector-glow {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 999px;
    filter: blur(72px);
    opacity: 0.7;
    pointer-events: none;
}

.service-selector-glow-left {
    top: 3rem;
    left: -3rem;
    background: rgba(248, 113, 113, 0.26);
}

.service-selector-glow-right {
    right: -2rem;
    bottom: 1rem;
    background: rgba(220, 38, 38, 0.22);
}

.service-selector-panel,
.service-modal-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.9rem;
    border: 1px solid rgba(248, 113, 113, 0.18);
    background:
        linear-gradient(135deg, rgba(32, 10, 10, 0.94), rgba(18, 5, 5, 0.96)),
        linear-gradient(180deg, rgba(239, 68, 68, 0.08), rgba(127, 29, 29, 0.04));
    box-shadow:
        0 30px 80px rgba(2, 6, 23, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(248, 113, 113, 0.08);
    backdrop-filter: blur(20px);
}

.service-selector-panel {
    padding: 1.6rem;
}

.service-modal-panel {
    display: flex;
    flex-direction: column;
    max-height: min(85vh, 52rem);
}

.service-selector-panel::before,
.service-modal-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at top right, rgba(248, 113, 113, 0.14), transparent 22%);
}

.service-modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.35rem;
}

.service-modal-body::-webkit-scrollbar {
    width: 8px;
}

.service-modal-body::-webkit-scrollbar-track {
    background: rgba(24, 24, 27, 0.7);
    border-radius: 999px;
}

.service-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(248, 113, 113, 0.9), rgba(185, 28, 28, 0.95));
    border-radius: 999px;
}

.service-selector-header {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.service-selector-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(10, 18, 36, 0.88);
    border: 1px solid rgba(248, 113, 113, 0.16);
    font-size: 0.8rem;
    color: #fee2e2;
    white-space: nowrap;
}

.service-selector-badge-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #f87171, #dc2626);
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.52);
}

.topup-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.6rem;
    border: 1px solid rgba(248, 113, 113, 0.18);
    background:
        radial-gradient(circle at top left, rgba(248, 113, 113, 0.18), transparent 26%),
        radial-gradient(circle at bottom right, rgba(185, 28, 28, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(32, 10, 10, 0.96), rgba(20, 7, 7, 0.94));
    padding: 1.5rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 44px rgba(2, 6, 23, 0.5);
}

.topup-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 113, 113, 0.14);
    background: rgba(31, 10, 10, 0.84);
    color: #fecaca;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topup-hero-orbs {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.topup-orb {
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #eff6ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -12px 18px rgba(15, 23, 42, 0.38),
        0 14px 28px rgba(2, 6, 23, 0.42);
}

.topup-orb-dm {
    background: linear-gradient(135deg, #f87171, #dc2626 58%, #7f1d1d);
}

.topup-orb-uc {
    background: linear-gradient(135deg, #fb7185, #dc2626 58%, #991b1b);
}

.topup-orb-cp {
    background: linear-gradient(135deg, #fca5a5, #ef4444 48%, #7f1d1d);
}

.service-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(248, 113, 113, 0.16);
    background:
        linear-gradient(180deg, rgba(32, 10, 10, 0.96), rgba(24, 8, 8, 0.92));
    box-shadow:
        0 20px 40px rgba(2, 6, 23, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(248, 113, 113, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-dropdown-trigger:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 113, 113, 0.34);
    box-shadow:
        0 24px 44px rgba(2, 6, 23, 0.56),
        0 0 32px rgba(239, 68, 68, 0.16);
}

.service-dropdown-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-dropdown-caption {
    font-size: 0.76rem;
    color: #94a3b8;
}

.service-dropdown-copy strong {
    margin-top: 0.35rem;
    font-size: 1.15rem;
    color: #f8fafc;
}

.service-dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    color: #fee2e2;
    background: linear-gradient(180deg, rgba(248, 113, 113, 0.2), rgba(127, 29, 29, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(239, 68, 68, 0.12);
}

.service-inline-summary {
    display: grid;
    gap: 0.95rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-inline-item,
.service-preview-note,
.service-modal-footnote {
    border-radius: 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(10, 15, 28, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-inline-item {
    padding: 1rem;
}

.service-inline-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #64748b;
}

.service-inline-item strong {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.98rem;
    color: #f8fafc;
}

.service-select-wrap {
    position: relative;
}

.service-select-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.25rem;
    width: 0.72rem;
    height: 0.72rem;
    border-right: 2px solid #fca5a5;
    border-bottom: 2px solid #fca5a5;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.service-select-input {
    width: 100%;
    appearance: none;
    border-radius: 1.2rem;
    border: 1px solid rgba(248, 113, 113, 0.16);
    background:
        linear-gradient(180deg, rgba(32, 10, 10, 0.96), rgba(24, 8, 8, 0.92));
    color: #f8fafc;
    padding: 1rem 3.5rem 1rem 1.1rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-select-input:focus {
    outline: none;
    border-color: rgba(248, 113, 113, 0.38);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.service-select-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: max-content;
    gap: 1rem;
    align-content: start;
}

.package-card {
    position: relative;
    align-self: start;
    overflow: hidden;
    min-height: 8.75rem;
    padding: 1rem;
    text-align: left;
    border-radius: 1.35rem;
    border: 1px solid rgba(248, 113, 113, 0.16);
    background:
        radial-gradient(circle at top right, rgba(248, 113, 113, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(32, 10, 10, 0.96), rgba(24, 8, 8, 0.92));
    box-shadow:
        0 18px 36px rgba(2, 6, 23, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%, transparent 70%, rgba(248, 113, 113, 0.08));
    opacity: 0.9;
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 113, 113, 0.4);
    box-shadow:
        0 24px 46px rgba(2, 6, 23, 0.58),
        0 0 30px rgba(239, 68, 68, 0.16);
}

.package-card.is-selected {
    border-color: rgba(248, 113, 113, 0.58);
    box-shadow:
        0 24px 48px rgba(2, 6, 23, 0.62),
        0 0 36px rgba(239, 68, 68, 0.22),
        inset 0 0 0 1px rgba(252, 165, 165, 0.28);
}

.package-card-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    position: relative;
    z-index: 1;
}

.package-currency-icon {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #eff6ff;
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2) 18%, transparent 19%),
        linear-gradient(135deg, rgba(248, 113, 113, 0.96), rgba(220, 38, 38, 0.94) 52%, rgba(127, 29, 29, 0.98));
    box-shadow:
        0 12px 24px rgba(220, 38, 38, 0.26),
        inset 0 -10px 16px rgba(30, 41, 59, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.package-currency-icon::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.package-card-meta {
    flex: 1;
    min-width: 0;
}

.package-card-meta h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
}

.package-card-meta p {
    margin-top: 0.2rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.package-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    align-items: end;
}

.package-card-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: #e2e8f0;
}

.package-card-price {
    font-size: 1rem;
    font-weight: 800;
    color: #fca5a5;
    text-shadow: 0 0 18px rgba(248, 113, 113, 0.18);
}

.service-cta-button,
.service-modal-confirm {
    width: 100%;
    border: 0;
    border-radius: 1.3rem;
    padding: 1rem 1.4rem;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #ef4444, #dc2626 52%, #7f1d1d);
    box-shadow:
        0 20px 40px rgba(220, 38, 38, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.service-cta-button:hover,
.service-modal-confirm:hover {
    transform: translateY(-2px);
    box-shadow:
        0 24px 46px rgba(220, 38, 38, 0.34),
        0 0 30px rgba(248, 113, 113, 0.2);
}

.service-cta-button:disabled,
.service-modal-confirm:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow:
        0 14px 24px rgba(2, 6, 23, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-preview-card {
    padding: 1.35rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(248, 113, 113, 0.14);
    background:
        radial-gradient(circle at top right, rgba(248, 113, 113, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(32, 10, 10, 0.96), rgba(20, 7, 7, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 34px rgba(2, 6, 23, 0.42);
}

.service-preview-stack {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.service-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1.05rem;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.1);
    color: #94a3b8;
    font-size: 0.92rem;
}

.service-preview-row strong {
    color: #f8fafc;
    text-align: right;
}

.service-preview-row-total {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.82), rgba(69, 10, 10, 0.76));
    border-color: rgba(248, 113, 113, 0.18);
}

.service-preview-row-total strong {
    color: #fecaca;
}

.service-preview-note,
.service-modal-footnote {
    padding: 1rem 1.1rem;
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.6;
}

.service-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-modal-close:hover {
    opacity: 0.75;
    transform: scale(1.05);
}

.service-choice-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(248, 113, 113, 0.16);
    background:
        radial-gradient(circle at top right, rgba(248, 113, 113, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(32, 10, 10, 0.96), rgba(24, 8, 8, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-choice-card:hover,
.service-choice-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(248, 113, 113, 0.38);
    box-shadow:
        0 18px 32px rgba(2, 6, 23, 0.42),
        0 0 28px rgba(239, 68, 68, 0.14);
}

.service-choice-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: #eff6ff;
    background: linear-gradient(135deg, #f87171, #dc2626 55%, #7f1d1d);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        inset 0 -12px 18px rgba(15, 23, 42, 0.35);
}

.service-choice-content {
    display: flex;
    flex-direction: column;
}

.service-choice-content strong {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 700;
}

.service-choice-content small {
    margin-top: 0.3rem;
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.5;
}

.service-modal-header-bar {
    height: 2.5rem;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(248, 113, 113, 0.86), rgba(220, 38, 38, 0.76), rgba(127, 29, 29, 0.86));
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.24);
}

.service-game-board {
    border-radius: 1.4rem;
    background:
        linear-gradient(180deg, rgba(7, 13, 26, 0.92), rgba(14, 20, 35, 0.88));
    padding: 1rem;
    border: 1px solid rgba(248, 113, 113, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.service-game-grid-lg {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-game-button {
    min-height: 5.2rem;
    border: 1px solid rgba(248, 113, 113, 0.14);
    border-radius: 1.1rem;
    background:
        radial-gradient(circle at top right, rgba(248, 113, 113, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(32, 10, 10, 0.96), rgba(20, 7, 7, 0.96));
    color: #f8fafc;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    padding: 0.9rem;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.service-game-button:hover {
    transform: translateY(-2px);
}

.service-game-button.is-selected {
    border-color: rgba(248, 113, 113, 0.52);
    box-shadow:
        0 0 0 3px rgba(239, 68, 68, 0.14),
        0 0 32px rgba(239, 68, 68, 0.18);
}

.service-game-button small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .about-page-hero {
        padding-top: 4.25rem;
        padding-bottom: 4rem;
    }

    .about-page-hero-copy {
        max-width: 42rem;
    }

    .about-page-title {
        font-size: 2.6rem;
        line-height: 1.08;
    }

    .about-page-subtitle {
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-store-shell {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        border-radius: 1.5rem;
    }

    .service-selector-panel {
        padding: 1.2rem;
    }

    .service-selector-header {
        flex-direction: column;
    }

    .service-inline-summary {
        grid-template-columns: 1fr;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .service-modal-panel {
        max-height: 88vh;
        border-radius: 1.4rem;
        backdrop-filter: none;
        box-shadow: 0 16px 30px rgba(2, 6, 23, 0.42);
    }

    .service-modal-body {
        padding-right: 0;
    }

    .service-game-grid {
        gap: 0.7rem;
    }

    .service-game-grid-lg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-game-button {
        min-height: 4.3rem;
        padding: 0.8rem;
        border-radius: 0.95rem;
        background: linear-gradient(180deg, rgba(32, 10, 10, 0.98), rgba(20, 7, 7, 0.98));
        box-shadow: none;
    }

    .service-game-button:hover {
        transform: none;
    }

    .service-game-button small {
        margin-top: 0.28rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 640px) {
    .about-page-hero {
        padding-top: 3.25rem;
        padding-bottom: 3rem;
    }

    .about-page-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .about-page-subtitle {
        margin-top: 1rem;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-store-shell {
        padding: 1rem;
        gap: 1rem;
        border-radius: 1.2rem;
    }

    .about-store-kicker {
        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .about-store-title {
        font-size: 1.65rem;
        line-height: 1.2;
    }

    .about-store-description {
        margin-top: 1rem;
        font-size: 0.95rem;
        line-height: 1.85;
    }

    .about-store-stat,
    .owner-spotlight {
        padding: 0.9rem 0.95rem;
        border-radius: 1rem;
    }

    .about-store-stat strong {
        font-size: 1rem;
    }

    .owner-spotlight-name {
        font-size: 1.28rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .about-page-cta {
        width: 100%;
        padding: 0.95rem 1.1rem;
    }

    #gameModalOverlay,
    #premiumApkModalOverlay {
        backdrop-filter: none;
        background: rgba(0, 0, 0, 0.88);
    }

    .service-game-grid {
        grid-template-columns: 1fr;
    }

    .service-game-grid-lg {
        grid-template-columns: 1fr;
    }

    .service-modal-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .service-game-button {
        min-height: 3.9rem;
        padding: 0.78rem 0.82rem;
    }
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Poppins', sans-serif;
}

::selection {
    background-color: rgba(239, 68, 68, 0.35);
    color: white;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #111111;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 3px;
}

.card-hover {
    transition: all 0.3s ease;
    position: relative;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.2);
}

.card-hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 45%, rgba(248, 113, 113, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-hover:hover::before {
    opacity: 1;
}

@media (hover: none) {
    .card-hover:active {
        transform: translateY(-4px);
        box-shadow: 0 8px 18px rgba(220, 38, 38, 0.16);
    }
}

.neon-border {
    position: relative;
}

.neon-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(45deg, #f87171, #dc2626, #7f1d1d);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-border:hover::after {
    opacity: 1;
}

.glow-text {
    text-shadow: 0 0 14px rgba(220, 38, 38, 0.42);
}

.section-badge {
    box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.12);
}

.about-store-shell {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    padding: 1.6rem;
    border-radius: 2rem;
    border: 1px solid rgba(248, 113, 113, 0.14);
    background:
        radial-gradient(circle at top left, rgba(248, 113, 113, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(20, 7, 7, 0.96), rgba(8, 8, 8, 0.98));
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-store-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fca5a5;
}

.about-store-kicker::before {
    content: '';
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #f87171, #dc2626);
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.42);
}

.about-store-highlight {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.about-store-copy {
    min-width: 0;
}

.about-store-description {
    word-break: break-word;
}

.about-store-stat,
.owner-spotlight {
    border-radius: 1.3rem;
    border: 1px solid rgba(248, 113, 113, 0.14);
    background: linear-gradient(180deg, rgba(32, 10, 10, 0.95), rgba(20, 7, 7, 0.94));
    padding: 1rem 1.1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-store-stat span,
.owner-spotlight-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #94a3b8;
}

.about-store-stat strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 1.08rem;
    color: #f8fafc;
}

.owner-spotlight {
    position: relative;
    overflow: hidden;
    margin-top: 0.45rem;
    border-color: rgba(252, 165, 165, 0.28);
    background:
        radial-gradient(circle at top right, rgba(248, 113, 113, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(69, 10, 10, 0.96), rgba(20, 7, 7, 0.96));
}

.owner-spotlight::before {
    content: '';
    position: absolute;
    inset: -40% auto auto -10%;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.2), transparent 68%);
    animation: ownerGlow 3.2s ease-in-out infinite;
    pointer-events: none;
}

.owner-spotlight-name {
    position: relative;
    display: inline-block;
    margin-top: 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff5f5;
    text-shadow:
        0 0 16px rgba(248, 113, 113, 0.35),
        0 0 30px rgba(220, 38, 38, 0.18);
}

.hero-kicker {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.18), rgba(33, 10, 10, 0.9));
    border: 1px solid rgba(248, 113, 113, 0.16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-chip {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(20, 9, 9, 0.78);
    border: 1px solid rgba(248, 113, 113, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-showcase {
    position: relative;
}

.hero-panel {
    position: relative;
    min-height: 420px;
    padding: 1.5rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top, rgba(248, 113, 113, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(31, 10, 10, 0.98), rgba(16, 6, 6, 0.96));
    border: 1px solid rgba(248, 113, 113, 0.16);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: auto -10% -30% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.24), transparent 68%);
    pointer-events: none;
}

.hero-mini-label {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #fca5a5;
}

.hero-orbit {
    position: relative;
    height: 300px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbit-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(248, 113, 113, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-orbit-ring-lg {
    width: 17rem;
    height: 17rem;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.12), transparent 66%);
}

.hero-orbit-ring-sm {
    width: 11rem;
    height: 11rem;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.08), transparent 70%);
}

.hero-core {
    position: absolute;
    z-index: 2;
    min-width: 220px;
    text-align: center;
    padding: 1.2rem 1.4rem;
    border-radius: 1.4rem;
    background: linear-gradient(180deg, rgba(26, 8, 8, 0.96), rgba(12, 5, 5, 0.98));
    border: 1px solid rgba(252, 165, 165, 0.16);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.hero-core strong {
    display: block;
    margin-top: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.hero-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.7rem;
    background: linear-gradient(180deg, rgba(248, 113, 113, 0.18), rgba(33, 10, 10, 0.94));
    border: 1px solid rgba(248, 113, 113, 0.16);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -10px 18px rgba(127, 29, 29, 0.24);
    backdrop-filter: blur(8px);
}

.hero-icon span {
    font-size: 2rem;
    transform: translateY(-1px);
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.35));
}

.hero-icon-cart {
    top: 5rem;
    right: 1.4rem;
    width: 5.5rem;
    height: 5.5rem;
    transform: rotate(8deg);
}

.hero-icon-cube {
    top: 10.8rem;
    left: 1.2rem;
    width: 4.75rem;
    height: 4.75rem;
    transform: rotate(-10deg);
}

.hero-icon-gem {
    right: 5rem;
    bottom: 7.2rem;
    width: 4.6rem;
    height: 4.6rem;
    transform: rotate(-12deg);
}

.hero-icon-camera {
    left: 5rem;
    bottom: 9.5rem;
    width: 4.9rem;
    height: 4.9rem;
    transform: rotate(10deg);
}

@media (max-width: 768px) {
    .hero-showcase {
        max-width: 24rem;
    }

    .hero-panel {
        min-height: 320px;
        padding: 1.15rem;
        box-shadow:
            0 18px 36px rgba(0, 0, 0, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .hero-icon-cart {
        right: 1rem;
        width: 4.3rem;
        height: 4.3rem;
    }

    .hero-icon-cube,
    .hero-icon-gem,
    .hero-icon-camera {
        width: 3.6rem;
        height: 3.6rem;
    }

    .hero-icon-camera {
        left: 1rem;
        bottom: 7.4rem;
    }

    .hero-icon-gem {
        right: 2rem;
        bottom: 5.8rem;
    }

    .hero-orbit {
        height: 220px;
        margin-bottom: 1.25rem;
    }

    .hero-orbit-ring-lg {
        width: 13.5rem;
        height: 13.5rem;
    }

    .hero-orbit-ring-sm {
        width: 8.75rem;
        height: 8.75rem;
    }

    .hero-core {
        min-width: 190px;
        padding: 1rem 1.1rem;
    }

    .hero-core strong {
        font-size: 1rem;
    }

    .hero-icon span {
        font-size: 1.5rem;
        filter: none;
    }
}

@media (max-width: 640px) {
    .hero-showcase {
        max-width: 19rem;
    }

    .hero-panel {
        min-height: 245px;
        padding: 0.95rem;
        border-radius: 1.5rem;
    }

    .hero-panel::before,
    .hero-orbit-ring-sm,
    .hero-icon-camera,
    .hero-icon-gem {
        display: none;
    }

    .hero-orbit {
        height: 175px;
        margin-bottom: 0.85rem;
    }

    .hero-orbit-ring-lg {
        width: 10.5rem;
        height: 10.5rem;
        background: radial-gradient(circle, rgba(239, 68, 68, 0.08), transparent 68%);
    }

    .hero-core {
        min-width: 160px;
        padding: 0.8rem 0.9rem;
        border-radius: 1.1rem;
        backdrop-filter: none;
    }

    .hero-mini-label {
        font-size: 0.56rem;
        letter-spacing: 0.12em;
    }

    .hero-core strong {
        margin-top: 0.35rem;
        font-size: 0.9rem;
    }

    .hero-icon {
        border-radius: 1.2rem;
        backdrop-filter: none;
        box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .hero-icon-cart {
        top: 1rem;
        right: 0.9rem;
        width: 3.2rem;
        height: 3.2rem;
    }

    .hero-icon-cube {
        left: 0.8rem;
        top: 6.9rem;
        width: 3rem;
        height: 3rem;
    }

    .hero-icon span {
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .animate-fade-in,
    .animate-slide-up,
    .animate-glow,
    .animate-float,
    .animate-pulse-glow {
        animation: none !important;
    }

    .card-hover,
    .service-game-button,
    .service-choice-card,
    .hero-icon,
    .hero-panel {
        transition: none !important;
    }


}

/* Tailwind Config */
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    :root {
        --color-primary: #000000;
        --color-accent: #ef4444;
        --color-accent-glow: #dc2626;
        --color-accent-light: #fca5a5;
        --color-dark-bg: #0a0a0a;
        --color-card-bg: #1a0a0a;
        --color-border-dark: #3f1111;
    }
}

@layer components {
    .container {
        @apply max-w-7xl mx-auto;
    }
}

@layer utilities {
    .animate-fade-in {
        animation: fadeIn 0.8s ease-out;
    }

    .animate-slide-up {
        animation: slideUp 0.6s ease-out;
    }

    .animate-glow {
        animation: glow 2s ease-in-out infinite alternate;
    }

    .animate-float {
        animation: float 3s ease-in-out infinite;
    }

    .animate-pulse-glow {
        animation: pulseGlow 2s ease-in-out infinite;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes slideUp {
        0% {
            transform: translateY(20px);
            opacity: 0;
        }

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

    @keyframes glow {
        0% {
            box-shadow: 0 0 6px rgba(239, 68, 68, 0.28);
        }

        100% {
            box-shadow: 0 0 22px rgba(220, 38, 38, 0.45), 0 0 32px rgba(239, 68, 68, 0.28);
        }
    }

    @keyframes float {

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

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

    @keyframes pulseGlow {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }

    @keyframes ownerGlow {

        0%,
        100% {
            transform: scale(0.94);
            opacity: 0.45;
        }

        50% {
            transform: scale(1.06);
            opacity: 0.85;
        }
    }
}