/* ============================================
   VALQAN PROMOTION - Style Sheet
   Japanese "Kawaii" Aesthetic with Pink Theme
   ============================================ */

/* ============================================
   IMPORTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Primary Colors - Valentine Pink Palette */
  --primary-pink: #ff0049;
  /* Shocking Pink - Main brand color */
  --primary-dark: #cc003a;
  /* Deep Pink - Hover states */
  --primary-light: #ff4d8f;
  /* Bright Pink - Highlights */
  --primary-pale: #FFB3D9;
  /* Pale Pink - Soft accents */

  /* Chocolate / Brown Colors */
  --chocolate-dark: #4D3227;
  /* Dark Chocolate - Rich depth */
  --chocolate-medium: #6B4423;
  /* Medium Chocolate - Warmth */
  --chocolate-light: #8B6F47;
  /* Light Chocolate - Subtle contrast */

  /* Background Colors */
  --bg-white: #ffffff;
  --bg-pink-soft: #FFE5F0;
  /* Soft Pink - Section backgrounds */
  --bg-pink-pale: #FFF0F7;
  /* Very Pale Pink - Subtle backgrounds */
  --bg-charcoal: #3d3d3d;
  /* Kept for footer */
  --bg-overlay: rgba(255, 0, 73, 0.9);
  /* Shocking pink overlay */

  /* Accent Colors */
  --accent-gold: #d4af37;
  /* Gold - Premium touch */
  --accent-rose-gold: #e6c7b8;
  /* Rose Gold - Elegance */

  /* Text Colors */
  --text-dark: #4D3227;
  /* Chocolate Brown - Main text */
  --text-gray: #6B4423;
  /* Medium Chocolate - Secondary text */
  --text-light: #ffffff;

  /* Typography */
  --font-primary: 'M PLUS Rounded 1c', sans-serif;
  --font-heading: 'Montserrat', 'M PLUS Rounded 1c', sans-serif;

  /* Spacing System */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(216, 31, 100, 0.15);
  --shadow-md: 0 4px 16px rgba(216, 31, 100, 0.2);
  --shadow-lg: 0 8px 32px rgba(216, 31, 100, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Header Height */
  --header-height: 80px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul,
ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-pink);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-gray);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-alt {
  background: var(--bg-pink-soft);
}

/* Audition Section - White Base with Pink & Chocolate Accents */
#audition {
  background: #F5F5F5;
  color: var(--text-dark);
}

#audition .section-title {
  color: var(--primary-pink);
}

#audition .section-subtitle {
  color: var(--chocolate-medium);
}

#audition .content-box {
  background: var(--bg-white);
  border: 2px solid var(--bg-pink-soft);
  box-shadow: 0 4px 12px rgba(255, 0, 73, 0.08);
}

#audition h3 {
  color: var(--primary-pink);
}

#audition h4 {
  color: var(--chocolate-dark);
}

#audition p,
#audition li {
  color: var(--chocolate-medium);
}

#audition strong {
  color: var(--primary-pink);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-pink);
  letter-spacing: 0.05em;
  transition: var(--transition-normal);
}

.logo:hover {
  color: var(--primary-dark);
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--primary-pink);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-dark);
  background: var(--bg-pink-pale);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-pink);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  margin-top: var(--header-height);
  padding: 0;
  background: linear-gradient(135deg, var(--bg-pink-soft) 0%, var(--bg-white) 100%);
  text-align: center;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.hero-video iframe,
