* { margin: 0; padding: 0; box-sizing: border-box; }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #0b0b0b;
    color: #f3f1ee;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    padding-bottom: 50px;
  }

  /* Top Navigation Bar */
  .top-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
  }

  .nav-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
  }

  .nav-list { list-style: none; display: flex; gap: 30px; align-items: center; flex-wrap: wrap; justify-content: center; }

  .nav-item { position: relative; }

  .nav-link {
    color: rgba(243, 241, 238, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-link:hover { color: #dc3c3c; background: rgba(255, 255, 255, 0.05); }

  /* Dropdown Styles */
  .dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: #111; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px;
    min-width: 180px; padding: 10px 0; list-style: none;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.5); margin-top: 10px;
  }

  .has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; margin-top: 5px; }

  .dropdown-menu li a {
    display: block; padding: 10px 20px; color: rgba(243, 241, 238, 0.8);
    text-decoration: none; font-size: 0.85rem; transition: background 0.3s ease; text-align: center;
  }

  .dropdown-menu li a:hover { background: rgba(220, 60, 60, 0.1); color: #dc3c3c; }

  /* Animated Background Glow */
  .glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(220, 60, 60, 0.08);
    filter: blur(120px);
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
  }

  .container {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 300px;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    padding: 4rem 2rem;
    position: relative;
    align-items: start;
    z-index: 1;
    animation: fadeUp 0.8s ease-out both;
  }

  @keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* 3-Column Layout Areas */
  .left-sidebar { position: sticky; top: 6rem; text-align: left; }
  .right-sidebar { position: sticky; top: 6rem; text-align: left; }
  .main-content { text-align: left; }

  .left-sidebar .logo { margin: 0 0 1.5rem 0; }
  .left-sidebar .btn-group { flex-direction: column; align-items: flex-start; }
  .left-sidebar .section-title { margin-top: 2rem; }
  .left-sidebar .collab-avatar { width: 64px; height: 64px; }

  .right-sidebar .news-grid,
  .left-sidebar .collab-grid,
  .right-sidebar .collab-grid {
    grid-template-columns: 1fr;
  }

  @media (max-width: 1024px) {
    .container {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
    }
    .left-sidebar, .right-sidebar, .main-content {
      position: static;
      text-align: center;
    }
    .brand-container { justify-content: center; margin-bottom: 1rem; }
    .left-sidebar .logo { margin: 0; }
    .left-sidebar .btn-group { flex-direction: row; justify-content: center; }
    
    .right-sidebar .news-grid,
    .left-sidebar .collab-grid,
    .right-sidebar .collab-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  }

  .brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0.5rem;
  }

  .logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin: 0;
    flex-shrink: 0;
    border: 2px solid rgba(220, 60, 60, 0.3);
    box-shadow: 0 10px 30px rgba(220, 60, 60, 0.2);
    background: #000;
    overflow: hidden;
  }

  .logo img { width: 100%; height: 100%; object-fit: cover; }

  h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0; }
  h1 span { color: #dc3c3c; }

  .tagline { color: rgba(243, 241, 238, 0.5); font-size: 1rem; margin-bottom: 2rem; margin-top: 0.5rem; }

  /* Buttons */
  .btn-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 3.5rem; }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 60, 60, 0.1);
    border: 1px solid rgba(220, 60, 60, 0.2);
    border-radius: 100px;
    padding: 12px 24px;
    color: #dc3c3c;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .badge:hover { background: #dc3c3c; color: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(220, 60, 60, 0.2); }

  /* Apps Section */
  .section-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; color: #dc3c3c; margin-bottom: 25px; text-align: center; }

  /* Accordion Styles */
  .section-title.toggle-title {
    display: flex;
    width: max-content;
    margin: 0 auto 25px auto;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: rgba(220, 60, 60, 0.1);
    border: 1px solid rgba(220, 60, 60, 0.2);
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .section-title.toggle-title:hover {
    background: #dc3c3c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 60, 60, 0.2);
  }
  
  .toggle-icon {
    font-size: 0.6rem;
    transition: transform 0.4s ease;
  }
  
  .section-title.toggle-title.active .toggle-icon {
    transform: rotate(180deg);
  }
  
  .accordion-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    margin-bottom: 0;
    transition: grid-template-rows 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  }
  
  .accordion-wrapper.active {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-bottom: 4rem;
  }
  
  .accordion-inner {
    overflow: hidden;
  }

  .accordion-inner .apps-grid {
    margin-bottom: 0;
  }

  .apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 4rem;
  }

  .app-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 15px;
    border-radius: 24px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .app-card:hover { 
    background: rgba(220, 60, 60, 0.05); 
    border-color: rgba(220, 60, 60, 0.3);
    transform: scale(1.02);
  }
  
  .app-icon { 
    width: 56px; 
    height: 56px; 
    background: linear-gradient(135deg, #1a1a1a, #000); 
    border-radius: 14px; 
    margin: 0 auto 15px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }
  
  /* News Section */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 4rem;
  }

  .news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 24px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .news-card:hover { 
    background: rgba(220, 60, 60, 0.05); 
    border-color: rgba(220, 60, 60, 0.3);
    transform: translateY(-5px);
  }

  .news-date { font-size: 0.7rem; color: #dc3c3c; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
  .news-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; line-height: 1.3; }
  .news-excerpt { font-size: 0.85rem; color: rgba(243, 241, 238, 0.6); margin-bottom: 15px; }
  .news-readmore { font-size: 0.8rem; font-weight: 600; color: #dc3c3c; margin-top: auto; }

  /* Scrollable RSS News Box */
  .rss-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    max-height: 350px;
    overflow-y: auto;
    padding: 10px;
    margin-bottom: 4rem;
  }

  .rss-container::-webkit-scrollbar { width: 6px; }
  .rss-container::-webkit-scrollbar-track { background: transparent; }
  .rss-container::-webkit-scrollbar-thumb { background: rgba(220, 60, 60, 0.3); border-radius: 10px; }
  .rss-container::-webkit-scrollbar-thumb:hover { background: rgba(220, 60, 60, 0.6); }

  .rss-item { display: block; text-decoration: none; color: inherit; padding: 15px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: background 0.3s; border-radius: 12px; }
  .rss-item:last-child { border-bottom: none; }
  .rss-item:hover { background: rgba(220, 60, 60, 0.05); }

  .rss-date { font-size: 0.65rem; color: #dc3c3c; margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
  .rss-title { font-weight: 600; font-size: 0.85rem; line-height: 1.4; color: rgba(243, 241, 238, 0.9); }

  /* Collaborators Section */
  .collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 4rem;
  }

  .collab-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 15px;
    border-radius: 24px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .collab-card:hover {
    background: rgba(220, 60, 60, 0.05); 
    border-color: rgba(220, 60, 60, 0.3);
    transform: scale(1.02);
  }

  .collab-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a, #000);
    margin: 0 auto 15px;
    border: 2px solid rgba(220, 60, 60, 0.2);
    overflow: hidden;
  }
  .collab-avatar img { width: 100%; height: 100%; object-fit: cover; }

  /* Socials */
  .social-links { display: flex; justify-content: center; gap: 30px; }
  .social-links a { 
    color: rgba(243, 241, 238, 0.3); 
    text-decoration: none; 
    font-size: 0.8rem; 
    transition: 0.3s;
  }
  .social-links a:hover { color: #dc3c3c; }

  /* Footer */
  .footer-info { color: rgba(243, 241, 238, 0.15); font-size: 0.75rem; text-align: center; }
  
  /* Bottom Footer Container */
  .site-footer {
    width: 100%;
    padding: 40px 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: auto;
  }

  .footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  .separator { color: rgba(243, 241, 238, 0.2); font-size: 0.8rem; }

  /* Privacy Link for Google Verification */
  .privacy-link {
      color: rgba(243, 241, 238, 0.4);
      text-decoration: underline;
      font-size: 0.75rem;
      transition: color 0.3s;
  }
  .privacy-link:hover { color: #dc3c3c; }

  @media (max-width: 600px) {
    .footer-legal { flex-direction: column; gap: 10px; text-align: center; }
    .separator { display: none; }
  }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
  }

  .modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.3s ease-out;
  }

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

  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }

  .close-btn:hover {
    color: #fff;
  }

  .modal h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .modal p {
    font-size: 0.85rem;
    color: rgba(243, 241, 238, 0.5);
    margin-bottom: 20px;
  }
  
  .modal .apps-grid {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-start;
  }

  /* Text Pages (Privacy & Legal) */
  .page-container {
    max-width: 800px;
    width: 90%;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    margin: 4rem auto;
    z-index: 1;
  }
  .page-container h1 { color: #3498db; font-size: 2rem; margin-bottom: 20px; }
  .page-container h2 { font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px; color: #fff; }
  .page-container p { color: rgba(243, 241, 238, 0.8); margin-bottom: 15px; font-size: 0.95rem; line-height: 1.6; }
  .page-container a { color: #3498db; text-decoration: none; }
  .page-container a:hover { text-decoration: underline; }
  .back-btn {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 50px;
    color: #fff;
    transition: 0.3s;
    text-decoration: none !important;
    font-size: 0.85rem;
    font-weight: 600;
  }
  .back-btn:hover {
    background: #3498db;
    color: #fff;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
  }
