    /* Consolidated channel and live page styles
   Combined styles previously inline in live.php and channel.php
   Keeps a single source of truth for channel-related UI.
*/


/* Modern Channel Logo Styles */

.channel-thumbnail img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.channel-thumbnail img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}


/* Enhanced CSS-based logo hover effects */

.css-logo {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.css-logo:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(1.15);
}


/* Modern channel item styling */

.channel-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 8px;
    margin: 4px 8px;
    padding: 12px 16px !important;
}

.channel-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.channel-item.active {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border-left: 4px solid #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}


/* Enhanced channel card styling */

.channel-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.channel-card .card-body {
    padding: 20px;
}

.channel-card .watch-btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
}

.channel-card:hover .watch-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}


/* Enhanced live indicator animation */

.live-indicator {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
    margin-right: 6px;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
    }
}


/* Enhanced channel status badges */

.badge.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%) !important;
    border-radius: 20px;
    padding: 6px 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.badge.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffdb4d 100%) !important;
    border-radius: 20px;
    padding: 6px 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.badge.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #5cb85c 100%) !important;
    border-radius: 20px;
    padding: 6px 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.badge.bg-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    border-radius: 20px;
    padding: 6px 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.badge.bg-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    border-radius: 20px;
    padding: 6px 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(108, 117, 125, 0.3);
}


/* Enhanced video player styling */

.video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe,
.video-wrapper video {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}


/* Enhanced live video container */

.live-video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.live-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border-radius: 20px 20px 0 0;
    padding: 20px 24px;
}

.on-air-indicator {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    animation: pulse 2s infinite;
}


/* Enhanced card styling */

.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.card-header {
    border-radius: 16px 16px 0 0 !important;
    border-bottom: none;
    font-weight: 600;
}


/* Enhanced live chat styling */

.live-chat {
    border-radius: 0 0 20px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.chat-messages {
    border-radius: 12px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.chat-message {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.chat-message:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chat-form input {
    border-radius: 25px;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.chat-form input:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.chat-form button {
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
}


/* Enhanced channel list scrollbar */

.channel-list {
    padding: 8px 0;
}

.channel-list::-webkit-scrollbar {
    width: 8px;
}

.channel-list::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.channel-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
    border-radius: 10px;
}

.channel-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c82333 0%, #a71d2a 100%);
}


/* Enhanced category tabs */

.category-tabs .nav-pills .nav-link {
    border-radius: 25px;
    padding: 10px 24px;
    margin: 4px 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-tabs .nav-pills .nav-link:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-2px);
}

.category-tabs .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}


/* Enhanced schedule items */

.schedule-item {
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* Enhanced stream stats */

.stream-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 16px;
    border-radius: 12px;
}

.stream-stats .d-flex {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.stream-stats .d-flex:last-child {
    border-bottom: none;
}


/* Enhanced page header */

.live-tv-section h1 {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: none;
}


/* Enhanced button styling */

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333 0%, #a71d2a 100%);
}

