@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #327f2f;
  --primary-light: #4a9a47;
  --primary-dark: #2a6a28;
  --secondary-color: #ff6b35;
  --accent-color: #7c3aed;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --text-color: #ffffff;
  --text-dark: #2c3e50;
  --bg-color: #0a0a0a;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --sidebar-width: 400px;
  --card-bg: rgba(50, 127, 47, 0.1);
  --card-border: rgba(50, 127, 47, 0.3);
}

body {
  font-family: 'Orbitron', monospace;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: var(--text-color);
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

/* Particle Background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(50, 127, 47, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo - simple, no animation, no glow */
.logo-3d {
    position: relative;
    transform-style: flat;
    animation: none !important;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: none;
    transition: none;
}

.logo-glow {
    display: none !important;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-left: 2px solid var(--primary-color);
  z-index: 2000;
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(50, 127, 47, 0.2);
  transform: translateX(100%);
  will-change: transform;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--primary-color);
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  position: sticky;
  top: 0;
  z-index: 10;
}

.sidebar-header h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.close-sidebar {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.close-sidebar:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.close-sidebar:active {
  transform: scale(0.95);
}

.sidebar-content {
  padding: 2rem;
}

/* Contact Form */
.contact-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(50, 127, 47, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 20px rgba(50, 127, 47, 0.5);
  background: rgba(50, 127, 47, 0.2);
  transform: scale(1.02);
}

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

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

/* Contact Info */
.contact-info {
  border-top: 1px solid var(--primary-color);
  padding-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(50, 127, 47, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-item:hover {
  background: rgba(50, 127, 47, 0.2);
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(50, 127, 47, 0.3);
}

.contact-item:active {
  transform: translateX(5px) scale(0.98);
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.contact-item span {
  color: var(--text-color);
  font-size: 0.9rem;
  flex: 1;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 10px 0 0 10px;
    padding: 1rem 0.8rem;
    cursor: pointer;
    z-index: 2002;
    transition: all 0.3s cubic-bezier(.4,1.5,.5,1), background 0.3s;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 1.2rem;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle i {
    transition: transform 0.3s cubic-bezier(.4,1.5,.5,1);
}

.sidebar-toggle.open {
    right: var(--sidebar-width); /* 400px */
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
}

.sidebar-toggle.open i {
    transform: rotate(180deg);
}

.sidebar-toggle:hover {
    background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
}

.sidebar-toggle:active {
    transform: translateY(-50%) translateX(-1px);
}

/* Mobile adjustments for sidebar toggle */
@media (max-width: 768px) {
    .sidebar-toggle {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.8rem 0.6rem;
        font-size: 1rem;
        min-width: 45px;
        min-height: 45px;
        border-radius: 8px 0 0 8px;
    }
    .sidebar-toggle.open {
        right: 100vw;
    }
    .sidebar-toggle:hover {
        transform: translateY(-50%) translateX(-3px);
    }
    .sidebar-toggle:active {
        transform: translateY(-50%) translateX(-1px);
    }
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--glass-bg);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(50, 127, 47, 0.3);
}

.social-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(50, 127, 47, 0.3), transparent);
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-link:hover::after {
  transform: scale(1);
}

.social-link:hover {
  transform: translateY(-5px) rotateY(15deg);
  background: var(--primary-color);
  box-shadow: 0 10px 30px rgba(50, 127, 47, 0.5);
  border-color: var(--primary-light);
}

.social-link::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(50, 127, 47, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.social-link:hover::before {
  opacity: 1;
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-top: 110px;
}

.hero-container {
  text-align: center;
  max-width: 900px;
  width: 100%;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding-top: 60px; /* Extra space for header */
}

.hero-card {
  background: rgba(10, 20, 10, 0.85);
  border: 2px solid var(--primary-color);
  border-radius: 24px;
  box-shadow: 0 8px 40px 0 rgba(50,127,47,0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.hero-text {
  margin-bottom: 1.5rem;
  transform-style: preserve-3d;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.text-line {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.word {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 2px 16px rgba(50,127,47,0.18), 0 1px 0 #fff2;
  letter-spacing: 1px;
  line-height: 1.1;
  background: none;
  padding: 0 0.2em;
  border-radius: 8px;
}

.word.different {
  color: var(--secondary-color);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--secondary-color);
}

.word.creating {
  color: var(--accent-color);
  background: rgba(124, 58, 237, 0.08);
  border: 1.5px solid var(--accent-color);
}

.word.change {
  color: var(--success-color);
  background: rgba(40, 167, 69, 0.08);
  border: 1.5px solid var(--success-color);
}

/* Hero Subtitle */
.hero-subtitle {
  margin-bottom: 4rem;
}

.subtitle-line {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.subtitle-line .word {
  font-size: 2rem;
  font-weight: 400;
  animation: subtitleFloat 5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.3s);
}

.word.change {
  color: var(--accent-color);
  text-shadow: 0 0 25px rgba(124, 58, 237, 0.6);
  animation: changeTransform 2.5s ease-in-out infinite;
}

@keyframes subtitleFloat {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-15px) rotateX(10deg); }
}

@keyframes changeTransform {
  0%, 100% { transform: scale(1) rotateZ(0deg); }
  50% { transform: scale(1.2) rotateZ(5deg); }
}

/* Floating E-commerce SVGs */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-svg {
  position: absolute;
  opacity: 0.7;
  filter: drop-shadow(0 0 16px #327f2f44);
  will-change: transform;
}

.floating-cart {
  top: 10%; left: 8%;
  animation: floatCart 7s ease-in-out infinite;
}
.floating-bag {
  top: 60%; left: 12%;
  animation: floatBag 8s ease-in-out infinite;
}
.floating-tag {
  top: 30%; right: 18%;
  animation: floatTag 6s ease-in-out infinite;
}
.floating-card {
  bottom: 20%; left: 30%;
  animation: floatCard 9s ease-in-out infinite;
}
.floating-truck {
  bottom: 10%; right: 10%;
  animation: floatTruck 10s ease-in-out infinite;
}

@keyframes floatCart {
  0%, 100% { transform: translateY(0) rotate(-8deg) scale(1); }
  50% { transform: translateY(-30px) rotate(8deg) scale(1.1); }
}
@keyframes floatBag {
  0%, 100% { transform: translateY(0) rotate(10deg) scale(1); }
  50% { transform: translateY(-25px) rotate(-10deg) scale(1.08); }
}
@keyframes floatTag {
  0%, 100% { transform: translateY(0) rotate(-12deg) scale(1); }
  50% { transform: translateY(-18px) rotate(12deg) scale(1.12); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotateY(0deg) scale(1); }
  50% { transform: translateY(-22px) rotateY(180deg) scale(1.05); }
}
@keyframes floatTruck {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-20px) rotate(-8deg) scale(1.1); }
}

/* Subscription Form */
.subscription-container {
  margin-bottom: 3rem;
}

.form-wrapper {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
  transform-style: preserve-3d;
  animation: formFloat 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(50, 127, 47, 0.3);
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(50, 127, 47, 0.2), transparent);
  transform: rotate(45deg);
  animation: formShine 3s ease-in-out infinite;
}

@keyframes formFloat {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-10px) rotateX(5deg); }
}

@keyframes formShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  text-align: center;
  text-shadow: 0 0 10px rgba(50, 127, 47, 0.5);
}

