  :root {
    --bg: #070819;
    --card: #ffffff;
    --muted: #9aa6bf;
    --accent: #4f9cff;
    --glass: rgba(255, 255, 255, 0.04);
    --radius: 16px;
    --primary: #00d9ff;
	--secondary: #ff00ea;
	--dark: #0a0a0f;
	--light: #ffffff;
	--glow: #00ffcc;
	--font-display: 'Orbitron', monospace;
	--font-heading: 'Space Grotesk', sans-serif;
	--font-body: 'Inter', sans-serif;
  }

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html,
  body {
      height: 100%
  }

  /* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--primary), var(--secondary));
	border-radius: 10px;
}

  body {
      margin: 0;
      font-family: var(--font-heading);
      background: var(--dark);
      color: #e6eef8;
      overflow-x: hidden;
      letter-spacing: 0.02em;
      font-weight: 300;
  }

  /* Mouse Follower */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
}

  .main-page {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 0;
  }

  .main-page-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 10;
  }

  .main-page-content {
    position: relative;
    z-index: 11;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
  }

  .main-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(79, 70, 229, 0.8);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-text 2s ease-in-out infinite alternate;
    letter-spacing: 0.3em;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    }

    .main-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    }

    /* Responsive Text */
@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
    .main-subtitle { font-size: 1rem; }
    .main-page { height: 50vh; }
}


  .container {
    margin: 60px auto;
    background: linear-gradient(180deg, var(--dark) 0%, #1a1a2e 50%, var(--dark) 100%);
  }

  .hero {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 28px;
      align-items: center;
  }

  @media (max-width:980px) {
      .hero {
          grid-template-columns: 1fr;
      }
  }

  .hero-left {
      padding: 12px 60px;
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom:20px;
  }

  .brand .logo {
      width: 76px;
      height: 76px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #ffffff;
  }

  #logo10 {
    width: 60px;
    height: 60px;
  }

  .title {
      font-size: 48px;
      line-height: 0.95;
      margin: 0 0 8px;
      font-weight: 800;
      color: var(--primary);
      font-family: var(--font-heading);
  }

  .subtitle {
      color: #ffffff;
      margin: 8px 0 12px;
      font-family: var(--font-body);
  }

  /* Upload card */
  .upload-card {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(2, 6, 23, 0.5);
      backdrop-filter: blur(6px);
      margin-right: 60px;
  }

  .upload-card h3 {
      margin: 0;
      color: #eaf3ff;
      font-size: 20px;
  }

  .upload-card p {
      color: var(--muted);
      margin: 6px 0 14px;
      font-size: 14px;
  }

  .choose {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(79, 156, 255, 0.14);
      transition: transform .14s ease;
  }

  .choose:hover {
      transform: translateY(-4px);
  }

  .drop {
      margin-top: 14px;
      border-radius: 12px;
      padding: 14px;
      border: 2px dashed rgba(255, 255, 255, 0.06);
      color: var(--muted);
      font-size: 14px;
      text-align: center;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
      cursor: pointer;
  }

  .drop.drag {
      border-color: var(--accent);
      box-shadow: 0 10px 30px rgba(11, 132, 255, 0.06);
      color: var(--accent);
      background: linear-gradient(90deg, rgba(11, 132, 255, 0.02), transparent);
  }

  .inputs {
      margin-top: 12px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
  }

  #category option {
    background: var(--dark);
  }

  input[type="text"],
  textarea,
  select {
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: transparent;
      color: #ffffff;
      width: 100%;
      outline: none;
      font-size: 14px;
  }

  textarea {
      min-height: 70px;
      resize: vertical;
  }

  .half {
      width: calc(50% - 6px);
      min-width: 140px;
  }

  .upload-actions {
      display: flex;
      gap: 8px;
      margin-top: 10px;
      justify-content: center;
  }

  .btn {
      padding: 10px 14px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      font-weight: 700;
  }

  .btn.primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
  }

  .btn.ghost {
      background: transparent;
      color: rgba(255, 255, 255, 0.742);
      border: 1px solid rgba(255, 255, 255, 0.067);
  }

  /* Controls */
  .controls {
      margin-top: 26px;
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 0 55px;
  }

  .controls-left {
      display: flex;
      gap: 10px;
      align-items: center;
  }

  .search {
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      background: transparent;
      color: #eaf3ff;
      min-width: 200px;
  }

  select.filter {
      padding: 10px 12px;
      border-radius: 10px;
  }

  select option {
    background: black;
  }

  .count {
      color: var(--muted);
      font-size: 13px;
      padding-right: 20px;
  }

  /* MASONRY GRID */
  .masonry {
      margin-top: 18px;
      column-count: 4;
      column-gap: 14px;
      width: 100%;
      padding-left: 60px;
      padding-right: 60px;
  }

  /* responsive */

  @media (max-width:981px) {
    .upload-card {
        margin-left: 60px;
    }
  }

  @media (max-width:1100px) {
      .masonry {
          column-count: 3;
      }
  }

  @media (max-width:820px) {
      .masonry {
          column-count: 2;
      }
  }

  @media (max-width:520px) {
      .masonry {
          column-count: 1;
      }
  }

  .masonry-item {
      display: inline-block;
      width: 100%;
      margin: 0 0 14px;
      border-radius: 12px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
      transition: transform .18s ease, box-shadow .18s ease;
      box-shadow: 0 8px 20px rgba(2, 6, 23, 0.3);
      cursor: pointer;
  }

  .masonry-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(2, 6, 23, 0.42);
  }

  .masonry-item img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
  }

  .meta {
      padding: 10px 12px;
      color: #eaf3ff;
  }

  .meta h4 {
      margin: 0 0 6px;
      font-size: 16px;
      color: #fff;
  }

  .meta p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.2;
  }

  .tag {
      display: inline-block;
      font-size: 12px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #ffffff;
      padding: 6px 8px;
      border-radius: 8px;
      margin-top: 8px;
  }

  /* Modal */
  .modal-wrap {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(2, 6, 23, 0.6);
      z-index: 2000;
      padding: 18px;
  }

  .modal {
      background: #fff;
      color: #0b1020;
      border-radius: 12px;
      width: min(980px, 98%);
      max-height: 92vh;
      overflow: auto;
      box-shadow: 0 40px 120px rgba(2, 6, 23, 0.6);
  }

  .modal-inner {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 12px;
      padding: 16px;
  }

  @media (max-width:900px) {
      .modal-inner {
          grid-template-columns: 1fr;
      }
  }

  .modal img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      background: #f6f8fb;
  }

  .modal .side {
      padding: 6px 4px;
  }

  .modal label {
      display: block;
      margin-top: 10px;
      font-weight: 700;
      font-size: 13px;
      color: #263248;
  }

  .modal input[type="text"],
  .modal textarea,
  .modal select {
      width: 100%;
      padding: 8px 10px;
      border-radius: 8px;
      border: 1px solid #e6e9ee;
  }

  #editCategory option {
    background: white;
  }

  .modal textarea {
      min-height: 88px;
      resize: vertical;
  }

  .modal .row {
      display: flex;
      gap: 8px;
      margin-top: 10px;
  }

  .modal .btn-save {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      padding: 10px 12px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-weight: 800;
  }

  .modal .btn-del {
      background: #980000;
      color: #ffffff;
      border: 1px solid #ffd8d8;
      padding: 10px 12px;
      border-radius: 8px;
      cursor: pointer;
  }

  .modal .btn-download {
      background: #f3f6f4;
      padding: 10px 12px;
      border-radius: 8px;
      border: 1px solid var(--secondary);
      color: var(--secondary);
  }

  .empty {
      text-align: center;
      padding: 28px;
      color: var(--muted);
  }

  .masonry-item:focus {
      outline: 3px solid rgba(11, 132, 255, 0.18);
  }

  /* --- START MERGED NAVBAR CSS --- */

