                      :root {
                         --text-purple: #673AB7;
                         --primary-color: #3685bd;
                         --bg-color: #FFF0D5;
                         --text-dark: #1e293b;
                         --text-light: #64748b;
                         --header-dark: #1e293b;
                         --btn-red: #dc2626;
                         --glass-bg: rgba(255, 255, 255, 0.75);
                         --glass-border: rgba(255, 255, 255, 0.5);
                         --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                     }
                     
                     * {
                         box-sizing: border-box;
                         margin: 0;
                         padding: 0;
                         font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
                     }
                     
                     body {
                         background-color: var(--bg-color);
                         color: var(--text-dark);
                         background-image: linear-gradient(135deg, #FFF0D5 0%, #f0f7fd 100%);
                         min-height: 100vh;
                     }
                     /* Header */
                     
                     header {
                         background: rgba(255, 255, 255, 0.9);
                         backdrop-filter: blur(10px);
                         /* position: sticky;
             top: 0;
             z-index: 100; */
                         padding: 15px 20px;
                         text-align: center;
                         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
                         border-bottom-left-radius: 20px;
                         border-bottom-right-radius: 20px;
                         margin-bottom: 20px;
                     }
                     
                     header h1,
                     header h1 a {
                         color: #dc2626;
                         font-size: 1.5rem;
                         margin-bottom: 5px;
                         text-decoration: none;
                     }
                     
                     header p {
                         font-size: 0.85rem;
                         font-weight: 600;
                         color: var(--text-dark);
                     }
                     
                     header .sub-text {
                         font-size: 0.75rem;
                         color: var(--text-light);
                         margin-top: 3px;
                     }
                     
                     .container {
                         max-width: 1200px;
                         margin: 0 auto;
                         padding: 0 10px;
                         display: flex;
                         flex-direction: column;
                         gap: 20px;
                     }
                     /* Common Panel Style */
                     
                     .panel {
                         background: var(--glass-bg);
                         backdrop-filter: blur(16px);
                         border: 1px solid var(--glass-border);
                         border-radius: 16px;
                         box-shadow: var(--shadow);
                         overflow: hidden;
                     }
                     
                     .panel-header {
                         background: var(--header-dark);
                         color: white;
                         text-align: center;
                         padding: 10px;
                         font-size: 0.9rem;
                         font-weight: 600;
                     }
                     /* Result Grids */
                     
                     .result-grid {
                         display: grid;
                         grid-template-columns: repeat(8, 1fr);
                         gap: 8px;
                         padding: 15px;
                         text-align: center;
                     }
                     
                     .result-item {
                         background: white;
                         padding: 10px 5px;
                         border-radius: 10px;
                         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
                     }
                     
                     .time-lbl {
                         font-size: 0.65rem;
                         color: var(--text-light);
                         margin-bottom: 4px;
                         display: block;
                     }
                     
                     .num-big {
                         font-size: 1.1rem;
                         font-weight: bold;
                         color: var(--text-purple);
                         display: block;
                     }
                     
                     .num-sml {
                         font-size: 0.9rem;
                         font-weight: bold;
                         color: var(--primary-color);
                         display: block;
                     }
                     /* Warning & Refresh */
                     
                     .warning-box {
                         text-align: center;
                         padding: 10px;
                         font-size: 0.8rem;
                         color: #d35400;
                         background: #fff3cd;
                         margin: 0 15px 15px;
                         border-radius: 8px;
                     }
                     
                     .btn-refresh {
                         background: var(--btn-red);
                         color: white;
                         border: none;
                         padding: 8px 25px;
                         border-radius: 20px;
                         font-weight: bold;
                         cursor: pointer;
                         margin: 0 auto 15px;
                         display: block;
                     }
                     
                     .bazi-no {
                         font-size: 0.7rem;
                         font-weight: bold;
                         color: #1e293b;
                         background: #f1f5f9;
                         width: 20px;
                         height: 20px;
                         margin: 0 auto 5px;
                         border-radius: 50%;
                         display: flex;
                         align-items: center;
                         justify-content: center;
                         border: 1px solid #cbd5e1;
                     }
                     /* Tables */
                     
                     .table-responsive {
                         overflow-x: auto;
                         padding: 10px;
                     }
                     
                     table {
                         width: 100%;
                         border-collapse: collapse;
                         min-width: 320px;
                         /* Forces scroll on small screens */
                         background: white;
                         border-radius: 8px;
                         overflow: hidden;
                     }
                     
                     th,
                     td {
                         border: 1px solid #e2e8f0;
                         padding: 8px;
                         text-align: center;
                         font-size: 0.85rem;
                     }
                     
                     th {
                         background: var(--header-dark);
                         color: white;
                     }
                     
                     .info-table td:first-child {
                         font-weight: bold;
                         text-align: right;
                         width: 40%;
                         background: #f8fafc;
                     }
                     
                     .info-table td:last-child {
                         text-align: left;
                     }
                     /* Red Action Buttons */
                     
                     .red-btn-group {
                         display: flex;
                         flex-direction: column;
                         gap: 10px;
                     }
                     
                     .btn-red-action {
                         background: var(--btn-red);
                         color: white;
                         text-decoration: none;
                         text-align: center;
                         padding: 12px;
                         border-radius: 8px;
                         font-weight: bold;
                         font-size: 0.9rem;
                         box-shadow: 0 4px 10px rgba(220, 38, 38, 0.2);
                         display: block;
                     }
                     /* Text Blocks */
                     
                     .text-block {
                         padding: 15px;
                         font-size: 0.85rem;
                         line-height: 1.5;
                         color: #334155;
                     }
                     
                     .text-block strong {
                         color: var(--text-dark);
                     }
                     /* Floating Action Button */
                     /* Mobile Adjustments */
                     
                     @media (max-width: 768px) {
                         .result-grid {
                             grid-template-columns: repeat(4, 1fr);
                         }
                     }
                     
                     @media (max-width: 480px) {
                         .result-grid {
                             grid-template-columns: repeat(4, 1fr);
                         }
                         header h1 {
                             font-size: 1.2rem;
                         }
                     }
                     /* Modern Footer Design */
                     
                     footer {
                         background: var(--header-dark);
                         color: #cbd5e1;
                         padding: 30px 20px;
                         text-align: center;
                         margin-top: 40px;
                         border-top-left-radius: 25px;
                         border-top-right-radius: 25px;
                         box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
                     }
                     
                     footer p {
                         font-size: 0.9rem;
                         letter-spacing: 0.5px;
                         font-weight: 500;
                         position: relative;
                         display: inline-block;
                     }
                     /* ফুটারের নিচে একটি ছোট ডিভাইডার বা স্টাইলিশ টাচ */
                     
                     footer::after {
                         content: '';
                         display: block;
                         width: 50px;
                         height: 3px;
                         background: var(--btn-red);
                         margin: 10px auto 0;
                         border-radius: 10px;
                     }
                     /* কপিরাইট টেক্সট হাইলাইট */
                     
                     footer p b {
                         color: #fff;
                     }