.form-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Features Preview */
.features-preview {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(50, 127, 47, 0.3);
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(50, 127, 47, 0.1);
  border: 1px solid rgba(50, 127, 47, 0.2);
  margin: 0 0.2rem;
}

.feature-item:hover {
  background: rgba(50, 127, 47, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(50, 127, 47, 0.3);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(50, 127, 47, 0.5);
}

.feature-item span {
  font-size: 0.8rem;
  color: var(--text-color);
  font-weight: 500;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 1.5rem;
  min-width: 120px;
  transform-style: preserve-3d;
  animation: countdownFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.5s);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(50, 127, 47, 0.3);
}

.countdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(50, 127, 47, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.countdown-item:hover::before {
  transform: translateX(100%);
}

.countdown-item:hover {
  transform: translateY(-8px) rotateX(10deg);
  box-shadow: 0 20px 40px rgba(50, 127, 47, 0.5);
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(50, 127, 47, 0.6);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.countdown-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes countdownFloat {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-8px) rotateX(10deg); }
}

/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 1s ease-in-out 2s forwards;
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  border-top-color: var(--primary-light);
  animation-duration: 1.5s;
  animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
  border-top-color: var(--secondary-color);
  animation-duration: 2s;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Enhancements */
@media (max-width: 1200px) {
    .main-content {
        padding: 1rem;
    }
    .features-preview {
        gap: 0.8rem;
    }
    .floating-elements {
        opacity: 0.7;
    }
}

