 :root{
      --bg: #160279;          /* Navy Blue */
      --accent: #67EE49;      /* Screamin' Green */
      --text: #ffffff;        /* White */
    }
    body{
      margin:0; padding:0;
      background: var(--bg);
      color: var(--text);
      font: 16px/1.6 system-ui,Arial;
    }
        /* ========== Header ========== */
        .header {
            background: #74fa071a;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 15px 20px;
            box-shadow: 0 4px 20px rgba(12, 212, 12, 0.5);
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

    /* Title */
    .title{
      color: var(--accent);
      font-weight: 800;
      line-height: 1.2;
      margin: 20px auto 10px;
      max-width: 960px;
      padding: 0 16px;
      text-align: center;
      font-size: clamp(1.8rem, 4vw, 3rem); /* small=1.8rem, big=3rem */
      word-break: break-word;
    }

    /* LCD Frame */
    .lcd-frame{
      position: relative;
      max-width: 960px;
      margin: 20px auto;
      border: 10px solid #111;
      border-radius: 16px;
      background: #000;
      overflow: hidden;
      box-shadow: 0 0 25px rgba(0,0,0,.7), inset 0 0 25px #000;
    }
    .lcd-slides img{
      width: 100%; height: auto;
      display: none;
      object-fit: cover;
    }

    /* Animations */
    @keyframes fadeZoom{
      from{opacity: 0; transform: scale(1.1) translateX(30px);}
      to{opacity: 1; transform: scale(1) translateX(0);}
    }
    @keyframes slideIn{
      from{opacity:0;transform:translateX(-100px);}
      to{opacity:1;transform:translateX(0);}
    }
    @keyframes rollIn{
      from{opacity:0;transform:rotate(-120deg) scale(.5);}
      to{opacity:1;transform:rotate(0) scale(1);}
    }
      .container {
            max-width: 1100px;
            margin: 40px auto;
            padding: 20px;
            overflow: hidden; /* ক্লিয়ারফিক্স ইফেক্ট */
        }
  .float-image {
            float: left;
            width: 350px; /* আপনার স্ক্রিনশট অনুযায়ী আদর্শ সাইজ */
            height: auto;
            margin-right: 30px;
            margin-bottom: 20px;
            border-radius: 12px; /* কোণাগুলো সামান্য গোল */
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
            border: 1px solid #444;
        }

    /* Content */
    .content{
      max-width: 960px;
      margin: 20px auto;
      padding: 0 20px;
    }
    .content h2,.content h3{color: var(--accent);}
    .content p{margin:.7em 0; font-size: clamp(1rem, 2vw, 1.1rem);  text-align: justify; }
    .content ul{padding-left: 20px;}

       p::first-letter {
            font-size: 25px;
            font-weight: bold;
            color: #FFD700;
        }

    /* Mobile tweaks */
    @media (max-width: 600px){
      .lcd-frame{border:6px solid #222; border-radius:10px;}
      .title{font-size: clamp(1.5rem, 6vw, 2.2rem);}
    }
      /* Footer */
    footer {
      background: #0a0a0a;
      padding: 40px 20px 20px;
      margin-top: auto;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-col h3 {
      margin-bottom: 15px;
      color: gold;
    }

    .footer-col p, .footer-col a {
      color: #ccc;
      font-size: 14px;
      text-decoration: none;
      display: block;
      margin: 6px 0;
      transition: 0.3s;
    }

    .footer-col a:hover {
      color: gold;
      transform: translateX(5px);
    }

    .footer-social a {
      display: inline-block;
      margin-right: 10px;
      color: #ccbfbf;
      font-size: 18px;
      transition: 0.3s;
    }

    .footer-social a:hover {
      color: gold;
      transform: scale(1.2);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      font-size: 13px;
      color: #888;
      border-top: 1px solid #333;
      margin-top: 20px;
    }
    a{
    color: #31ce0a ;
    text-decoration: none;
    }
  b{

    color: #86fc00;
  }
/*============= caption===============*/
.image-container {
    float: left; /* ইমেজটি বাম দিকে থাকবে */
    margin-right: 25px;
    margin-bottom: 20px;
    max-width: 400px; /* আপনার ইমেজের সাইজ অনুযায়ী এটি কমাতে বা বাড়াতে পারেন */
}
/*
.float-image {
    width: 100%; /* কন্টেইনারের পুরোটা জুড়ে থাকবে *
    height: auto;
    border-radius: 12px;
    border: 2px solid #333;
    display: block;
}
*/
figcaption {
    color: #e0e0e0;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    background-color: rgba(255, 255, 255, 0.1); /* হালকা ব্যাকগ্রাউন্ড */
    padding: 5px;
    border-radius: 0 0 8px 8px;
}