/* =======================================================
   ⚡ GLOBAL STYLES
======================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

/* ---------------------------- 
   LOADING SCREEN 
----------------------------- */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-text {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  color: #00ff41;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(0, 255, 65, 0.8),
    0 0 40px rgba(0, 255, 65, 0.6),
    0 0 80px rgba(0, 255, 65, 0.4);
  animation: loaderBlink 1.5s ease-in-out infinite;
  margin-bottom: 2rem;
}

@keyframes loaderBlink {
  0%, 40%, 60%, 100% {
    opacity: 1;
    text-shadow:
      0 0 20px rgba(0, 255, 65, 0.8),
      0 0 40px rgba(0, 255, 65, 0.6),
      0 0 80px rgba(0, 255, 65, 0.4);
  }
  50% {
    opacity: 0.3;
    text-shadow:
      0 0 10px rgba(0, 255, 65, 0.4),
      0 0 20px rgba(0, 255, 65, 0.3),
      0 0 40px rgba(0, 255, 65, 0.2);
  }
}


/* ---------------------------- 
   NAVIGATION BAR 
----------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 65, 0.08);
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.4);
  height: 70px;
  border-bottom: 1px solid rgba(0, 255, 65, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00ff41;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
}

.logo-claw {
  font-size: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff41, #00cc33);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #00ff41;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
}

.nav-btn {
  background: linear-gradient(135deg, #00ff41, #00cc33);
  color: #000;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
}

.nav-btn:hover {
  background: linear-gradient(135deg, #00ff55, #00dd3a);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 255, 65, 0.5);
}

.nav-btn:active {
  transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger .bar {
  width: 28px;
  height: 3px;
  background: #00ff41;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1.5rem;
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ---------------------------- 
   CAN WRAPPER 
----------------------------- */
.can-wrapper {
  position: relative; /* container for absolute-positioned can */
}

/* ---------------------------- 
   HERO SECTION 
----------------------------- */
.main-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

#monster-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.1);
  filter: brightness(0.6);
}

#monster-can {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 80vmin;
  max-width: 850px;
  z-index: 25;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform, opacity, filter;
  filter: drop-shadow(0 25px 50px rgba(0, 255, 65, 0.5));
  animation: idleFloat 4s ease-in-out infinite alternate;
}

@keyframes idleFloat {
  0% { transform: translate(-50%, -50%) rotate(-1deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(1deg) scale(1.02); }
  100% { transform: translate(-50%, -50%) rotate(-1deg) scale(1); }
}

#hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  color: rgba(0, 255, 65, 0.12);
  font-size: clamp(90px, 20vw, 200px);
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-shadow:
    0 0 25px rgba(0, 255, 65, 0.6),
    0 0 50px rgba(0, 255, 65, 0.4),
    0 0 100px rgba(0, 255, 65, 0.2);
  animation: heroTextBlink 2s ease-in-out infinite;
  cursor: default;
}

@keyframes heroTextBlink {
  0%, 45%, 55%, 100% {
    opacity: 1;
    text-shadow:
      0 0 25px rgba(0, 255, 65, 0.6),
      0 0 50px rgba(0, 255, 65, 0.4),
      0 0 100px rgba(0, 255, 65, 0.2);
  }
  50% {
    opacity: 0.3;
    text-shadow:
      0 0 10px rgba(0, 255, 65, 0.3),
      0 0 20px rgba(0, 255, 65, 0.2),
      0 0 40px rgba(0, 255, 65, 0.1);
  }
}

