:root {
  --bg: #000;
  --text: #fff;
  --neon-blue: #00f0ff;
  --neon-pink: #ff2d95;
  --neon-red: #ff5555;
  --neon-orange: #ffaa33;
  --neon-purple: #aa77ff;
  --neon-gray: #888;
  --card-bg: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: url('./assets/bg_wolfpack.png') no-repeat center center / cover;
  color: var(--text);
  overflow-x: hidden;
}

/* Header */
header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: 0.3s ease;
}

nav a:hover {
  color: var(--neon-blue);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text);
  cursor: pointer;
}

/* Contact Section */
.contact-container {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.title {
  font-size: 2.5rem;
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
  margin-bottom: 60px;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
}

.contact-grid {
  display: grid;
  gap: 25px;
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
}

.contact-tile {
  background: var(--card-bg);
  border: 2px solid var(--border);
  padding: 14px 20px;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

.contact-tile img {
  width: 24px;
  height: 24px;
}

.telegram:hover { box-shadow: 0 0 25px var(--neon-blue); border-color: var(--neon-blue); }
.medium:hover   { box-shadow: 0 0 25px var(--neon-purple); border-color: var(--neon-purple); }
.insta:hover    { box-shadow: 0 0 25px var(--neon-pink); border-color: var(--neon-pink); }
.yt:hover       { box-shadow: 0 0 25px var(--neon-red); border-color: var(--neon-red); }
.reddit:hover   { box-shadow: 0 0 25px var(--neon-orange); border-color: var(--neon-orange); }
.x:hover        { box-shadow: 0 0 25px var(--neon-gray); border-color: var(--neon-gray); }

.email-box {
  margin-top: 50px;
  font-size: 0.95rem;
  color: #ccc;
  text-shadow: 0 0 5px rgba(255,255,255,0.1);
}

.email-box a {
  color: var(--neon-blue);
  text-decoration: none;
}

.email-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    right: 40px;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .title {
    font-size: 2rem;
    text-align: center;
  }

  .contact-grid {
    max-width: 100%;
  }
}
