* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

/* Navbar Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
    z-index: 30;
}

/* Color Variables */
:root {
    --primary-color: #68E4ED;
    --secondary-color: #F7EA62;
    --text-color: #000000;
    --accent-color: #0F172A;
}

.primary-bg { background-color: var(--primary-color); }
.secondary-bg { background-color: var(--secondary-color); }
.primary-text { color: var(--primary-color); }
.accent-text { color: var(--accent-color); }
.text-default { color: var(--text-color); }

/* Mobile Menu Styles */
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    padding: 1rem 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-hidden {
    display: none !important;
}

#mobile-menu .nav-link-item {
    display: block;
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
    color: var(--accent-color);
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

#mobile-menu .nav-link-item:active {
    background-color: #f0f9ff;
    transform: scale(0.98);
}

#mobile-menu .nav-link-item:hover {
    background-color: #f8fafc;
}

#mobile-menu .join-now-btn {
    margin-top: 1rem;
    width: calc(100% - 3rem);
    margin-left: 1.5rem;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(6, 182, 212, 0.3);
  border-top-color: #06b6d4;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Profile Picture Container */
.profile-pic-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  padding: 3px;
  box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.3);
}

@media (min-width: 768px) {
  .profile-pic-container {
    width: 80px;
    height: 80px;
  }
}

/* Profile Picture - Remove display:none from img */
.profile-pic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats Card */
.stat-card {
  background: linear-gradient(135deg, #ecfeff 0%, #dbeafe 100%);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  border: 1px solid #a5f3fc;
}

.stat-label {
  font-size: 0.75rem;
  color: #4b5563;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.025em;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

/* Analytics Card */
/*.analytics-card {
  background: linear-gradient(135deg, #f9fafb 0%, #dbeafe 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}*/

/* Gauge */
/*.gauge-container {
  width: 160px;
  height: 80px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.gauge-semi-circle {
  width: 160px;
  height: 80px;
  border-radius: 80px 80px 0 0;
  background: conic-gradient(from 180deg, #ef4444 0%, #f59e0b 25%, #facc15 50%, #84cc16 75%, #22c55e 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.gauge-mask {
  width: 130px;
  height: 65px;
  border-radius: 65px 65px 0 0;
  background: white;
  position: absolute;
  top: 15px;
  left: 15px;
}

.gauge-needle {
  width: 2px;
  height: 60px;
  background: #1f2937;
  position: absolute;
  bottom: 0;
  left: 79px;
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(-90deg);
  z-index: 10;
}

.gauge-center-dot {
  width: 10px;
  height: 10px;
  background: #1f2937;
  border-radius: 50%;
  position: absolute;
  bottom: -5px;
  left: 75px;
  z-index: 11;
}*/

/* Rate Cards */
.rate-card {
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.rate-card-reel {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.rate-card-post {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.rate-card-story {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.rate-label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 4px;
  opacity: 0.9;
  letter-spacing: 0.025em;
}

.rate-value {
  font-size: 1.5rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .rate-value {
    font-size: 1.875rem;
  }
}

.rate-subtext {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 2px;
}

/* Blur Effects */
.blur-content {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.blur-section {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .stat-card {
    padding: 10px 8px;
  }
  
  .stat-label {
    font-size: 0.625rem;
    margin-bottom: 2px;
  }
  
  .stat-value {
    font-size: 1.125rem;
  }
  
  .rate-card {
    padding: 10px 8px;
  }
  
  .rate-label {
    font-size: 0.625rem;
    margin-bottom: 2px;
  }
  
  .rate-value {
    font-size: 1.125rem;
  }
  
  /*.analytics-card {
    padding: 12px;
  }
  
  .gauge-container {
    width: 120px;
    height: 60px;
  }
  
  .gauge-semi-circle {
    width: 120px;
    height: 60px;
    border-radius: 60px 60px 0 0;
  }
  
  .gauge-mask {
    width: 100px;
    height: 50px;
    border-radius: 50px 50px 0 0;
    top: 10px;
    left: 10px;
  }
  
  .gauge-needle {
    height: 45px;
    left: 59px;
  }
  
  .gauge-center-dot {
    left: 55px;
  }*/
  
  #ugcCard {
    font-size: 0.9rem;
  }
  
  #ugcCard h1 {
    font-size: 1.5rem;
  }
  
  #ugcCard h2 {
    font-size: 1.25rem;
  }
  
  #ugcCard h3 {
    font-size: 1rem;
  }
}

/* Extra small devices (like Samsung S23 in certain orientations) */
@media (max-width: 400px) {
  .stat-card {
    padding: 8px 6px;
  }
  
  .stat-label {
    font-size: 0.5rem;
  }
  
  .stat-value {
    font-size: 1rem;
  }
  
  .rate-card {
    padding: 8px 6px;
  }
  
  .rate-label {
    font-size: 0.5rem;
  }
  
  .rate-value {
    font-size: 1rem;
  }
  
  /*.analytics-card {
    padding: 10px;
  }
  
  .gauge-container {
    width: 100px;
    height: 50px;
  }
  
  .gauge-semi-circle {
    width: 100px;
    height: 50px;
    border-radius: 50px 50px 0 0;
  }
  
  .gauge-mask {
    width: 84px;
    height: 42px;
    border-radius: 42px 42px 0 0;
    top: 8px;
    left: 8px;
  }
  
  .gauge-needle {
    height: 38px;
    left: 49px;
  }
  
  .gauge-center-dot {
    width: 8px;
    height: 8px;
    left: 46px;
    bottom: -4px;
  }*/
  
  #ugcCard {
    font-size: 0.85rem;
  }
  
  #ugcCard h1 {
    font-size: 1.25rem;
  }
  
  #ugcCard h2 {
    font-size: 1.125rem;
  }
  
  #ugcCard h3 {
    font-size: 0.9rem;
  }
  
  .profile-pic-container {
    width: 56px;
    height: 56px;
  }
}