@media (max-width: 900px) {
    .main-content {
        padding: 0.5rem;
        padding-top: 90px;
    }
    .features-preview {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
        margin: 0.2rem 0;
        padding: 1rem;
        border-radius: 15px;
        background: rgba(50, 127, 47, 0.15);
        border: 1px solid rgba(50, 127, 47, 0.3);
        backdrop-filter: blur(10px);
    }
    .feature-item i {
        margin-bottom: 0;
        margin-right: 1rem;
        font-size: 1.2rem;
        color: var(--primary-color);
    }
    .form-wrapper {
        padding: 1.5rem 1rem;
        min-width: 0;
        border-radius: 20px;
        margin: 0 0.5rem;
    }
    .sidebar {
        width: 100vw;
        min-width: unset;
    }
    .sidebar-content {
        padding: 1rem;
    }
    .sidebar-header {
        padding: 1rem;
    }
    .logo-img {
        height: 50px;
    }
    .countdown-container {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 0.5rem;
    }
    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Improved touch targets */
    .social-link, .sidebar-toggle, .submit-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Sidebar toggle mobile styles */
    .sidebar-toggle {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.8rem 0.6rem;
        font-size: 1rem;
        min-width: 45px;
        min-height: 45px;
        border-radius: 8px 0 0 8px;
    }
    
    .sidebar-toggle:hover {
        transform: translateY(-50%) translateX(-3px);
    }
    
    .sidebar-toggle:active {
        transform: translateY(-50%) translateX(-1px);
    }
    
    .sidebar-toggle.open {
        right: 100vw;
    }
    
    /* Better scrolling */
    .sidebar {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improved form spacing */
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    /* Enhanced button feedback */
    .submit-btn:active {
        transform: scale(0.95);
    }
    
    /* Better countdown visibility */
    .countdown-container {
        background: rgba(50, 127, 47, 0.1);
        padding: 1rem;
        border-radius: 15px;
        border: 1px solid rgba(50, 127, 47, 0.2);
        backdrop-filter: blur(5px);
    }
    
    /* Improved feature items */
    .feature-item {
        transition: all 0.3s ease;
    }
    
    .feature-item:active {
        transform: scale(0.98);
        background: rgba(50, 127, 47, 0.25);
    }
    
    /* Mobile-specific animations */
    .floating-elements {
        display: none;
    }
    
    /* Better form focus states */
    .email-input:focus, .form-input:focus, .form-textarea:focus {
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(50, 127, 47, 0.6);
    }
    
    /* Improved sidebar on mobile */
    .sidebar {
        width: 100vw;
        max-width: 100vw;
        backdrop-filter: blur(10px);
    }
    
    .sidebar-content {
        padding: 1.5rem 1rem;
    }
    
    /* Better navigation on mobile - reduced blur */
    .navbar {
        backdrop-filter: blur(8px);
        background: rgba(10, 10, 10, 0.9);
    }
    
    /* Mobile-specific button styles */
    .submit-btn {
        position: relative;
        overflow: hidden;
    }
    
    .submit-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }
    
    .submit-btn:active::after {
        width: 200px;
        height: 200px;
    }
    
    /* Mobile-specific countdown styles */
    .countdown-item {
        position: relative;
        overflow: hidden;
    }
    
    .countdown-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .countdown-item:active::after {
        left: 100%;
    }
    
    /* Mobile-specific social link styles */
    .social-link {
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(5px);
    }
    
    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
        transform: scale(0);
        transition: transform 0.3s ease;
    }
    
    .social-link:active::before {
        transform: scale(1);
    }
    
    /* Mobile-specific form wrapper - reduced blur */
    .form-wrapper {
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(8px);
    }
    
    .form-wrapper::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(50, 127, 47, 0.1), transparent);
        animation: rotate 10s linear infinite;
        pointer-events: none;
    }
    
    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    /* Mobile-specific loading animation */
    .loading-spinner {
        transform: scale(0.8);
    }
    
    /* Mobile-specific particle background - reduced opacity */
    #particles-js {
        opacity: 0.2;
    }
    
    /* Mobile-specific text animations */
    .hero-text, .hero-subtitle {
        animation-duration: 1.5s;
    }
    
    /* Mobile-specific feature animations */
    .feature-item {
        animation: slideInFromBottom 0.6s ease forwards;
        opacity: 0;
        transform: translateY(30px);
        backdrop-filter: blur(5px);
    }
    
    .feature-item:nth-child(1) { animation-delay: 0.1s; }
    .feature-item:nth-child(2) { animation-delay: 0.2s; }
    .feature-item:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes slideInFromBottom {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile-specific countdown animations */
    .countdown-item {
        animation: countdownPulse 2s ease-in-out infinite;
    }
    
    @keyframes countdownPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    /* Mobile-specific form animations */
    .subscription-form {
        animation: formSlideIn 0.8s ease forwards;
    }
    
    @keyframes formSlideIn {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    /* Mobile-specific success animations */
    .submit-btn.success {
        animation: successPulse 0.6s ease;
    }
    
    @keyframes successPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    /* Mobile-specific error states */
    .email-input.error, .form-input.error, .form-textarea.error {
        border-color: #ff6b35;
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
        animation: errorShake 0.5s ease;
    }
    
    @keyframes errorShake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }
    
    /* Mobile-specific accessibility */
    .submit-btn:focus, .social-link:focus, .sidebar-toggle:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Mobile-specific performance optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile-specific scrollbar */
    .sidebar::-webkit-scrollbar {
        width: 4px;
    }
    
    .sidebar::-webkit-scrollbar-track {
        background: rgba(50, 127, 47, 0.1);
    }
    
    .sidebar::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    /* Fix blur issues on mobile */
    .main-content {
        backdrop-filter: none;
    }
    
    .hero-container {
        backdrop-filter: none;
    }
    
    /* Reduce blur on form elements */
    .form-input, .form-textarea, .email-input {
        backdrop-filter: blur(3px);
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .main-content {
        padding-top: 60px;
    }
    
    .hero-container {
        gap: 1rem;
    }
    
    .form-wrapper {
        padding: 1rem;
    }
    
    .countdown-container {
        margin: 0.5rem 0;
    }
    
    .features-preview {
        margin-top: 0.5rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #0a0a0a;
        --text-color: #ffffff;
    }
}

/* Print styles */
@media print {
    .navbar, .sidebar, .sidebar-toggle, .floating-elements {
        display: none !important;
    }
    
    .main-content {
        padding: 0;
        color: #000;
    }
    
    .form-wrapper {
        background: white;
        color: #000;
        border: 1px solid #ccc;
    }
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.email-input {
  width: 100%;
  padding: 1rem;
  background: rgba(50, 127, 47, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  color: var(--text-color);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.email-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 20px rgba(50, 127, 47, 0.5);
  background: rgba(50, 127, 47, 0.2);
}

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

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.email-input:focus + .input-line {
  width: 100%;
}

.submit-btn {
  position: relative;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  border: none;
  border-radius: 50px;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(50, 127, 47, 0.4);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(50, 127, 47, 0.6);
  background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
}

/* Hero Row Side-by-Side Layout */
.hero-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    width: 100%;
}
.hero-left, .hero-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.hero-left {
    border-right: 2px solid rgba(50,127,47,0.15);
    padding-right: 2rem;
}
.hero-right {
    padding-left: 2rem;
}

@media (max-width: 900px) {
    .hero-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-left, .hero-right {
        border: none;
        padding: 0;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 0.5rem 0.8rem;
    }
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    .social-links {
        gap: 0.4rem;
    }
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .main-content {
        padding: 0.3rem;
        padding-top: 70px;
    }
    .form-title {
        font-size: 1.2rem;
        text-align: center;
    }
    .form-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }
    .form-wrapper {
        padding: 1.2rem 0.8rem;
        margin: 0 0.3rem;
    }
    .email-input, .form-input, .form-textarea {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    .submit-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
    }
    .countdown-container {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    .countdown-item {
        min-width: 65px;
        padding: 0.7rem 0.4rem;
    }
    .countdown-number {
        font-size: 1.2rem;
    }
    .countdown-label {
        font-size: 0.7rem;
    }
    .sidebar-toggle {
        right: 8px;
        padding: 0.6rem;
        font-size: 0.9rem;
        width: 40px;
        height: 40px;
    }
    .sidebar-toggle.open {
        right: calc(100vw - 50px);
    }
    .logo-img {
        height: 40px;
    }
    .feature-item {
        padding: 0.8rem;
        margin: 0.3rem 0;
    }
    .feature-item i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0.6rem;
    }
    .nav-container {
        gap: 0.3rem;
    }
    .social-links {
        gap: 0.3rem;
    }
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    .main-content {
        padding: 0.2rem;
        padding-top: 60px;
    }
    .form-title {
        font-size: 1.1rem;
    }
    .form-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    .form-wrapper {
        padding: 1rem 0.6rem;
        margin: 0 0.2rem;
        border-radius: 15px;
    }
    .email-input, .form-input, .form-textarea {
        font-size: 0.9rem;
        padding: 0.7rem;
        border-radius: 12px;
    }
    .submit-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        border-radius: 20px;
    }
    .countdown-container {
        gap: 0.4rem;
        margin: 0.8rem 0;
    }
    .countdown-item {
        min-width: 60px;
        padding: 0.6rem 0.3rem;
        border-radius: 12px;
    }
    .countdown-number {
        font-size: 1.1rem;
    }
    .countdown-label {
        font-size: 0.65rem;
    }
    .sidebar-toggle {
        right: 6px;
        padding: 0.5rem;
        font-size: 0.8rem;
        width: 36px;
        height: 36px;
    }
    .sidebar-toggle.open {
        right: calc(100vw - 45px);
    }
    .logo-img {
        height: 35px;
    }
    .feature-item {
        padding: 0.6rem;
        margin: 0.2rem 0;
        border-radius: 12px;
    }
    .feature-item i {
        font-size: 0.9rem;
        margin-right: 0.6rem;
    }
    .feature-item span {
        font-size: 0.8rem;
    }
    .hero-container {
        gap: 1.5rem;
    }
}