/* ---------------------------- 
   MAIN2 — Horizontal Scroll 
----------------------------- */
.main2 {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.main2-container {
  flex: 0 0 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(3rem, 6vw, 6rem) clamp(5rem, 9vw, 10rem);
  gap: clamp(1.5rem, 3vw, 3rem);
  background: linear-gradient(120deg, rgba(53, 45, 45, 0.9), rgba(1, 72, 19, 0.6));
}

.main2-container h1 {
  font-size: clamp(0.9rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  max-width: min(38rem, 55vw);
  text-transform: uppercase;
  text-align: left;
}

.main2-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00ff41, #00cc33);
  color: #000;
  font-weight: 700;
  padding: 0.9rem 2rem;
  text-transform: uppercase;
  border-radius: 10px;
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(0, 255, 65, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInButton 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slideInButton {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main2-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.main2-btn:hover::before {
  width: 300px;
  height: 300px;
}

.main2-btn:hover {
  background: linear-gradient(135deg, #00ff55, #00dd3a);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 255, 65, 0.6);
}

.main2-btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* ---------------------------- 
   BRAND STORY SECTION 
----------------------------- */
.brand-story-section {
  background: linear-gradient(135deg, #000000 0%, #0d1f0d 50%, #000000 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.brand-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.08), transparent 50%);
  pointer-events: none;
}

.brand-story-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brand-story-text {
  padding: 2rem 0;
}

.brand-label {
  display: inline-block;
  color: #00ff41;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid rgba(0, 255, 65, 0.3);
  border-radius: 30px;
}

.brand-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #00ff41);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 2.5rem;
}

.brand-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 255, 65, 0.05);
  border-left: 3px solid #00ff41;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(0, 255, 65, 0.1);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
}

.highlight-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
}

.highlight-text h4 {
  font-size: 1.2rem;
  color: #00ff41;
  margin-bottom: 0.3rem;
}

.highlight-text p {
  font-size: 0.95rem;
  color: #888;
}

.brand-story-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.image-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 65, 0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.brand-story-image img {
  position: relative;
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 255, 65, 0.4));
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0px) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Mobile responsive */
@media screen and (max-width: 968px) {
  .brand-story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brand-story-image {
    order: -1;
    min-height: 250px;
  }

  .brand-title {
    font-size: 2rem;
  }
}

/* ---------------------------- 
   FEATURES SECTION 
----------------------------- */
.features-section {
  background: linear-gradient(180deg, #000000 0%, #0a1a0a 50%, #000000 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

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

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 4rem;
  color: #00ff41;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 255, 65, 0.02));
  border: 2px solid rgba(0, 255, 65, 0.2);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #00ff41;
  box-shadow: 0 10px 40px rgba(0, 255, 65, 0.3);
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 255, 65, 0.05));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00ff41;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0;
}

/* ---------------------------- 
   PRODUCTS SECTION 
----------------------------- */
.products-section {
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  padding: 6rem 2rem;
  position: relative;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.product-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.product-item:hover::before {
  opacity: 1;
}

.product-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 255, 65, 0.3);
}

.product-image {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-image img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 255, 65, 0.4));
  transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
  transform: scale(1.1) rotate(5deg);
}

.product-item h3 {
  font-size: 1.5rem;
  color: #00ff41;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.product-item p {
  color: #888;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ---------------------------- 
   STATS SECTION 
----------------------------- */
.stats-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 5rem 2rem;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" x="50" y="50" fill="%2300ff41" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), transparent);
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 65, 0.1);
  transition: all 0.4s ease;
}

.stat-item:hover {
  transform: scale(1.05);
  border-color: #00ff41;
  box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #00ff41;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.stat-number::after {
  content: '+';
  margin-left: 0.2rem;
}

.stat-label {
  font-size: 1rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------------------------- 
   CTA SECTION 
----------------------------- */
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  background: linear-gradient(135deg, #000000, #1f1f1f);
  color: #fff;
  text-align: center;
  padding: 0 2rem;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00ff00;
  letter-spacing: 2px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  background: #00ff00;
  color: #000;
  font-weight: 700;
  padding: 1rem 2rem;
  text-transform: uppercase;
  border-radius: 12px;
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 24px #00ff0050;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #00cc00;
  transform: scale(1.05);
  box-shadow: 0 8px 32px #00ff00a0;
}

/* ---------------------------- 
   SOCIAL SECTION 
----------------------------- */
.social-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a 70%);
  color: #fff;
  text-align: center;
  padding: 0 2rem;
}

.social-content {
  max-width: 700px;
  margin: 0 auto;
}

.social-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00ff00;
  letter-spacing: 2px;
}

.social-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-icon img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px #00ff00a0);
  transition: transform 0.2s, filter 0.2s;
}

.social-icon:hover img {
  transform: scale(1.15) rotate(-8deg);
  filter: drop-shadow(0 4px 16px #00ff00e0);
}

/* ---------------------------- 
   FOOTER 
----------------------------- */
footer {
  background: #111;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

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

.footer-logo img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #00ff00;
  text-shadow: 0 0 8px #00ff00a0;
}

.footer-copy {
  font-size: 0.9rem;
  color: #888;
}