/* Samsung S23 and similar (360px-412px width) */
@media (min-width: 360px) and (max-width: 412px) {
  .stat-card {
    padding: 9px 7px;
  }
  
  .stat-label {
    font-size: 0.55rem;
  }
  
  .stat-value {
    font-size: 1.05rem;
  }
  
  .rate-card {
    padding: 9px 7px;
  }
  
  .rate-label {
    font-size: 0.55rem;
  }
  
  .rate-value {
    font-size: 1.05rem;
  }
}
/* Footer Styles */
footer {
    background-color: #141620 !important;
}

.footer-link {
    transition: color 0.15s;
    line-height: 2.5;
    text-decoration: none;
}

.footer-link:hover {
    color: #68E4ED;
}

.social-icon-btn {
    background-color: #fcb900;
    color: #0F172A;
    transition: opacity 0.15s;
    text-decoration: none;
}

.social-icon-btn:hover {
    opacity: 0.8;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.store-icon {
  width: 20px;
  height: 20px;
}

.playstore-button {
  background-color: #34D399;
  color: #000;
}

.playstore-button:hover {
  background-color: #10B981;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.appstore-button {
  background-color: #FBBF24;
  color: #000;
}

.appstore-button:hover {
  background-color: #F59E0B;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

/* Responsive Footer */
@media (max-width: 640px) {
  .footer-banner {
    padding: 20px 12px;
  }
  
  .footer-text {
    font-size: 1rem;
    gap: 4px;
  }
  
  .footer-emoji {
    font-size: 1.25rem;
  }
  
  .footer-main-text,
  .footer-sub-text {
    font-size: 1rem;
  }
  
  .footer-buttons {
    gap: 12px;
    width: 100%;
  }
  
  .store-button {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.75rem;
  }
  
  .store-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 400px) {
  .footer-text {
    font-size: 0.875rem;
  }
  
  .store-button {
    padding: 8px 12px;
    font-size: 0.7rem;
  }
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
  }
  
  .footer-text {
    text-align: left;
    font-size: 1.5rem;
  }
  
  .footer-main-text,
  .footer-sub-text {
    font-size: 1.5rem;
  }
  
  .footer-emoji {
    font-size: 1.75rem;
  }
  
  .footer-buttons {
    flex-shrink: 0;
  }
}
/* Form Section Spacing */
#formSection {
  padding-top: 120px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  #formSection {
    padding-top: 100px;
  }
}
/* Ensure proper spacing and prevent footer overlap */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content should take up space and push footer down */
#formSection,
#cardSection {
  flex: 1;
}

/* Footer should always be at bottom */
footer {
  margin-top: auto;
  background-color: #141620 !important;
}

/* Remove conflicting padding from formSection */
#formSection {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: calc(100vh - 64px); /* 64px is navbar height */
}

#cardSection {
  padding-top: 100px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  #formSection,
  #cardSection {
    padding-top: 90px;
  }
}