#merged-navbar-container {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999; 
    pointer-events: none; 
}

#merged-navbar-container * {
    box-sizing: border-box; 
    pointer-events: auto; 
}

#merged-navbar-container header {
    position: relative;
    width: 100%;
}

/* --- DESKTOP STYLES --- */

#merged-navbar-container .desktop-logo-link {
    pointer-events: none; 
}

#merged-navbar-container #logo {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    width: 80px;
    height: auto;
    margin: 0 auto;
    opacity: 1;
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
    z-index: 100001; 
    pointer-events: auto;
}

#merged-navbar-container nav.desktop-nav {
    display: flex;
    height: 65px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    left: 0;
    right: 0;
    width: 1000px;
    max-width: 90%; 
    margin: 0 auto;
    top: 100px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 200px;
    z-index: 100000;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
}

#merged-navbar-container nav.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading); 
    display: block;
    padding: 10px 25px;
    line-height: 1;
    font-size: 16px;
    letter-spacing: 2px;
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
}

#merged-navbar-container nav.desktop-nav button {
    -webkit-appearance: none;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    z-index: 100002;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    outline: 0;
    border: 0;
    cursor: pointer;
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
    transform: scale(0);
}

#merged-navbar-container nav.desktop-nav button span {
    width: 40%;
    background: #fff;
    height: 2px;
    display: block;
    margin: 5px auto;
    transform: scalex(0);
    transition: 0.6s transform cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s margin ease-in 0s;
}

#merged-navbar-container nav.desktop-nav button:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

