/* Reset */
* {margin:0; padding:0; box-sizing:border-box;}

body {
  font-family: 'Roboto Mono', monospace;
  color: #e0e0e0;
  background: #0a0a14;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}


nav {
    position: absolute;
    text-align: center;
    width: 80%;
    top: 27px;
    right: 0;
}

nav .contact {
    position: absolute;
    top: -17px;
    right: 28px;
}

.gamevd video {
    width: 100%;
}

nav a {
    color:#fff;
    text-decoration: none;
    font-size:16px;
}


    nav a.active {
      border-bottom: 1px solid #fff;
      color: #fff;
      font-weight: bold;
    }

/* Particle Background */
#bgCanvas {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index: -1;
}

/* Header */
header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(90deg, #00fff7, #ff00f7);
  color: #0f0f1e;
  text-shadow: 0 0 12px #00fff7;
  font-size: 2rem;
  letter-spacing: 1px;
}

/* Tabs */
.tabs {
display: flex;
    gap: 12px;
    margin: 20px 0;
    padding: 0 10px;
    overflow-x: auto;
}

.tab {
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  background: #1a1a2e;
  border: 1px solid #00fff7;
  transition: all 0.3s;
  flex: 0 0 auto;
}
.tab:hover {
  box-shadow: 0 0 12px #00fff7;
}
.tab.active {
  background: linear-gradient(90deg, #00fff7, #ff00f7);
  color: #0f0f1e;
  font-weight: bold;
}

/* Search Filter */
#searchContainer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
#searchInput {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #00fff7;
  background: #1a1a2e;
  color: #fff;
  width: 300px;
  max-width: 90%;
}

/* Tools Grid */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-bottom: 80px;
}

/* Tool Card */
.tool-card {
  background: #1a1a2e;
  border: 1px solid #0f3460;
  border-radius: 12px;
  padding: 16px;
  width: 300px;
  height: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}
.tool-card h3 {
  color: #00fff7;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.tool-card p {
  margin: 4px 0;
  font-size: 0.95em;
  line-height: 1.3em;
}
.read-more {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(90deg, #00fff7, #ff00f7);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  color: #0f0f1e;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.read-more:hover {
  background: linear-gradient(90deg, #ff00f7, #00fff7);
}
.features {
  margin-top: 8px;
  padding-left: 20px;
  color: #a0f0ff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
}



#tabsContainer::-webkit-scrollbar {
    display: none;
}
.features.show {
  max-height: 500px; 
  opacity: 1;
}

/* Ads Placeholder */
.ad-space {
  width: 100%;
  max-width: 728px;
  margin: 30px auto;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00fff7;
  font-size: 1rem;
  text-align: center;
}

.logo img {
    position: absolute;
    width: 100px;
    height: 100px;
    left:0;
    top:0;
}

.contact-container {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: 100px auto 0 auto;
}
    .contact-container h1 {
      margin-bottom: 20px;
      color: #fff;
    }
    .contact-container p {
      color: #fff;
      margin-bottom: 20px;
    }
    .contact-container .btn {
      display: inline-block;
      margin: 10px;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
      font-size: 16px;
    }
    .email-btn {
      background: #4285f4;
      color: #fff;
    }
    .email-btn:hover {
      background: #3367d6;
    }
    .whatsapp-btn {
      background: #25d366;
      color: #fff;
    }
    .whatsapp-btn:hover {
      background: #1ebe57;
    }

    article > :nth-child(2) {
    background: #2924cd;
    padding: 5px;
    display: inline-block;
}
.web_lnk {
    position: absolute;
    right: 11px;
    top: 166px;
    color: #fff;
    border-radius: 14px;
    outline: none;
    border: none;
    box-shadow: 1px 1px 1px 0px #ece5e5;
    cursor: pointer;
    padding: 7px;
}

/* Smooth Animations for Tabs */
.tab-content {
  animation: fadeIn 0.4s ease-in-out;
  position: relative;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
footer {text-align:center; padding:15px; background:#111; border-top:1px solid #222; margin-top:30px; font-size:0.9em; color:#777;}
footer a {color:#0ff;}