@media (max-width: 400px) {
    .main-content {
        padding-top: 50px;
    }
    .form-title {
        font-size: 1rem;
    }
    .form-subtitle {
        font-size: 0.75rem;
    }
    .sidebar-header h3 {
        font-size: 1.1rem;
    }
    .countdown-item {
        min-width: 55px;
        padding: 0.5rem 0.2rem;
    }
    .countdown-number {
        font-size: 1rem;
    }
    .countdown-label {
        font-size: 0.6rem;
    }
    .feature-item {
        padding: 0.5rem;
    }
    .feature-item i {
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
    .feature-item span {
        font-size: 0.75rem;
    }
    .logo-img {
        height: 30px;
    }
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }
    .sidebar-toggle {
        width: 32px;
        height: 32px;
        right: 4px;
        font-size: 0.7rem;
    }
    .sidebar-toggle.open {
        right: calc(100vw - 40px);
    }
}

@media (max-width: 360px) {
    .navbar {
        padding: 0.3rem 0.5rem;
    }
    .social-link {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }
    .main-content {
        padding-top: 45px;
    }
    .form-wrapper {
        padding: 0.8rem 0.5rem;
        margin: 0 0.1rem;
    }
    .countdown-item {
        min-width: 50px;
        padding: 0.4rem 0.2rem;
    }
    .countdown-number {
        font-size: 0.9rem;
    }
    .countdown-label {
        font-size: 0.55rem;
    }
    .sidebar-toggle {
        right: 3px;
        padding: 0.4rem;
        font-size: 0.6rem;
        width: 30px;
        height: 30px;
    }
    .sidebar-toggle.open {
        right: calc(100vw - 35px);
    }
    .logo-img {
        height: 28px;
    }
}

console.log(document.getElementById('sidebar'));
console.log(document.getElementById('sidebarToggle'));
console.log(document.getElementById('closeSidebar'));


