/* 
  Rabirabi Getchu!! - LP for JUNKY fans
  Theme: Neon Glassmorphism x Pop Rock
*/

:root {
  --primary-pink: #ff00ff;
  --secondary-blue: #00ffff;
  --bg-dark: #0a0515;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #cccccc;
}

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

body {
  font-family: 'Inter', 'Outfit', 'Noto Sans JP', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Gradients */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(255, 0, 255, 0.15), transparent 40%),
              radial-gradient(circle at 90% 90%, rgba(0, 255, 255, 0.1), transparent 40%);
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(10, 5, 21, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--primary-pink), var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: -1;
  transition: transform 0.3s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.05);
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  line-height: 1.1;
}

.hero p {
  font-size: 1.5rem;
  color: var(--secondary-blue);
  margin-bottom: 40px;
  font-weight: 600;
}

/* Glass Cards */
.section {
  padding: 100px 0;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 60px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

h2::before {
  content: '';
  width: 10px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-pink), var(--secondary-blue));
  border-radius: 5px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.intro-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.intro-text b {
  color: var(--primary-pink);
}

/* Video Section */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* CTA Styles */
.cta-button {
  display: inline-block;
  padding: 20px 60px;
  background: linear-gradient(90deg, var(--primary-pink), var(--secondary-blue));
  color: #000;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.6);
}

.center {
  text-align: center;
}

/* Benefits Grid */
.benefit-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: background 0.3s;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .grid { grid-template-columns: 1fr; }
  .glass-card { padding: 30px; }
  h2 { font-size: 1.8rem; }
}