#merged-navbar-container nav.desktop-nav button:hover span {
    margin: 10px auto;
}

/* Sticky state styles */
#merged-navbar-container header.sticky .desktop-logo-link #logo {
    top: 0;
    transform: scale(0.8);
    opacity: 0;
    transition-delay: 0.5s;
}

#merged-navbar-container header.sticky nav.desktop-nav {
    top: 20px;
    padding: 0;
    width: 90px;
    height: 90px;
    transition-delay: 0.5s;
}

#merged-navbar-container header.sticky nav.desktop-nav button {
    transform: scale(1);
    transition-delay: 0.6s;
}

#merged-navbar-container header.sticky nav.desktop-nav button span {
    transform: scalex(1);
    transition: 0.6s transform cubic-bezier(0.075, 0.82, 0.165, 1) 0.8s, 0.3s margin ease-in 0s;
}

#merged-navbar-container header.sticky nav.desktop-nav a {
    padding: 0;
    opacity: 0;
    letter-spacing: 0px;
    transform: scale(0.3);
    transition-delay: 0.2s;
    pointer-events: none; 
}

/* --- MOBILE & TABLET STYLES --- */

/* Mobile Hamburger Button */
#mobile-menu-toggle {
    display: none; 
    position: fixed;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: 100001; 
    cursor: pointer;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 8px;
}

#mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Logo */
.mobile-logo-link {
    display: none; 
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 100001;
}

#mobile-logo {
    width: 50px;
    height: auto;
}

/* Sidebar Overlay */
#sidebar-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998; 
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none; 
}

#sidebar-overlay.sidebar-open {
    display: block;
    opacity: 1;
    pointer-events: auto; 
}

/* Mobile Sidebar Menu */
#mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80%;
    height: 100%;
    background-color: rgba(20, 20, 25, 0.5); 
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: none; 
    padding-top: 100px; 
}

#mobile-sidebar.sidebar-open {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 30px;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE MEDIA QUERY --- */

@media (max-width: 992px) {
    /* Hide Desktop Elements */
    #merged-navbar-container .desktop-logo-link,
    #merged-navbar-container nav.desktop-nav {
        display: none;
    }

    /* Show Mobile Elements */
    #mobile-menu-toggle,
    .mobile-logo-link,
    #mobile-sidebar,
    #sidebar-overlay {
        display: block;
    }
}
/* --- END OF NAVBAR ---*/

  /* footer section */
footer {
    width: 100%;
	font-family: var(--font-heading);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 100px 0 10px;
    font-size: 15px;
    line-height: 20px;
}

footer {
	border-top: 2px solid blueviolet;
}

.row1 {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col1 {
    flex-basis: 25%;
    padding: 10px;
}

.col1 p:nth-child(1), .col1 p:nth-child(2), .col1 p:nth-child(3), .col1 p:nth-child(4), .col1 h4 {
    margin-top: -2px;
    margin-bottom: -2px;
}

.col1:nth-child(2), .col1:nth-child(3) {
    flex-basis: 15%;
}

.logo-2 {
    width: 80px;
    margin-bottom: 30px;
}

#logo-2 {
	width: 100px;
	height: 100px;
}

.col1 h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.support {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.king {
    list-style: none;
    margin-bottom: 12px;
}

.king a {
    text-decoration: none;
    color: white;
}

.news {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

.news .fa-regular {
    font-size: 18px;
    margin-right: 10px;
}

.news .Newsletter {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.news button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

.news button .fa-solid {
    font-size: 16px;
    color: #ccc;
}

.apps .fa-brands {
    display: inline-block; 
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: white;
    margin-right: 15px;
    cursor: pointer;

}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

.underline {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite; 
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 900px) {
    footer {
        bottom: unset;
    }

    .col1 {
        flex-basis: 100%;
    }
    
    .col1:nth-child(2), .col1:nth-child(3) {
        flex-basis: 100%;
    }
}

/* End of Footer Section */

/* --- CUSTOM NOTIFICATION POPUP --- */
.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.8); 
  backdrop-filter: blur(5px); /* Blur the background slightly */
  display: none; 
  justify-content: center;
  align-items: center;
  z-index: 10000; 
}

.notification-box {
  background: linear-gradient(135deg, #1a1a2e, #0a0a0f);
  border: 2px solid var(--primary);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), inset 0 0 10px rgba(0, 217, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 80%;
  color: var(--light);
  font-family: var(--font-heading);
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth pop-in animation */
}

.notification-box h3 {
  margin-top: 0;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.notification-box p {
  font-size: 16px;
  opacity: 0.9;
  margin: 20px 0;
}

#notification-close-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#notification-close-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--primary); /* Cyan outline */
  padding: 10px 30px;
  border-radius: 30px;
  color: var(--light);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: scale(1.05);
}