.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* ============================================
   CATEGORY GRID
   ============================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(255, 0, 73, 0.95), transparent);
  color: var(--text-light);
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* ============================================
   WORKS GALLERY
   ============================================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.work-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.work-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-pink);
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: 2.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 200px;
  height: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 35'%3E%3C!-- Center Crown Flower --%3E%3Ccircle cx='100' cy='17' r='5' fill='%23D81F64'/%3E%3Ccircle cx='100' cy='17' r='3' fill='%23FFE5F0'/%3E%3C!-- Top petals --%3E%3Cellipse cx='100' cy='10' rx='3' ry='5' fill='%23FF3385'/%3E%3Cellipse cx='93' cy='12' rx='2.5' ry='4' fill='%23FF3385' transform='rotate(-30 93 12)'/%3E%3Cellipse cx='107' cy='12' rx='2.5' ry='4' fill='%23FF3385' transform='rotate(30 107 12)'/%3E%3C!-- Side petals --%3E%3Cellipse cx='93' cy='17' rx='4' ry='2.5' fill='%23D81F64' transform='rotate(0 93 17)'/%3E%3Cellipse cx='107' cy='17' rx='4' ry='2.5' fill='%23D81F64' transform='rotate(0 107 17)'/%3E%3C!-- Bottom petals --%3E%3Cellipse cx='93' cy='22' rx='2.5' ry='4' fill='%23FF3385' transform='rotate(30 93 22)'/%3E%3Cellipse cx='107' cy='22' rx='2.5' ry='4' fill='%23FF3385' transform='rotate(-30 107 22)'/%3E%3Cellipse cx='100' cy='24' rx='3' ry='5' fill='%23FF3385'/%3E%3C!-- Left side flowers --%3E%3Ccircle cx='70' cy='20' r='3.5' fill='%23D81F64'/%3E%3Ccircle cx='70' cy='20' r='2' fill='%23FFE5F0'/%3E%3Cellipse cx='65' cy='18' rx='2' ry='3' fill='%23FF3385' transform='rotate(-20 65 18)'/%3E%3Cellipse cx='75' cy='18' rx='2' ry='3' fill='%23FF3385' transform='rotate(20 75 18)'/%3E%3Ccircle cx='40' cy='22' r='2.5' fill='%23FF3385'/%3E%3Ccircle cx='40' cy='22' r='1.5' fill='%23FFE5F0'/%3E%3Cellipse cx='37' cy='20' rx='1.5' ry='2' fill='%23D81F64' transform='rotate(-25 37 20)'/%3E%3Cellipse cx='43' cy='20' rx='1.5' ry='2' fill='%23D81F64' transform='rotate(25 43 20)'/%3E%3C!-- Right side flowers --%3E%3Ccircle cx='130' cy='20' r='3.5' fill='%23D81F64'/%3E%3Ccircle cx='130' cy='20' r='2' fill='%23FFE5F0'/%3E%3Cellipse cx='125' cy='18' rx='2' ry='3' fill='%23FF3385' transform='rotate(-20 125 18)'/%3E%3Cellipse cx='135' cy='18' rx='2' ry='3' fill='%23FF3385' transform='rotate(20 135 18)'/%3E%3Ccircle cx='160' cy='22' r='2.5' fill='%23FF3385'/%3E%3Ccircle cx='160' cy='22' r='1.5' fill='%23FFE5F0'/%3E%3Cellipse cx='157' cy='20' rx='1.5' ry='2' fill='%23D81F64' transform='rotate(-25 157 20)'/%3E%3Cellipse cx='163' cy='20' rx='1.5' ry='2' fill='%23D81F64' transform='rotate(25 163 20)'/%3E%3C!-- Decorative leaves/stems --%3E%3Cpath d='M50,23 Q55,20 60,22' stroke='%23D81F64' stroke-width='1.2' fill='none'/%3E%3Cpath d='M150,23 Q145,20 140,22' stroke='%23D81F64' stroke-width='1.2' fill='none'/%3E%3Cpath d='M80,22 Q85,18 90,20' stroke='%23FF3385' stroke-width='1' fill='none'/%3E%3Cpath d='M120,22 Q115,18 110,20' stroke='%23FF3385' stroke-width='1' fill='none'/%3E%3C!-- Small dots --%3E%3Ccircle cx='25' cy='25' r='1.5' fill='%23FF3385'/%3E%3Ccircle cx='175' cy='25' r='1.5' fill='%23FF3385'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.content-box {
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-dark));
  color: var(--text-light);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-pink));
  box-shadow: 0 8px 32px rgba(216, 31, 100, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-pink);
  border: 2px solid var(--primary-pink);
}

