:root {
            --bg: #f9f9f9;
            --text: #222;
            --card: #ffffff;
            --border: #e0e0e0;
            --hover: #f0f0f0;
          }
  
          body.dark {
            --bg: #121212;
            --text: #f0f0f0;
            --card: #1e1e1e;
            --border: #333;
            --hover: #2a2a2a;
          }
  
          * {
            box-sizing: border-box;
          }
  
          body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            transition: background 0.3s, color 0.3s;
          }
  
          .container {
            background: var(--card);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            text-align: center;
            max-width: 380px;
            width: 90%;
            border: 1px solid var(--border);
            transition: background 0.3s, border 0.3s;
            z-index: 1;
          }
  
          h1 {
            margin-bottom: 20px;
            font-size: 1.8rem;
          }
  
          .links a {
            display: block;
            padding: 12px;
            margin: 10px 0;
            color: var(--text);
            text-decoration: none;
            border: 1px solid var(--border);
            border-radius: 6px;
            transition: background 0.2s;
            pointer-events: auto;
          }
  
          .links a:hover {
            background-color: var(--hover);
          }
  
          .dark-toggle-wrapper {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
          }
  
          .toggle {
            width: 32px;
            height: 32px;
            background-color: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
          }
  
          .toggle img {
            width: 100%;
            height: auto;
          }
  
          .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
          }
  
          .popup {
            background: var(--card);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 300px;
            border: 1px solid var(--border);
          }
  
          .popup h2 {
            margin-bottom: 20px;
          }
  
          .popup button {
            margin: 0 10px;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
          }
  
          .accept {
            background-color: #2E5984;
            color: black;
          }
  
          .decline {
            color: Black;
          }
  
          body.blocked .container,
          body.blocked .dark-toggle-wrapper,
          body.blocked .links a {
            pointer-events: none;
            opacity: 0.4;
          }
  
          .blocked-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--card);
            border: 1px solid var(--border);
            padding: 16px 24px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 10001;
            text-align: center;
          }
  
          .blocked-banner button {
            margin: 8px 0;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            background-color: #2E5984;
            color: black;
          }
  
          .blocked-banner a {
            display: inline-block;
            margin: 4px 10px;
            color: var(--text);
            text-decoration: underline;
            font-size: 0.9rem;
          }