/* Reset Remix Icons */
:where([class^="ri-"])::before { content: "\f3c2"; }

/* Hero Background */
.hero-section {
    position: relative;
    background-image: url('./SVG-BG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.245), rgba(0, 0, 0, 0.19));
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

/* Base Styles */
body {
    background: #0D0D0D;
    color: white;
    min-height: 100vh;
    font-size: 16px;
}

/* Download button style */
.btn-download {
  background: linear-gradient(90deg, #FF5722 0%, #FF9800 100%);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(255, 87, 34, 0.10);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-download:hover, .btn-download:focus {
  background: linear-gradient(90deg, #FF9800 0%, #FF5722 100%);
  box-shadow: 0 0 16px 4px rgba(255, 87, 34, 0.35), 0 4px 24px 0 rgba(255, 87, 34, 0.24);
  transform: scale(1.045);
  outline: 2px solid #FF9800;
  outline-offset: 2px;
  animation: btn-glow-pulse 1.2s infinite alternate;
}

@keyframes btn-glow-pulse {
  0% {
    box-shadow: 0 0 16px 4px rgba(255, 87, 34, 0.35), 0 4px 24px 0 rgba(255, 87, 34, 0.24);
  }
  100% {
    box-shadow: 0 0 32px 8px rgba(255, 152, 0, 0.45), 0 4px 32px 0 rgba(255, 87, 34, 0.32);
  }
}

/* Gradient border hover effect for cards */
.gradient-border-hover {
  position: relative;
  z-index: 0;
}

.gradient-border-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, #FF5722 0%, #000 50%, #fff 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

.gradient-border-hover:hover::before {
  opacity: 1;
}

/* Pulsing orange gradient for icon */
.pulse-gradient {
  position: relative;
  background: rgba(255, 87, 34, 0.12);
  animation: pulse-simple 2.2s infinite cubic-bezier(.4,0,.6,1);
  box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.5);
}

@keyframes pulse-simple {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 16px 8px rgba(255, 87, 34, 0.15);
    transform: scale(1.07);
  }
}

/* Mockup Iphone Hero */
.mockup-Iphone-hero {
    align-items: end;
    width: 100%;
    margin-bottom: -25px;
    position: relative;
    bottom: -25px;
    transform: scale(1.2);
    transition: transform 0.3s ease-out;
}

.mockup-Iphone-hero:hover {
    transform: scale(1);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
  background: #FF5722;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF9800;
} 