.btn-outline-danger {
    border: 2px solid #dc3545;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}


/* Mobile Responsive Improvements */

@media (max-width: 768px) {
    .channel-thumbnail img {
        width: 45px !important;
        height: 32px !important;
    }
    .channel-card .channel-thumbnail img {
        width: 55px !important;
        height: 40px !important;
    }
    .css-logo {
        font-size: 9px !important;
        width: 50px !important;
        height: 35px !important;
    }
    .channel-item {
        padding: 10px 12px !important;
        margin: 3px 6px;
    }
    .channel-card {
        margin-bottom: 16px;
    }
    .live-header {
        padding: 16px 20px;
        border-radius: 16px 16px 0 0;
    }
    .live-header h4 {
        font-size: 16px;
    }
    .video-wrapper iframe,
    .video-wrapper video {
        height: 300px !important;
    }
    .chat-messages {
        height: 150px !important;
    }
    .category-tabs .nav-pills .nav-link {
        padding: 8px 16px;
        font-size: 14px;
        margin: 3px 6px;
    }
    .live-tv-section h1 {
        font-size: 2rem;
    }
    .live-tv-section .lead {
        font-size: 1rem;
    }
    .card {
        border-radius: 12px;
    }
    .channel-card {
        border-radius: 12px;
    }
    .live-video-container {
        border-radius: 16px;
    }
    .chat-form input {
        padding: 10px 16px;
    }
    .chat-form button {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .channel-thumbnail img {
        width: 40px !important;
        height: 28px !important;
    }
    .css-logo {
        font-size: 8px !important;
        width: 45px !important;
        height: 32px !important;
    }
    .channel-item {
        padding: 8px 10px !important;
    }
    .live-header {
        padding: 12px 16px;
    }
    .live-header h4 {
        font-size: 14px;
    }
    .video-wrapper iframe,
    .video-wrapper video {
        height: 250px !important;
    }
    .chat-messages {
        height: 120px !important;
    }
    .category-tabs .nav-pills {
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .category-tabs .nav-pills .nav-link {
        padding: 6px 12px;
        font-size: 12px;
        margin: 2px 4px;
    }
    .live-tv-section h1 {
        font-size: 1.5rem;
    }
    .btn-danger {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* Dark mode support */

@media (prefers-color-scheme: dark) {
    .channel-item:hover {
        background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    }
    .channel-item.active {
        background: linear-gradient(135deg, #2d1f1f 0%, #3d2f2f 100%);
    }
    .card {
        background: linear-gradient(145deg, #2d2d2d 0%, #1d1d1d 100%);
    }
    .chat-message {
        background: #2d2d2d;
        color: #fff;
    }
    .chat-form input {
        background: #2d2d2d;
        border-color: #3d3d3d;
        color: #fff;
    }
    .schedule-item {
        background: linear-gradient(135deg, #2d2d2d 0%, #1d1d1d 100%);
    }
    .stream-stats {
        background: linear-gradient(135deg, #2d2d2d 0%, #1d1d1d 100%);
    }
}


/* Smooth scrolling */

html {
    scroll-behavior: smooth;
}


/* Enhanced focus states for accessibility */

button:focus,
input:focus,
a:focus {
    outline: 3px solid rgba(220, 53, 69, 0.3);
    outline-offset: 2px;
}


/* Loading animation */

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}


/* News Ticker Styles */

.news-ticker-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-ticker {
    display: flex;
    align-items: center;
    padding: 12px 20px;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
}

.ticker-title {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    padding-left: 20px;
}

.ticker-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-scroll:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 50px;
}

.ticker-category {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
}

.ticker-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.ticker-link:hover {
    color: #dc3545;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Modern Channel Grid Layout */

.channel-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.channel-card-modern {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.channel-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 53, 69, 0.3);
}

.channel-card-modern .channel-logo-wrapper {
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.channel-card-modern .channel-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.channel-card-modern .channel-info {
    padding: 20px;
}

.channel-card-modern .channel-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.channel-card-modern .channel-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.channel-card-modern .viewer-count {
    color: #6c757d;
    font-size: 13px;
}

.channel-card-modern .watch-btn-modern {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.channel-card-modern .watch-btn-modern:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71d2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}


/* Enhanced Video Player Frame */

.video-player-frame {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-player-frame .player-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-player-frame .player-header .channel-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-player-frame .player-header .live-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.video-player-frame .video-container {
    position: relative;
    background: #000;
    aspect-ratio: 16/9;
}

.video-player-frame .video-container iframe,
.video-player-frame .video-container video {
    width: 100%;
    height: 100%;
    border: none;
}

.video-player-frame .player-controls {
    background: rgba(26, 26, 46, 0.95);
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}


/* Modern Channel Sidebar */

.channel-sidebar-modern {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.channel-sidebar-modern .sidebar-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 20px;
    color: white;
}

.channel-sidebar-modern .sidebar-header h5 {
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.channel-sidebar-modern .channel-list-modern {
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
}

.channel-sidebar-modern .channel-list-modern::-webkit-scrollbar {
    width: 6px;
}

.channel-sidebar-modern .channel-list-modern::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.channel-sidebar-modern .channel-list-modern::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
    border-radius: 10px;
}

.channel-item-modern {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-item-modern:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateX(5px);
    border-color: rgba(220, 53, 69, 0.2);
}

.channel-item-modern.active {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border-color: #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
}

.channel-item-modern .channel-logo-small {
    width: 50px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
    color: white;
    flex-shrink: 0;
}

.channel-item-modern .channel-details {
    flex: 1;
    min-width: 0;
}

.channel-item-modern .channel-details h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.channel-item-modern .channel-details .channel-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}


/* Responsive Design for Mobile */

@media (max-width: 992px) {
    .channel-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    .video-player-frame .player-header {
        padding: 15px 20px;
    }
    .video-player-frame .player-header h4 {
        font-size: 16px;
    }
    .ticker-label {
        min-width: 140px;
        padding-right: 15px;
    }
    .ticker-title {
        font-size: 12px;
    }
    .ticker-item {
        margin-right: 30px;
    }
    .ticker-link {
        font-size: 13px;
    }
    .channel-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    .channel-card-modern .channel-logo-wrapper {
        height: 100px;
    }
    .channel-card-modern .channel-logo-wrapper div {
        font-size: 20px;
    }
    /* Channel.php specific styles appended */
    .channel-header {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        padding: 40px 0;
        margin-bottom: 30px;
    }
    .channel-info {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .channel-logo {
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        color: #dc3545;
    }
    .live-badge {
        background: #28a745;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: bold;
        animation: pulse 2s infinite;
    }
    .video-container {
        background: #000;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .video-container iframe,
    .video-container video {
        width: 100%;
        height: 500px;
        border: none;
    }
    .chat-container {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 20px;
        height: 400px;
        overflow-y: auto;
    }
    .chat-message {
        background: white;
        padding: 10px 15px;
        border-radius: 8px;
        margin-bottom: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .seo-content {
        background: white;
        padding: 30px;
        border-radius: 10px;
        margin-top: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .seo-content h2 {
        color: #dc3545;
        margin-bottom: 20px;
    }
    .seo-content p {
        line-height: 1.8;
        color: #333;
    }