body {
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
  
  /* IMPORTANT: remove blocking background */
  background: transparent;

  padding-top: 45px;
  overflow-x: hidden;
  color: white;
}

/* =========================
   TOP DEVELOPER BAR
   ========================= */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.85);
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  z-index: 1000;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.owner-info-btn {

  padding: 12px 22px;

  background: linear-gradient(135deg, #00c6ff, #0072ff);

  color: white;

  border: none;

  border-radius: 14px;

  font-size: 14px;

  font-weight: bold;

  letter-spacing: 1px;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.4);

  transition: 0.3s ease;

  ,margin: 10px 0 10px 20px; /* controls position under linux */
}

.owner-info-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 114, 255, 0.4);
}

.linux-btn {
 
  padding: 12px 22px;

  background: linear-gradient(135deg, #00ff88, #0072ff);

  color: white;

  border: none;

  border-radius: 14px;

  font-size: 14px;

  font-weight: bold;

  letter-spacing: 1px;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.4);

  transition: 0.3s ease;

  ,margin: 10px 0 10px 20px; /* controls position under linux */
} 

.linux-os-btn:hover {
 transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 114, 255, 0.4);
}

/* =========================
   HERO SECTION
   ========================= */

.hero {
  background: transparent;
  color: white;
  padding: 90px 20px;
}

/* Logo */

.logo {
  width: 85px;
  height: 85px;
  margin: auto;
  background: linear-gradient(45deg, #ff416c, #ff4b2b, #1fa2ff);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

/* Hero title */

.hero h1 {
  font-size: 42px;
  margin-top: 30px;
  line-height: 1.3;
  letter-spacing: 2px;
}

/* Hero text */

.hero-text {
  max-width: 850px;
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.9;
  color: #cccccc;
}

/* =========================
   CONTENT SECTION
   ========================= */

.content {
  background: transparent;
  padding: 60px 20px;
}

/* Main text */

.main-text {
  font-size: 20px;
  line-height: 1.8;
  color: #e0e0e0;
}

/* Arrow */

.arrow {
  width: 50px;
  height: 50px;
  margin: 20px auto;
  border-left: 5px solid #00c6ff;
  border-bottom: 5px solid #00c6ff;
  transform: rotate(-45deg);
}

/* =========================
   BUTTONS
   ========================= */

button {
  width: 320px;
  max-width: 90%;
  padding: 15px 20px;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.submit-btn {
  background: #00ff66;
  color: black;
  position: fixed;
  top: 60px;
  left: 20px;
  z-index: 1200;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

.down-arrow {
  font-size: 40px;
  margin-top: 25px;
  margin-bottom: 20px;
  animation: bounce 1.5s infinite;
  color: #00c6ff;
}

.insta-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
}

.insta-btn:hover {
  transform: scale(1.05);
}

.owner-btn {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: white;
}

.owner-btn:hover {
  transform: scale(1.05);
}

.Linux-btn {
  background: linear-gradient(135deg, #00ff88, #0072ff);
  color: white;
 dim-button {
  opacity: 0.25;   /* dim / transparent */
  transition: 0.3s ease;
}

 dim-button:hover {
  opacity: 1;      /* fully visible on hover */
}
}

.Linux-btn:hover {
  transform: scale(1.05);
}

.guidelines-btn {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: white;
}

.guidelines-btn:hover {
  transform: scale(1.07);
  opacity: 0.9;
}

/* =========================
   TERMS SECTION
   ========================= */

.terms-section {
  background: transparent;
  padding: 70px 25px;
  margin-top: 40px;
}

.terms-section h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #ffffff;
}

.terms-section p {
  max-width: 900px;
  margin: auto;
  line-height: 2;
  font-size: 17px;
  color: #cfcfcf;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  padding: 25px;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 15px;
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   OVERLAY
   ========================= */

.overlay {

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.95);

  display: none;

  justify-content: center;
  align-items: center;

  z-index: 9999;

  backdrop-filter: blur(12px);

  animation: fadeOverlay 0.4s ease;

  overflow: hidden;
}


/* LEFT SIDE */

.overlay-left,
.overlay-right {

  position: absolute;

  width: 50%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;

  transition: 0.3s;
}

 .overlay-left { left: 0; }
 .overlay-right { right: 0; }

 .overlay-left:hover,
 .overlay-right:hover {
   background: rgba(255,255,255,0.05);
}

/* CENTER CONTENT */

.overlay-center {

  position: relative;

  z-index: 10;

  text-align: center;

  color: white;

  padding: 20px;
}

/* SIDE TEXT */

.overlay-side-content {

  position: absolute;

  bottom: 50px;

  front-size: 20px;

  color: rgba(255,255,255,0.7);

  letter-spacing: 2px;
}

/* Overlay title */

.overlay-center h1 {

  font-size :52px;

  letter-spacing: 4px;

  margin-bottom: 25px;
}

/* Overlay instruction */

.overlay-instruction {

  font-size: 20px;

  line-height: 2;

  color: #ddd;

}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes bounce {

  0% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0px); }

}

@keyframes fadeOverlay {

  from { opacity: 0; }
  to { opacity: 1; }

}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3)
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* VIDEO BACKGROUND FIX */

.bg-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: brightness(0.9) contrast(1.15);
}

/* CONTENT ABOVE VIDEO */

/* ANIMATIONS */

@keyframes bounce {
  0% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0px); }
}

@keyframes fadeOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================
   FIXED LAYER SYSTEM (IMPORTANT)
   ========================= */

/* Video stays at the back */
.bg-video-wrapper {
  z-index: 0;
}

/* All main content stays above video */
.hero,
.content,
.terms-section,
.footer {
  position: relative;
  z-index: 2;
}

/* TOP BAR ALWAYS ABOVE EVERYTHING */
.top-bar {
  z-index: 10000;
}

/* WHATSAPP FIX ABOVE EVERYTHING */
.whatsapp-float,
.whatsapp-text {
  z-index: 10001;
}

/* =========================
   SMALL WHATSAPP + TEXT BUTTON
   ========================= */

.whatsapp-float-text {
  position: fixed;
  bottom: 55px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 6px;

  background: transparent;
  padding: 10px 14px;

  border-radius: 30px;

  text-decoration: underline;
  color: #00c6ff;
  text-shadow: 0 2px 6px
  rgba(0,0,0,0.7);

  font-weight: 800;
  font-size: 14px;

  z-index: 9999;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);

  transition: 0.3s ease;
}

.whatsapp-float-text img {
  width: 22px;
  height: 22px;
}

.whatsapp-float-text:hover {
  transform: scale(1.05);
}

/* INSTAGRAM FIX ABOVE EVERYTHING */
.INSTAGRAM-float,
.INSTAGRAM-text {
  z-index: 10001;
}

/* =========================
   SMALL INSTAGRAM + TEXT BUTTON
   ========================= */

.INSTAGRAM-float-text {
  position: fixed;
  bottom: 20px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 6px;

  background: transparent;
  padding: 10px 14px;

  border-radius: 30px;

  text-decoration: underline;
  color: #00c6ff;
  text-shadow: 0 2px 6px
  rgba(0,0,0,0.7);

  font-weight: 800;
  font-size: 14px;

  z-index: 9999;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);

  transition: 0.3s ease;
}

.INSTAGRAM-float-text img {
  width: 22px;
  height: 22px;
}

.INSTAGRAM-float-text:hover {
  transform: scale(1.05);
}
