/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #991b1b;
    --accent-color: #ef4444;
    --dark-color: #1a1a1a;
    --dark-light: #2d2d2d;
    --text-color: #e5e5e5;
    --text-dark: #1a1a1a;
    --text-light: #a3a3a3;
    --bg-color: #0a0a0a;
    --bg-light: #1f1f1f;
    --white: #ffffff;
    --border-color: #3d3d3d;
    --success-color: #22c55e;
    --danger-color: #dc2626;
    --warning-color: #f59e0b;
    --gold-color: #fbbf24;
}

body {
    font-family: 'Sarabun', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Navigation */
.site-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand a {
    text-decoration: none;
}

.site-logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.navbar-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.navbar-menu a:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Promotions Section */
.promotions-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(220, 38, 38, 0.05) 10px,
            rgba(220, 38, 38, 0.05) 20px
        );
    pointer-events: none;
}

.promotions-header {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.promotions-header .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.thai-date {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    margin-top: 10px;
    font-weight: 500;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.promotion-card {
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--bg-light) 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold-color) 100%);
}

.promotion-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    border-color: var(--primary-color);
}

.promo-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.promotion-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
}

.promo-description {
    color: var(--text-color);
    font-size: 1.05rem;
    margin: 15px 0;
    line-height: 1.6;
}

.promo-conditions {
    background: var(--bg-color);
    padding: 12px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

.promo-conditions small {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.promotion-card .btn {
    margin-top: 15px;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.promo-note {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 50%, var(--dark-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(220, 38, 38, 0.6);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-color) 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: var(--text-light);
}

/* Providers Section */
.providers-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.provider-card {
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-color) 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-color);
}

.provider-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.provider-rating {
    margin: 10px 0;
}

.stars {
    color: #fbbf24;
    font-weight: 600;
}

.provider-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.provider-bet-range {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.main-content {
    background: var(--dark-light);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.article {
    line-height: 1.8;
}

.article h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.article h2 {
    font-size: 1.7rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.article h3 {
    font-size: 1.4rem;
    margin: 25px 0 12px;
    color: var(--accent-color);
}

.article h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--white);
}

.article p {
    margin: 15px 0;
    color: var(--text-color);
}

.article strong {
    color: var(--white);
}

.article ul, .article ol {
    margin: 15px 0;
    padding-left: 30px;
}

.article li {
    margin: 8px 0;
}

.article strong {
    color: var(--text-color);
    font-weight: 600;
}

.internal-links {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.internal-links h4 {
    margin-bottom: 15px;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-list a {
    background: var(--dark-color);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.link-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-color) 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 2px solid var(--border-color);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin: 10px 0;
}

.sidebar-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.sidebar-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    text-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.text-small {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Sidebar Links Section */
.sidebar-links {
    background: var(--bg-color);
    padding: 40px 0;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.link-grid a {
    background: var(--bg-color);
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--primary-color);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.link-grid a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 50%, var(--dark-color) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 15px rgba(220, 38, 38, 0.6);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* Footer */
.site-footer {
    background: #2d3748;
    color: #a0aec0;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin: 8px 0;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 30px 0;
    border-bottom: 2px solid var(--primary-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb span {
    opacity: 0.8;
}

/* Article Header */
.article-header {
    margin-bottom: 30px;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Related Links */
.related-links {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.link-card {
    background: var(--dark-light);
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    display: block;
    border: 1px solid var(--border-color);
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-color);
    color: var(--white);
    background: var(--primary-color);
}

/* Provider Detail */
.provider-detail-section {
    padding: 40px 0;
    background: var(--bg-color);
}

.provider-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-color) 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 2px solid var(--border-color);
}

.provider-rating-large {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 1.2rem;
}

.provider-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-color) 100%);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-box {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    margin-bottom: 10px;
}

/* Error Page */
.error-section {
    padding: 100px 0;
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.popular-links {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-color) 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.popular-links h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.popular-links ul {
    list-style: none;
}

.popular-links li {
    margin: 10px 0;
}

/* Providers Listing */
.providers-listing-section {
    padding: 60px 0;
    background: var(--bg-color);
}

.providers-grid-full {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.provider-card-detailed {
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-color) 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.provider-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    border-color: var(--primary-color);
}

.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.provider-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
}

.provider-rating {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 8px 15px;
    border-radius: 20px;
}

.provider-rating .stars {
    color: var(--gold-color);
    font-weight: 600;
    font-size: 1rem;
}

.provider-body {
    color: var(--text-color);
}

.provider-body .provider-description {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.provider-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--bg-color);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.info-item strong {
    color: var(--text-light);
    font-size: 0.9rem;
}

.info-item span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.provider-features-list h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.provider-features-list ul {
    list-style-position: inside;
    margin-top: 10px;
    color: var(--text-color);
}

.provider-features-list li {
    padding: 5px 0;
    color: var(--text-color);
}

.provider-footer {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    justify-content: flex-end;
}

.content-section-text {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-color) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.content-section-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
}

.content-section-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.content-section-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-section-text ul,
.content-section-text ol {
    color: var(--text-color);
    margin: 15px 0;
    padding-left: 30px;
}

.content-section-text li {
    margin: 10px 0;
    line-height: 1.8;
}

.content-section-text strong {
    color: var(--white);
    font-weight: 600;
}

.text-center {
    text-align: center;
    margin: 40px 0;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-color) 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.3s;
}

.sidebar-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-color);
}

.sidebar-widget h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    text-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget li {
    margin: 0;
    padding: 0;
}

.sidebar-widget li a {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    color: var(--text-color);
    text-decoration: none;
    background: var(--bg-color);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.sidebar-widget li a:hover {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-left-color: var(--gold-color);
    transform: translateX(5px);
    padding-left: 20px;
}

.sidebar-links {
    padding-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .navbar-menu {
        width: 100%;
        justify-content: center;
    }
    
    .provider-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .features-grid, .providers-grid {
        grid-template-columns: 1fr;
    }
}

/ *   U p d a t e d :   % d a t e %   % t i m e %   * / 
 
 