* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --fire-red: #ff1744;
    --dark-red: #d50000;
    --volcano-orange: #ff6d00;
    --gold: #ffc107;
    --dark-gold: #ff8f00;
    --deep-black: #0d0d0d;
    --coal-black: #1a1a1a;
    --smoke-gray: #2d2d2d;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --success-green: #00c853;
    --warning-orange: #ff9800;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--coal-black) 50%, var(--smoke-gray) 100%);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 23, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 109, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--fire-red), var(--dark-red));
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 23, 68, 0.4);
    border-bottom: 2px solid var(--gold);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

.header-info {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 0.9rem;
}

.header-info div {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login, .btn-register {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-login {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-black);
    border: 2px solid var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
}

nav {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    border-radius: 15px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    background: var(--gold);
    color: var(--deep-black);
    transform: translateY(-2px);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 5px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1), rgba(255, 109, 0, 0.1));
    border-radius: 20px;
    margin: 30px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
    transparent 0deg,
    rgba(255, 23, 68, 0.1) 45deg,
    transparent 90deg,
    rgba(255, 109, 0, 0.1) 180deg,
    transparent 270deg);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--gold), var(--fire-red), var(--volcano-orange));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--fire-red), var(--dark-red));
    color: var(--white);
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-black);
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    border: 2px solid var(--gold);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.6);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--success-green), #00a152);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 193, 7, 0.1) 10px,
            rgba(255, 193, 7, 0.1) 20px
    );
    animation: move 3s linear infinite;
}

@keyframes move {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Games Section */
.games-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.games-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.games-categories::-webkit-scrollbar {
    height: 5px;
}

.games-categories::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.games-categories::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 25px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.category-btn:hover, .category-btn.active {
    background: var(--gold);
    color: var(--deep-black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 193, 7, 0.2);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--fire-red), var(--gold), var(--volcano-orange), var(--fire-red));
    background-size: 300% 300%;
    opacity: 0;
    transition: all 0.4s ease;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.game-card:hover::before {
    opacity: 0.3;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 23, 68, 0.3);
}

.game-image {
    position: relative;
    height: 200px;
    background: linear-gradient(45deg, var(--fire-red), var(--volcano-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gold);
    overflow: hidden;
}

.game-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success-green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.game-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.game-title {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.game-description {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.game-stat {
    text-align: center;
}

.game-stat-value {
    color: var(--gold);
    font-weight: bold;
    font-size: 1rem;
}

.game-stat-label {
    opacity: 0.7;
    font-size: 0.8rem;
    margin-top: 2px;
}

.game-actions {
    display: flex;
    gap: 10px;
}

.btn-play, .btn-demo {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
}

.btn-play {
    background: linear-gradient(135deg, var(--fire-red), var(--dark-red));
    color: var(--white);
}

.btn-demo {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-play:hover, .btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Horizontal scroll for mobile games */
.games-scroll {
    display: none;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px 25px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
}

.games-scroll::-webkit-scrollbar {
    height: 6px;
}

.games-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.games-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.game-card-scroll {
    min-width: 280px;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 193, 7, 0.2);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 50px 0;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-article {
    line-height: 1.8;
}

.info-article h2 {
    color: var(--gold);
    font-size: 2rem;
    margin: 30px 0 20px;
    text-align: center;
}

.info-article h3 {
    color: var(--volcano-orange);
    font-size: 1.5rem;
    margin: 25px 0 15px;
}

.info-article p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1), rgba(255, 109, 0, 0.1));
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    margin: 30px 0;
}

.highlight-box h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Payment Methods */
.payment-section {
    padding: 60px 0;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    font-size: 1.5rem;
    color: var(--gold);
    min-width: 120px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

/* Reviews */
.reviews-section {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    font-family: serif;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), var(--fire-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
    color: var(--deep-black);
}

.review-info h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.review-location {
    opacity: 0.7;
    font-size: 0.9rem;
}

.rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 15px 0;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 50px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    background: rgba(255, 193, 7, 0.1);
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(255, 193, 7, 0.2);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px;
    display: none;
    line-height: 1.7;
}

.faq-answer.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--deep-black), #000);
    padding: 60px 0 30px;
    border-top: 3px solid var(--gold);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    opacity: 0.7;
}

.license-info {
    background: rgba(255, 193, 7, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .header-info {
        gap: 15px;
    }

    .header-info div {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .header-info {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--fire-red), var(--dark-red));
        z-index: 999;
        padding: 15px 0;
        border-radius: 0 0 15px 15px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        display: block;
        text-align: center;
        border-radius: 0;
        padding: 12px 20px;
    }

    .hero {
        padding: 60px 0;
        margin: 20px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .games-grid {
        display: none;
    }

    .games-scroll {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-categories {
        justify-content: flex-start;
    }

    .payment-methods {
        gap: 15px;
    }

    .payment-item {
        min-width: 100px;
        font-size: 1.2rem;
        padding: 15px;
    }

    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .info-article h2 {
        font-size: 1.8rem;
    }

    .promo-title {
        font-size: 1.6rem;
    }

    .promo-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.8rem;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-login, .btn-register {
        padding: 10px 20px;
        font-size: 0.9rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .btn-primary, .btn-secondary {
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .game-card-scroll {
        min-width: 260px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .info-article h2 {
        font-size: 1.6rem;
    }

    .info-article h3 {
        font-size: 1.3rem;
    }

    .highlight-box {
        padding: 20px;
    }
}



.info-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-section table th,
.info-section table td {
    padding: 8px 8px;
    border: 2px solid rgba(255, 193, 7, 0.1);
}

.info-section table th {
    background-color: rgba(255, 193, 7, 0.1);
    font-size: 1.5rem;
    color: var(--gold);
    text-decoration: underline;
}


.info-section ul,
.info-section ol {
    padding-left: 24px;
    margin-bottom: 18px;
    color: var(--gold);
}

.info-section ul li,
.info-section ol li {
    background-color: rgba(255, 193, 7, 0.1);
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    list-style-position: inside;
}

