* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0d1117;
  color: #fff;
  overflow-x: hidden;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: brightness(0.6);
}

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  color: #fff;
  text-align: center;
}

#intro h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  background: linear-gradient(90deg,#ffdd00,#ff8800,#ff0044);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s infinite alternate;
}

#intro button {
  padding: 15px 40px;
  font-size: 1.2em;
  border: none;
  border-radius: 10px;
  background: #ff8800;
  color: #fff;
  cursor: pointer;
  transition: .3s;
}

#intro button:hover {
  background: #ff0044;
  transform: scale(1.05);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

nav h1 {
  font-size: 1.5em;
  color: #ffdd00;
  font-weight: 800;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color .3s;
}

nav ul li a:hover {
  color: #ffdd00;
}

header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-logo {
  width: 180px;
  height: 180px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 0 25px rgba(255,136,0,0.8);
  animation: glowLogo 2s infinite alternate;
  object-fit: cover;
}

@keyframes glowLogo {
  from { box-shadow: 0 0 20px #ff8800; }
  to { box-shadow: 0 0 40px #ff0044, 0 0 70px #ffdd00; }
}

header h2 {
  font-size: 4em;
  background: linear-gradient(90deg,#ffdd00,#ff8800,#ff0044);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 15px #ff8800; }
  to { text-shadow: 0 0 40px #ff0044, 0 0 70px #ffdd00; }
}

header p {
  font-size: 1.5em;
  margin: 20px 0;
}

.btn {
  padding: 15px 30px;
  background: #ff8800;
  border: none;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.btn:hover {
  background: #ff0044;
  transform: scale(1.05);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 80px 20px;
}

.card {
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  padding: 30px;
  width: 320px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform .4s ease, box-shadow .4s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #ffdd00;
}

.ip {
  margin-top: 15px;
  font-size: 1.2em;
  font-weight: bold;
  background: #111;
  padding: 10px 15px;
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.ip:hover {
  background: #222;
  transform: scale(1.05);
}

.copy-msg {
  font-size: .9em;
  margin-top: 5px;
  color: #0f0;
  display: none;
}

.social {
  padding: 60px 20px;
  text-align: center;
}

.social h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffdd00;
}

.social-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.social-card {
  background: rgba(0,0,0,0.7);
  width: 220px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .3s, background .3s;
}

.social-card i {
  font-size: 2.2em;
}

.social-card span {
  font-weight: 600;
}

.social-card:hover {
  transform: scale(1.08);
  background: rgba(30,30,30,0.9);
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.85);
  font-size: .9em;
  margin-top: 40px;
}

@media(max-width:768px) {
  nav { padding: 10px 20px; }
  nav h1 { font-size: 1.2em; }
  header h2 { font-size: 2.5em; }
  header p { font-size: 1.2em; }
  .cards { flex-direction: column; align-items: center; }
  .social-cards { flex-direction: column; }
}
