@import url(https://db.onlinewebfonts.com/c/55be8d828421a6de527e1634d8010359?family=Versus+W05+Ultra);

@font-face {
    font-family: 'Rotters';
    src: url('RottersPersonalUse.woff2') format('woff2'),
        url('RottersPersonalUse.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.versus-font {
  font-family: 'Versus W05 Ultra', cursive, sans-serif;
  -webkit-text-stroke: 3px rgb(0, 0, 0);
}

.rotters-font {
  font-family: 'Rotters Personal Use', cursive, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #f0f0f0;
  background: radial-gradient(circle at top left, #1b1b1b 0%, #000000 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: rgba(22, 22, 22, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(22,22,22,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 0 2px rgba(46, 46, 46, 0.5);
}

.logo span {
  background-clip: text;
  color: #8400ff;
  text-shadow: 0 0 15px rgba(68, 0, 131, 0.4);
}

.nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  padding: 0 5px;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #8400ff;
  text-shadow: 0 0 6px #8400ff;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #8400ff;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.main-content {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 15px rgba(153, 0, 255, 0.4);
}

.hero .unbound {
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #00ff37;
  text-shadow: 0 0 15px rgba(0, 255, 21, 0.5);
}

.hero .heat {
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #f700ff;
  text-shadow: 0 0 15px rgba(255, 0, 200, 0.5);
}

.hero .highlight {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(132, 0, 255, 0.8);
}

.subtitle {
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  background: #8400ff;
  color: #0e0e15;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px #8400ff;
}

.btn:hover {
  background: #8400ff;
  box-shadow: 0 0 20px #8400ff;
}

.btn.outline {
  background: transparent;
  color: #8400ff;
  border: 2px solid #8400ff;
  box-shadow: none;
}

.btn.outline:hover {
  background: rgba(250, 204, 21, 0.1);
  box-shadow: 0 0 15px #8400ff;
}

.footer {
  text-align: center;
  padding: 20px;
  background: radial-gradient(circle at top left, #1b1b1b 0%, #000000 100%);
  font-size: 0.9rem;
  color: #888;
}

.footer .heart {
  color: #8400ff;
  text-shadow: 0 0 8px #8400ff;
}

.images,
.video {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
}

.imgContainer,
.videoContainer {
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.imgContainer img,
.videoContainer video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.imgContainer p,
.videoContainer p {
  margin-top: 16px;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-section {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.contact-form {
  margin-top: 30px;
  background: rgba(20,20,20,0.6);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(132,0,255,0.2);
  backdrop-filter: blur(8px);
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #eee;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 0 8px rgba(132,0,255,0.15);
  transition: box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 12px #8400ff;
}

.contact-form .btn {
  width: 100%;
  margin-top: 10px;
}

.alt-contact {
  margin-top: 25px;
  color: #aaa;
}

.alt-contact a {
  color: #8400ff;
  text-decoration: none;
}

.alt-contact a:hover {
  text-shadow: 0 0 6px #8400ff;
}

.gallery-page {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px 20px;
  text-align: center;
}

.page-title {
  font-size: clamp(2rem, 6vw, 3rem);
  color: #ffffff;
  margin-bottom: 10px;
}

.page-subtitle {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.gallery-item {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(132,0,255,0.7);
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.gallery-item p {
  color: #ccc;
  font-size: 1rem;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(132,0,255,0.7);
}

.lightbox p {
  color: #ccc;
  margin-top: 15px;
  font-size: 1rem;
  text-align: center;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #8400ff;
}
