   /* Custom CSS */

        body {
            background-color: #1a202c;
            /* Keep background black */
            color: white;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Hide post-icons class */

        .post-icons {
            display: none;
        }

        header {
            background-color: #2d3748;
            padding: 20px;
            text-align: center;
        }

        header h1 {
            color: #48bb78;
            font-size: 36px;
            font-weight: bold;
            text-transform: uppercase;
        }

        main {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        /* Ensure the content box keeps a black background */

        .content-box {
            background-color: #2d3748;
            /* Ensure content box stays dark */
            padding: 20px;
            /* Reduced padding */
            border-radius: 8px;
            /* Slightly round corners for modern look */
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
            max-width: 700px;
            /* Reduced width */
            width: 90%;
            /* Makes it responsive */
            margin: 0 auto;
            /* Center the box horizontally */
        }

        .section-title {
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            color: #48bb78;
            margin-bottom: 20px;
        }

        .highlight-text {
            font-size: 16px;
            color: white;
            margin-bottom: 20px;
            text-align: center;
        }

        .stream-box {
            background-color: #4a5568;
            padding: 15px;
            /* Reduced padding */
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            margin: 10px;
            /* Reduced margin */
            text-align: center;
            flex: 1;
            transition: all 0.3s ease-in-out;
            cursor: pointer;
        }

        .stream-box:hover {
            transform: translateY(-5px);
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
        }

        .stream-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #48bb78;
        }

        .live-status {
            color: #48bb78;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .watch-now {
            color: #63b3ed;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
        }

        footer {
            background-color: #2d3748;
            padding: 20px;
            text-align: center;
            color: white;
        }

        footer p {
            margin: 0;
        }

        /* Flexbox for responsive layout */

        .stream-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        strong {
            color: #cd2727;
        
        }
        h1,h2,h3,h4 {
            color: #42f332;
        }

        @media (max-width: 768px) {
            .content-box {
                max-width: 90%;
                /* Make it responsive on smaller screens */
            }
            .stream-grid {
                flex-direction: column;
            }
        }