/* ===============================
   FONTS
   =============================== */
   @font-face {
    font-family: "Satoshi";
    src: url("./fonts/Satoshi-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Telma";
    src: url("./fonts/Telma-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Montserrat";
    src: url("./fonts/Montserrat-Thin.woff2") format("woff2");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Roboto";
    src: url("./fonts/Roboto-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  /* ===============================
     GLOBAL VARIABLES & THEME
     =============================== */
  :root {
    --bg: #ffffff;
    --text: #111;
    --accent: #2a4d9b;
    --subtext: #555;
    --card: #f7f9fc;
    --border: #e5e7eb;
  
    /* Dark mode variables */
    --bg-dark: #0e0f13;
    --text-dark: #f3f4f6;
    --card-dark: #1a1c22;
    --subtext-dark: #b5b5b5;
    --border-dark: #333;
  }
  
  body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-family: "Roboto", "Satoshi", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background 0.3s, color 0.3s;
  }
  
  .dark-mode {
    background: var(--bg-dark);
    color: var(--text-dark);
  }
  
  /* ===============================
     CONTAINER / LAYOUT
     =============================== */
  .container {
    width: 95%;
    max-width: 900px;
    margin: auto;
    padding-bottom: 60px;
  }
  
  section {
    margin: 40px 0;
    padding: 25px;
    background: var(--card);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
  }
  
  .dark-mode section {
    background: var(--card-dark);
    border-color: var(--border-dark);
  }
  
  h1, h2 {
    font-family: "Montserrat", "Telma", cursive;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  p {
    color: var(--subtext);
  }
  
  .dark-mode p {
    color: var(--subtext-dark);
  }
  
  /* ===============================
     THEME TOGGLE BUTTON
     =============================== */
  #themeToggle {
    position: fixed;
    right: 20px;
    top: 20px;
    border: none;
    background: #f3f3f3;
    border-radius: 50%;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 20px;
    z-index: 999;
    transition: background 0.3s, transform 0.2s;
  }
  
  #themeToggle:hover {
    transform: scale(1.1);
  }
  
  .dark-mode #themeToggle {
    background: #222;
  }
  
  /* ===============================
     HERO SECTION
     =============================== */
  .hero {
    text-align: center;
    padding: 40px 20px;
  }
  
  .profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 15px;
    border: 3px solid var(--accent);
  }
  
  .founder a {
    color: var(--accent);
    text-decoration: none;
  }
  
  .dark-mode .founder a {
    color: #7ea6ff;
  }
  
  /* ===============================
     SERVICES LIST
     =============================== */
  .services-list {
    padding-left: 20px;
  }
  
  .services-list li {
    margin: 8px 0;
  }
  
  /* ===============================
     TAGS
     =============================== */
  .tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  
  .tag {
    padding: 6px 12px;
    background-color: #e8f0ff;
    color: #2a4d9b;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.2s ease;
  }
  
  .tag:hover {
    background-color: #d4e2ff;
    cursor: pointer;
  }
  
  .dark-mode .tag {
    background-color: #1c2538;
    color: #9bb8ff;
  }
  
  /* ===============================
     STATUS LINE
     =============================== */
  .status-line {
    font-family: "Roboto", "Satoshi", sans-serif;
    font-size: 15px;
    font-style: italic;
  }
  
  /* ===============================
     COUNTDOWN BOX
     =============================== */
  .countdown-box {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    background: var(--card);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
  }
  
  .dark-mode .countdown-box {
    background: var(--card-dark);
    border-color: var(--border-dark);
  }
  
  /* ===============================
     PASSCODE BOX
     =============================== */
  #passcode-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  #passcode-input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    width: 200px;
    transition: border 0.3s, background 0.3s;
  }
  
  #unlock-btn {
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  #unlock-btn:hover {
    background: #1a3a7c;
  }
  
  .dark-mode #passcode-input {
    border-color: var(--border-dark);
    background: var(--card-dark);
  }
  
  .dark-mode #unlock-btn {
    background: var(--accent);
  }
  
  /* ===============================
     LINKS LIST
     =============================== */
  .links-list {
    list-style: none;
    padding-left: 0;
  }
  
  .links-list li {
    margin: 8px 0;
  }
  
  .links-list a {
    text-decoration: none;
    color: var(--accent);
    transition: all 0.3s ease;
  }
  
  .dark-mode .links-list a {
    color: #7ea6ff;
  }
  
  /* Locked / Unlocked */
  a.locked {
    pointer-events: none;
    opacity: 0.4;
    filter: blur(1px);
    transition: all 0.3s ease;
  }
  
  a.unlocked {
    pointer-events: auto;
    opacity: 1;
    filter: blur(0);
    transition: all 0.3s ease;
  }
  
  /* ===============================
     VIDEO PREVIEW
     =============================== */
  .video-preview {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    cursor: pointer;
  }
  
  .video-preview img {
    width: 100%;
    border-radius: 15px;
    display: block;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    pointer-events: none;
  }
  
  /* ===============================
     FOOTER
     =============================== */
  footer {
    margin-top: 40px;
    text-align: center;
    padding: 25px 10px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
  }
  
  footer .privacy-note {
    font-size: 13px;
    color: var(--subtext);
  }
  
  .dark-mode footer {
    background: var(--card-dark);
    border-color: var(--border-dark);
  }
  
  /* ===============================
     RESPONSIVE
     =============================== */
  @media (max-width: 600px) {
    .profile-pic {
      width: 110px;
      height: 110px;
    }
  
    #passcode-box {
      flex-direction: column;
      width: 100%;
    }
  
    #passcode-input,
    #unlock-btn {
      width: 100%;
    }
  }
  