/* How to Play Page Styles */

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002a5c 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.content-box {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.lead {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.section-divider {
    border: none;
    border-top: 2px solid #e9ecef;
    margin: 50px 0;
}

.content-box h2 {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-box h3 {
    color: var(--primary-blue);
    font-size: 26px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
}

.content-box h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-box ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-box ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.content-box a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.content-box a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Steps Container */
.steps-container {
    margin: 40px 0;
}

.step-box {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-blue);
    position: relative;
}

.step-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(253, 185, 19, 0.4);
}

.step-box h3 {
    margin-top: 20px;
    color: var(--primary-blue);
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.table thead {
    background: var(--primary-blue);
    color: white;
}

.table thead th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.table tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
    color: #555;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table-striped tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.table tbody tr:hover {
    background-color: #f1f3f5;
}

/* Alert Boxes */
.alert {
    padding: 20px 25px;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 16px;
    line-height: 1.6;
}

.alert-info {
    background-color: #d1ecf1;
    border-left: 5px solid #0c5460;
    color: #0c5460;
}

.alert-warning {
    background-color: #fff3cd;
    border-left: 5px solid #856404;
    color: #856404;
}

.alert i {
    margin-right: 10px;
}

.alert h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.alert ul {
    margin-bottom: 0;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.tip-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.tip-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.tip-card h4 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Inline CTA Box */
.cta-box-inline {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002a5c 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.cta-box-inline h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box-inline p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-box-inline .btn {
    font-size: 18px;
    padding: 15px 40px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-color: var(--accent-gold);
}

.cta-box-inline .btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .content-box {
        padding: 30px 20px;
    }

    .content-box h2 {
        font-size: 28px;
    }

    .content-box h3 {
        font-size: 22px;
    }

    .step-box {
        padding: 30px 20px;
    }

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

    .cta-box-inline {
        padding: 35px 25px;
    }

    .cta-box-inline h3 {
        font-size: 24px;
    }

    .table {
        font-size: 14px;
    }

    .table thead th,
    .table tbody td {
        padding: 12px 15px;
    }
}
