/* ========================================
   ABADY THEME - ReloadX
   Purple & Gold Retail Style
   ======================================== */

:root {
    --purple-main: #e5e7eb;
    --purple-dark: #0b0e13;
    --purple-light: #9ca3af;
    --gold-main: #49b8ef;
    --gold-dark: #3da2d4;
    --gold-light: #8fd7ff;
    --lavender-bg: #0b0e13;
    --lavender-alt: #111827;
}

html, body {
    font-family: "Urbanist", "Cairo", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--lavender-bg);
    color: var(--purple-main);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    /* Cross-platform font rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Cross-platform scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-main) var(--lavender-alt);
}

body {
    background: var(--lavender-bg);
}

h1, h2, h3, h4, h5, h6,
.abady-title {
    font-family: "Cairo", "Urbanist", sans-serif;
}

.abady-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Banner */
.abady-hero {
    padding: 12px 0 6px;
}

.abady-hero-image {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.abady-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Home sections */
.home-section {
    padding: 24px 0 16px;
    position: relative;
    overflow: hidden;
}

.home-section .abady-container {
    position: relative;
    z-index: 1;
}

/* Light effects removed */

.home-section-banner {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(73, 184, 239, 0.45);
    background: #0f172a;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.home-section-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.home-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    aspect-ratio: 3 / 4;
    min-height: 180px;
    border-radius: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.home-card picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.home-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.35));
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

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

.home-card:hover img {
    transform: scale(1.06);
}

/* Game detail */
.game-detail {
    padding: 40px 0 70px;
    position: relative;
}

.game-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--purple-light);
    margin-bottom: 22px;
}

.game-breadcrumb a {
    color: var(--purple-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.game-breadcrumb a:hover {
    color: var(--purple-main);
}

.game-breadcrumb .active {
    color: var(--purple-main);
    font-weight: 700;
}

.game-detail-card {
    padding: 0;
}

.game-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.game-detail-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-detail-media img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 700px;
    object-fit: contain;
    border-radius: 16px;
}

.game-detail-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.game-badge {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(73, 184, 239, 0.18);
    color: var(--purple-main);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.game-title {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    color: var(--purple-main);
}

.game-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.game-price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    font-weight: 700;
}

.game-price-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-main);
}

.game-price-value span + span {
    font-size: 1rem;
    margin-left: 6px;
    color: var(--purple-light);
    font-weight: 700;
}

.game-price-secondary {
    display: block;
    font-size: 0.9rem;
    color: var(--purple-light);
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.8;
}

.game-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    font-weight: 700;
    font-size: 0.85rem;
    width: fit-content;
}

.game-region-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.game-region-filter-label {
    font-weight: 700;
    color: var(--purple-main);
    font-size: 0.9rem;
}

.game-region-flags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.game-flag-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 42px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    padding: 4px;
}

.game-flag-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.game-flag-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(73, 184, 239, 0.3);
}

.game-flag-btn.active {
    border-color: #49b8ef;
    background: rgba(73, 184, 239, 0.15);
    box-shadow: 0 0 12px rgba(73, 184, 239, 0.3);
}


.game-amounts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-amounts-label {
    font-weight: 700;
    color: var(--purple-main);
}

.game-amounts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.game-region-block {
    margin-top: 14px;
}

.game-region-block:first-child {
    margin-top: 0;
}

.game-region-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.game-amount-card {
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.7);
    border-radius: 16px;
    padding: 12px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--purple-main);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-amount-card:hover {
    transform: translateY(-2px);
    border-color: rgba(73, 184, 239, 0.6);
    box-shadow: 0 14px 22px rgba(0, 0, 0, 0.35);
}

.game-amount-card.active {
    border-color: rgba(73, 184, 239, 0.9);
    background: rgba(73, 184, 239, 0.18);
}

.game-amount-label-text {
    font-size: 1rem;
    font-weight: 800;
}

.game-amount-price {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 700;
}

.game-add-form {
    margin-top: 8px;
}

