
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1A202C;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.bg-white {
    background-color: #FFFFFF;
}

.bg-gray {
    background-color: #F5F7FA;
}

.text-primary {
    color: #2C5AA0;
}

.text-secondary {
    color: #718096;
}

.text-light {
    color: #718096;
}

.text-4xl {
    font-size: 36px;
    line-height: 1.2;
}

.text-3xl {
    font-size: 28px;
    line-height: 1.3;
}

.text-2xl {
    font-size: 24px;
    line-height: 1.4;
}

.text-xl {
    font-size: 20px;
    line-height: 1.4;
}

.text-sm {
    font-size: 14px;
}

.text-xs {
    font-size: 12px;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.mb-1 {
    margin-bottom: 4px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mt-8 {
    margin-top: 32px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.pt-4 {
    padding-top: 16px;
}

.p-3 {
    padding: 12px;
}

.p-4 {
    padding: 16px;
}

.mt-2 {
    margin-top: 8px;
}

.gap-4 {
    gap: 16px;
}

.gap-8 {
    gap: 32px;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.list-none {
    list-style: none;
}

.border {
    border: 1px solid #E2E8F0;
}

.border-top {
    border-top: 1px solid #E2E8F0;
}

.border-bottom {
    border-bottom: 1px solid #E2E8F0;
}

.italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 50px;
    width: auto;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #2C5AA0;
    opacity: 0.8;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2C5AA0;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1E4278;
}

/* Content */
.content {
    max-width: 900px;
    margin: 0 auto;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin-bottom: 24px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.table thead {
    background-color: #F5F7FA;
}

.table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #1A202C;
    border-bottom: 2px solid #E2E8F0;
}

.table td {
    padding: 12px 16px;
    border-bottom: 1px solid #E2E8F0;
}

.table tbody tr:hover {
    background-color: #F5F7FA;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Pros/Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 24px 0;
}

.pros,
.cons {
    padding: 24px;
    border-radius: 8px;
}

.pros {
    background-color: #F0F9FF;
    border-left: 4px solid #2C5AA0;
}

.cons {
    background-color: #FFF5F5;
    border-left: 4px solid #C9A961;
}

/* Rating Box */
.rating-box {
    text-align: center;
    padding: 32px;
    background-color: #F5F7FA;
    border-radius: 8px;
    margin: 24px 0;
}

.rating-score {
    font-size: 64px;
    font-weight: 700;
    color: #2C5AA0;
    line-height: 1;
}

.rating-label {
    font-size: 18px;
    color: #718096;
    margin-top: 8px;
}

/* Game Cards */
.game-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.game-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

/* E-E-A-T Boxes */
.update-badge,
.author-box,
.wagering-box {
    border-radius: 8px;
}

.update-badge {
    border-left: 4px solid #2C5AA0;
}

.author-box {
    border-left: 4px solid #2C5AA0;
}

.wagering-box {
    border-left: 4px solid #2C5AA0;
}

/* FAQ */
.faq-list {
    margin-top: 24px;
}

.faq-item {
    padding: 24px;
    background-color: #F5F7FA;
    border-radius: 8px;
    border-left: 4px solid #2C5AA0;
}

/* Footer */
footer {
    margin-top: 64px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #2C5AA0;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    header .flex {
        flex-wrap: wrap;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: space-around;
        gap: 16px;
        margin-top: 16px;
    }

    .text-4xl {
        font-size: 28px;
    }

    .text-3xl {
        font-size: 24px;
    }

    .text-2xl {
        font-size: 20px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .table-container {
        overflow-x: scroll;
    }

    .table {
        min-width: 600px;
    }
}

