
        :root {
            --primary-color: #6b21a8; /* Deep purple */
            --secondary-color: #ffeb3b; /* Bright yellow */
            --accent-color: #14b8a6; /* Teal */
            --text-color: #1f2937; /* Dark gray */
            --bg-light: #f9fafb; /* Light background */
            --bg-dark: #1f2937; /* Dark footer gradient */
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-light);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--primary-color), #9333ea);
            color: var(--white);
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .header .logo-circle {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            border-radius: 50%;
            margin: 0 auto 15px;
            color: var(--primary-color);
            font-size: 24px;
            font-weight: bold;
            line-height: 60px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .header .logo-circle:hover {
            transform: scale(1.1);
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .subheading {
            font-size: 1.25rem;
            opacity: 0.9;
        }
        
        .content {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            margin-bottom: 30px;
            animation: fadeIn 1s ease;
        }

        .highlight {
            color: var(--primary-color);
            font-weight: 700;
        }

        .purple {
            color: var(--primary-color);
        }

        .lucky-box, .jodi-section, .panel-section, .market-section, .info-section, .results-container, .market-box {
            background: var(--white);
            border-radius: 10px;
            padding: 5px;
            margin: 15px auto;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .lucky-box:hover, .jodi-section:hover, .panel-section:hover, .market-section:hover, .info-section:hover, .results-container:hover, .market-box:hover {
            transform: translateY(-5px);
        }

        .section-title, .market-title {
            font-size: 1.75rem;
            font-weight: 700;
            text-align: center;
            position: relative;
            margin-bottom: 20px;
        }

        .section-title::after, .market-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 2px;
            background: var(--primary-color);
            margin: 2px auto;
            border-radius: 2px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
        }

        th, td {
            padding: 15px;
            text-align: center;
            border: 1px solid #e5e7eb;
        }

        th {
            background: var(--accent-color);
            color: var(--white);
            font-weight: 600;
            text-transform: uppercase;
        }

        td {
            background: #f1f5f9;
            color: var(--text-color);
            font-weight: 500;
        }
        
        .jodi-link, .panel-link {
            display: block;
            padding: 15px;
            margin: 10px auto;
            max-width: 600px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .jodi-link {
            border: 2px solid var(--secondary-color);
            color: var(--primary-color);
            background: transparent;
        }
        
        .jodi-link:hover {
            background: var(--secondary-color);
            color: var(--text-color);
            transform: scale(1.02);
        }
        
        .panel-link {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
        }

        .panel-link:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.02);
        }

        .market-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .clock {
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: 700;
            text-align: center;
            padding: 20px 0;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        
        .info-section {
            background: var(--secondary-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    margin-bottom: 3px;
    border-radius: 6px;
    font-family: Arial, sans-serif;
}


.yellow {
    background: var(--secondary-color);
}

        .blue {
            background: #e0f2fe;
        }
        
        .game-info {
            flex: 1;
    text-align: center;
}

        .game-name {
            font-size: 1.5rem;
            font-weight: 700;
        }
        .game-numbers {
            font-size: 1.4rem;
            font-weight: bold;
            color: red;
    margin: 4px 0;
}

.game-time {
            font-size: 0.9rem;
            color: #6b7280;
        }

      .side-button {
          background-color: purple;
          color: white;
          padding: 6px 16px;
          font-weight: bold;
          border-radius: 5px;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.side-button:hover {
            background: #7e22ce;
        }

        .result-box {
            padding: 10px;
            border-radius: 8px;
            background: var(--white);
            margin-bottom: 10px;
        }

        .numbers {
            font-size: 1.5rem;
            color: #dc2626;
            font-weight: 700;
        }
        
        @media (max-width: 768px) {
            .result-row {
                flex-direction: column;
                /* gap: 8px; */
            }
            .side-button {
                width: 100%;
            }
        }
        .hindi-text {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-color);
        }

        .refresh-button {
            background: #dc2626;
            color: var(--white);
            padding: 8px 16px;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .refresh-button:hover {
            background: #b91c1c;
        }

        .tags-section {
            background: #f3e8ff;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .tag-button {
            background: var(--primary-color);
            color: var(--white);
            padding: 10px 20px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: background 0.3s ease;
            line-height: 50px;
            white-space: nowrap;
        }

        .tag-button:hover {
            background: #7e22ce;
        }

        .disclaimer {
            background: #f3e8ff;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-size: 0.9rem;
            color: #6b7280;
        }

        .disclaimer b {
            color: var(--primary-color);
            font-weight: 700;
        }

        .footer {
            background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
            color: var(--white);
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
            border-radius: 0 0 10px 10px;
        }

        .footer a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .floating-btn {
            position: fixed;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        .whatsapp-btn {
            bottom: 60px;
            left: 10px;
            width: 50px;
            height: 50px;
            background: #25D366;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .call-btn {
            bottom: 10px;
            left: 10px;
            background: #f44336;
            padding: 10px 10px;
            border-radius: 8px;
            font-size: 0.9rem;
        }

        .refresh-btn {
            bottom: 10px;
            right: 10px;
            background: var(--primary-color);
            padding: 10px 10px;
            border-radius: 8px;
            font-size: 0.9rem;
        }

        .back-to-top {
            bottom: 60px;
            right: 10px;
            background: var(--bg-dark);
            width: 50px;
            height: 50px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .header h1 { font-size: 1.8rem; }
            .subheading { font-size: 1rem; }
            .section-title, .market-title { font-size: 1.5rem; }
            .jodi-link, .panel-link { font-size: 0.9rem; }
            .clock { font-size: 1.5rem; }
            .result-row { flex-direction: column; }
        }
   h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
}
p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}
ul {
    margin-right: 20px;
    margin-bottom: 15px;
}
li {
    margin-bottom: 5px;
    text-align: left;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.matka-free-zone {
    background-color: #f0e6f6;
    width: 100%;
    padding: 10px 0;
}
.section-title {
    text-align: center;
    font-size: 15px;
    color: #333;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.market-box {
    background: #fff;
    /* border: 2px solid #6a0dad; */
    border-radius: 10px;
    padding: 10px;
    margin: 5px auto;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}
.market-box:hover {
    transform: scale(1.05);
}
.market-name {
    font-size: 18px;
    color: #6a0dad;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}
.open-close {
    font-size: 18px;
    color: #fd0909ff;
    margin: 5px 0;
    font-weight: bold;
}
.number-list {
    font-size: 18px;
    color: #fd0909ff;
    margin: 5px 0;
    font-weight: bold;
}

/* Stylish Weekly Panel Chart */
.weekly-panel-chart {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #6a0dad;
}
.weekly-panel-chart h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.underline {
    width: 100px;
    height: 3px;
    background: #6a0dad;
    margin: 0 auto 15px;
    border-radius: 2px;
}
.subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}
.panel-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}
.panel-table th, .panel-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
}
.panel-table th {
    background: #6a0dad;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}
.panel-table td {
    font-size: 14px;
    color: #333;
    background: #f9f9f9;
    transition: background 0.3s;
}
.panel-table tr:nth-child(even) td {
    background: #f0e6f6;
}
.panel-table tr:hover td {
    background: #e0d4e8;
    color: #2d302f;
}
.panel-table td:first-child {
    font-weight: bold;
    color: #6a0dad;
}
.panel-table td:last-child {
    font-size: 15px;
    color: #2d302f;
}

/* Side Button Styling */
.side-button {
    background: #6a0dad;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none; 
    font-weight: bold;
    margin: 0 5px;
    transition: background 0.3s;
}
.side-button:hover {
    background: #5a0cad;
}

@media (max-width: 600px) {
    .panel-table th, .panel-table td {
        padding: 8px;
        font-size: 12px;
    }
    .weekly-panel-chart {
        padding: 10px;
    }
    .weekly-panel-chart h2 {
        font-size: 20px;
    }
    .subtitle {
        font-size: 14px;
    }
}