.game-add-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    color: var(--purple-main);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-add-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 22px rgba(73, 184, 239, 0.35);
}

.game-add-button--ghost {
    background: transparent;
    border: 1px solid rgba(73, 184, 239, 0.5);
    color: var(--purple-main);
}

.game-empty {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--purple-light);
}

.banner-container {
    background: linear-gradient(135deg, #1f2937 0%, #0b0e13 100%);
    border-radius: 22px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.banner-container::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.banner-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 160px;
    height: 160px;
    background: rgba(73, 184, 239, 0.12);
    border-radius: 50%;
}

.banner-icons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: 55%;
    z-index: 1;
}

.banner-icon {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    animation: banner-float 5s ease-in-out infinite;
}

.banner-icon:nth-child(even) {
    animation-delay: 0.8s;
}

.banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    z-index: 1;
}

.banner-badge {
    background: rgba(73, 184, 239, 0.2);
    color: var(--purple-main);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}

.banner-text h1 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--purple-main);
    margin: 0;
    line-height: 1.1;
}

.banner-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--purple-light);
    max-width: 380px;
}

/* Sections */
.abady-section {
    background: var(--lavender-bg);
    padding: 24px 0;
    position: relative;
}

.abady-section.alt {
    background: var(--lavender-alt);
}

.abady-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.abady-section-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
    margin: 0 0 6px;
}

.abady-section-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #EDE7FF;
    margin: 0;
}

.abady-section-link {
    font-weight: 700;
    color: var(--purple-main);
    text-decoration: none;
    background: rgba(73, 184, 239, 0.2);
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(73, 184, 239, 0.45);
    transition: background 0.2s ease, transform 0.2s ease;
}

.abady-section-link:hover {
    background: rgba(73, 184, 239, 0.35);
    transform: translateY(-1px);
}

.abady-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.abady-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

/* Product Cards */
.abady-product-card {
    background: linear-gradient(180deg, #1f2937 0%, #0f172a 100%);
    border: 3px solid rgba(73, 184, 239, 0.6);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.abady-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.5);
}

.abady-product-media {
    background: #1b2031;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.abady-product-media img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(73, 184, 239, 0.25));
}

.abady-product-fallback {
    width: 48px;
    height: 48px;
    color: var(--purple-light);
}

.abady-product-body {
    padding: 12px 12px 16px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    justify-content: space-between;
}

.abady-product-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    min-height: 2.5em;
}

.abady-product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    color: var(--gold-main);
    font-weight: 800;
}

.abady-price-original {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 0.8rem;
}

.abady-price-current {
    font-size: 1.05rem;
}

.abady-product-stock {
    font-size: 0.75rem;
    color: var(--gold-light);
    font-weight: 700;
}

.abady-add-button {
    background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
    color: var(--purple-main);
    font-weight: 800;
    border: none;
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abady-add-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(73, 184, 239, 0.45);
}

.abady-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-main);
    color: var(--purple-main);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 999px;
    z-index: 2;
}

/* Categories */
.abady-category-card {
    background: #131826;
    border: 2px solid rgba(73, 184, 239, 0.25);
    border-radius: 20px;
    padding: 14px;
    text-decoration: none;
    color: #EDE7FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.abady-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.45);
    border-color: rgba(73, 184, 239, 0.8);
}

.abady-category-media {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #1b2031;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.abady-category-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.abady-category-fallback {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
}

.abady-category-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

.abady-category-count {
    font-size: 0.75rem;
    color: var(--gold-light);
    font-weight: 700;
}

/* Stats */
.abady-stats {
    padding: 24px 0;
}

.abady-stats-inner {
    background: linear-gradient(135deg, #0b0e13 0%, #111827 100%);
    border-radius: 26px;
    padding: 20px;
    color: #fff;
    border: 2px solid rgba(73, 184, 239, 0.4);
    position: relative;
    overflow: hidden;
}

.abady-stats-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(73, 184, 239, 0.18), transparent 55%);
    pointer-events: none;
}