.btn-outline:hover {
  background: var(--primary-pink);
  color: var(--text-light);
}

.btn-instagram {
  background: linear-gradient(135deg, var(--primary-pink), #9333ea);
  color: var(--text-light);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FIXED ELEMENTS
   ============================================ */
.fixed-recruit-btn {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 900;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 199, 85, 0.35), rgba(5, 179, 77, 0.35), rgba(4, 159, 68, 0.35));
  color: var(--text-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow:
    0 0 30px rgba(6, 199, 85, 0.8),
    0 0 60px rgba(6, 199, 85, 0.6),
    0 8px 32px rgba(4, 159, 68, 0.5);
  transition: var(--transition-normal);
  animation: pulse-glow-green 1.5s infinite;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
  transform: rotate(-8deg);
  backdrop-filter: blur(8px);
}

.fixed-recruit-btn:hover {
  transform: rotate(-8deg) scale(1.15);
  background: linear-gradient(135deg, rgba(7, 219, 94, 0.45), rgba(6, 199, 85, 0.45), rgba(5, 179, 77, 0.45));
  box-shadow:
    0 0 50px rgba(7, 219, 94, 1),
    0 0 100px rgba(6, 199, 85, 0.8),
    0 12px 48px rgba(4, 159, 68, 0.7);
  animation: none;
}

@keyframes pulse-glow-green {

  0%,
  100% {
    box-shadow:
      0 0 30px rgba(6, 199, 85, 0.8),
      0 0 60px rgba(6, 199, 85, 0.6),
      0 8px 32px rgba(4, 159, 68, 0.5);
    transform: rotate(-8deg) scale(1);
  }

  50% {
    box-shadow:
      0 0 60px rgba(7, 219, 94, 1),
      0 0 120px rgba(6, 199, 85, 0.9),
      0 0 80px rgba(5, 179, 77, 0.8),
      0 12px 48px rgba(4, 159, 68, 0.7);
    transform: rotate(-8deg) scale(1.08);
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-pink);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 800;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--chocolate-dark);
  color: var(--text-light);
}

#contact .section-title {
  color: var(--text-light);
}

#contact .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form {
  max-width: 600px;
  margin: var(--spacing-lg) auto 0;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--text-light);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(216, 31, 100, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-pink);
  color: var(--text-light);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-light);
  padding-left: var(--spacing-xs);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--chocolate-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3rem;
    --header-height: 70px;
  }

  /* Mobile Navigation */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-lg);
    gap: var(--spacing-sm);
    transform: translateX(-100%);
    transition: var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm);
    font-size: 1.1rem;
  }

  /* Hero Video - Full Screen on Mobile */
  .hero {
    margin-top: 0 !important;
    padding: 0 !important;
    position: relative;
    height: 100vh;
  }

  .hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    box-shadow: none;
  }

  .hero-video {
    padding-bottom: 0 !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  /* Category Grid */
  .category-grid {
    grid-template-columns: 1fr;
  }

  /* Works Grid */
  .works-grid {
    grid-template-columns: 1fr;
  }

  /* Fixed Buttons */
  .fixed-recruit-btn {
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 20px;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.35), rgba(5, 179, 77, 0.35), rgba(4, 159, 68, 0.35)) !important;
    box-shadow:
      0 0 30px rgba(6, 199, 85, 0.8),
      0 0 60px rgba(6, 199, 85, 0.6),
      0 8px 32px rgba(4, 159, 68, 0.5) !important;
  }

  .fixed-recruit-btn svg {
    width: 40px;
    height: 40px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Updated: 2026-01-06 15:56 - LINE Button Green Color Fix */