.abady-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    position: relative;
    z-index: 1;
}

.abady-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(73, 184, 239, 0.35);
    border-radius: 16px;
    padding: 12px;
    text-align: center;
}

.abady-stat-value {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold-main);
}

.abady-stat-label {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 600;
}

/* CTA */
.abady-cta {
    padding: 30px 0 50px;
}

.abady-cta-inner {
    background: linear-gradient(135deg, #0b0e13 0%, #1f2937 100%);
    border-radius: 28px;
    padding: 28px 20px;
    text-align: center;
    color: #fff;
    border: 2px solid rgba(73, 184, 239, 0.6);
    position: relative;
    overflow: hidden;
}

.abady-cta-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: rgba(73, 184, 239, 0.18);
    border-radius: 50%;
}

.abady-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.abady-cta-inner h2 {
    font-size: 1.7rem;
    font-weight: 900;
    margin: 0 0 10px;
}

.abady-cta-inner p {
    margin: 0 auto 18px;
    max-width: 640px;
    color: #cbd5e1;
}

.abady-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    color: var(--purple-main);
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abady-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(73, 184, 239, 0.35);
}

.abady-button--dark {
    background: var(--purple-dark);
    color: var(--gold-main);
    border: 2px solid rgba(73, 184, 239, 0.6);
}

.abady-button--dark:hover {
    background: #111827;
}

/* RTL tweaks */
html[dir="rtl"] .banner-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .banner-text {
    align-items: flex-end;
    text-align: right;
}

html[dir="rtl"] .abady-section-header {
    flex-direction: row-reverse;
    align-items: flex-end;
}

html[dir="rtl"] .abady-section-link {
    align-self: flex-start;
}

@keyframes banner-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (min-width: 768px) {
    .home-section {
        padding: 32px 0 22px;
    }

    .home-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .home-card {
        min-height: 220px;
    }

    .game-detail-card {
        padding: 36px;
    }

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

    .abady-section-title {
        font-size: 2.1rem;
    }

    .abady-cta-inner {
        padding: 40px 48px;
    }

    .abady-cta-inner h2 {
        font-size: 2.4rem;
    }

    .abady-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .abady-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .abady-stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .abady-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .abady-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .banner-text h1 {
        font-size: 2.4rem;
    }

    .game-amounts-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .game-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .banner-container {
        flex-direction: column;
        align-items: stretch;
    }

    .banner-icons {
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .banner-text {
        align-items: flex-start;
    }

    .abady-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .abady-section-link {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .home-card {
        min-height: 160px;
    }

    .game-detail-card {
        padding: 22px;
    }

    .game-detail-media img {
        max-height: 320px;
    }

    .abady-product-media img {
        height: 110px;
    }

    .abady-product-card {
        min-height: 240px;
    }

    .abady-stat-value {
        font-size: 1.1rem;
    }
}

/* Game Description Section */
.game-description-section {
    margin-top: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-description-header {
    text-align: center;
    margin-bottom: 32px;
}

.game-description-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.game-description-subtitle {
    font-size: 1rem;
    color: #9ca3af;
}

.game-description-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.game-description-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.game-description-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(73, 184, 239, 0.3);
    transform: translateY(-2px);
}

.game-description-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(73, 184, 239, 0.15);
    border-radius: 12px;
    color: #49b8ef;
}

.game-description-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.game-description-card-text {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
}

.game-how-it-works {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.game-how-it-works-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.game-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.game-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.game-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -8px;
    width: 16px;
    height: 2px;
    background: rgba(73, 184, 239, 0.5);
}

.game-step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49b8ef;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 12px;
}

.game-step-text {
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.4;
}

.game-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    color: #fbbf24;
}

.game-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.game-note p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .game-description-section {
        padding: 24px 16px;
        margin-top: 24px;
    }

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

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

    .game-step:not(:last-child)::after {
        display: none;
    }

    .game-description-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .game-steps {
        grid-template-columns: 1fr;
    }

    .game-step {
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }

    .game-step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}
