/* --- CSS Variables --- */

@font-face {
  font-family: "Benaiah";
  src: url("/fonts/Benaiah.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}



:root {
        --primary-gradient: linear-gradient(
          135deg,
          #7f00ff 0%,
          #e100ff 50%,
          #ff8a00 100%
        );
        --secondary-gradient: linear-gradient(135deg, #00dbde 0%, #fc00ff 100%);
        --glow-gradient: radial-gradient(
          circle at center,
          rgba(127, 0, 255, 0.6) 0%,
          rgba(225, 0, 255, 0.3) 50%,
          transparent 70%
        );
        --bg-dark: #0a0a0f;
        --bg-card: rgba(255, 255, 255, 0.05);
        --text-light: #ffffff;
        --text-muted: rgba(255, 255, 255, 0.7);
        --accent-purple: #a855f7;
        --accent-pink: #ec4899;
        --accent-blue: #3b82f6;
        --shadow-glow: 0 0 20px rgba(127, 0, 255, 0.5);
        --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
      }

      /* --- Global Styles --- */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Inter", sans-serif;
        background-color: var(--bg-dark);
        color: var(--text-light);
        overflow-x: hidden;
        line-height: 1.6;
      }

      section {
        position: relative;
        overflow: hidden;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      /* --- 3D Floating Elements --- */
      .floating-3d {
        position: absolute;
        pointer-events: none;
        z-index: -1;
        animation: float3D 8s ease-in-out infinite;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
      }

      @keyframes float3D {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }
        33% {
          transform: translateY(-20px) rotate(5deg);
        }
        66% {
          transform: translateY(10px) rotate(-5deg);
        }
      }

      /* --- Glow Gradient Buttons --- */
      .glow-button {
        position: relative;
        display: inline-block;
        padding: 1.2rem 2.5rem;
        margin: 0.5rem;
        border: none;
        border-radius: 12px;
        background: var(--primary-gradient);
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: var(--shadow-glow);
        overflow: hidden;
        z-index: 1;
      }

      .glow-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--secondary-gradient);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
      }

      .glow-button:hover::before {
        opacity: 1;
      }

      .glow-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 30px rgba(127, 0, 255, 0.6);
      }

      .glow-button:active {
        transform: translateY(-2px) scale(1.02);
      }

      .glow-button-secondary {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
      }

      .glow-button-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
      }

      /* --- Hero Section --- */
      .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 4rem 2rem;
        position: relative;
      }

      .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
            circle at 20% 50%,
            rgba(127, 0, 255, 0.15) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(225, 0, 255, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 40% 80%,
            rgba(255, 138, 0, 0.05) 0%,
            transparent 50%
          );
        z-index: -2;
      }

      .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: linear-gradient(90deg, #fff, #a855f7, #ec4899);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1.1;
      }

      .hero p {
        font-size: 1.3rem;
        max-width: 700px;
        margin-bottom: 3rem;
        color: var(--text-muted);
      }

      /* --- App Showcase --- */
      .showcase {
        padding: 6rem 0;
        text-align: center;
      }

      .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
      }

      .section-subtitle {
        font-size: 1.2rem;
        color: var(--text-muted);
        text-align: center;
        max-width: 600px;
        margin: 0 auto 3rem;
      }

      .screenshots {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 3rem;
        margin-top: 4rem;
        perspective: 1000px;
      }

      .phone-3d {
        width: 280px;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transform-style: preserve-3d;
        transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        border: 12px solid #1a1a1f;
      }

      .phone-3d:hover {
        transform: translateY(-20px) rotateY(15deg) rotateX(5deg);
      }

      .phone-3d::before {
        content: "";
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: var(--primary-gradient);
        border-radius: 45px;
        z-index: -1;
        opacity: 0.5;
        filter: blur(15px);
      }

      .phone-screen {
        width: 100%;
        height: 520px;
        object-fit: cover;
        display: block;
      }

      /* --- Features Section --- */
      .features {
        padding: 6rem 0;
        background: rgba(0, 0, 0, 0.2);
        position: relative;
      }

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

      .feature-card-3d {
        background: var(--bg-card);
        border-radius: 20px;
        padding: 2.5rem;
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-card);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform-style: preserve-3d;
        transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
      }

      .feature-card-3d::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--primary-gradient);
      }

      .feature-card-3d:hover {
        transform: translateY(-15px) rotateX(5deg);
        box-shadow: 0 20px 40px rgba(127, 0, 255, 0.3);
      }

      .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(127, 0, 255, 0.1);
        font-size: 2.5rem;
        color: var(--accent-purple);
      }

      .feature-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
      }

      .feature-desc {
        color: var(--text-muted);
        font-size: 1rem;
      }

      /* --- Video Section --- */
      .video-section {
        padding: 6rem 0;
        text-align: center;
      }

      .video-container-3d {
        max-width: 900px;
        margin: 3rem auto 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
        position: relative;
      }

      .video-container-3d:hover {
        transform: translateY(-10px) rotateY(5deg);
      }

      .video-container-3d::before {
        content: "";
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: var(--primary-gradient);
        border-radius: 25px;
        z-index: -1;
        opacity: 0.5;
        filter: blur(15px);
      }

      video {
        width: 100%;
        display: block;
        border-radius: 15px;
      }

      /* --- Download Section --- */
      .download {
        padding: 6rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .download::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-gradient);
        opacity: 0.1;
        z-index: -1;
      }

      .store-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 3rem;
      }

      .store-button {
        width: 200px;
        height: 70px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transition: all 0.4s ease;
        cursor: pointer;
      }

      .store-button:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
      }

      .store-button img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* --- Footer --- */
      footer {
        padding: 3rem 2rem;
        background: rgba(0, 0, 0, 0.5);
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin: 1.5rem 0;
      }

      .social-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1.3rem;
        transition: all 0.3s ease;
      }

      .social-icon:hover {
        background: var(--primary-gradient);
        transform: translateY(-5px);
      }

      .copyright {
        color: var(--text-muted);
        margin-top: 1.5rem;
        font-size: 0.9rem;
      }

      /* --- Particle Background --- */
      .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        pointer-events: none;
      }

      .particle {
        position: absolute;
        border-radius: 50%;
        background: var(--primary-gradient);
        animation: particleFloat 15s infinite linear;
      }

      @keyframes particleFloat {
        0% {
          transform: translateY(0) rotate(0deg);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          transform: translateY(-100vh) rotate(360deg);
          opacity: 0;
        }
      }

      /* --- Responsive --- */
      @media (max-width: 992px) {
        .hero h1 {
          font-size: 3.2rem;
        }

        .section-title {
          font-size: 2.4rem;
        }
      }

      @media (max-width: 768px) {
        .hero h1 {
          font-size: 2.5rem;
        }

        .hero p {
          font-size: 1.1rem;
        }

        .screenshots {
          flex-direction: column;
        }

        .phone-3d {
          width: 250px;
        }

        .glow-button {
          padding: 1rem 2rem;
          font-size: 1rem;
        }
      }

      @media (max-width: 480px) {
        .hero h1 {
          font-size: 2rem;
        }

        .section-title {
          font-size: 1.8rem;
        }

        .feature-grid {
          grid-template-columns: 1fr;
        }

        .store-buttons {
          flex-direction: column;
          align-items: center;
        }
      }

      body {
  font-family: "Benaiah", sans-serif;
}
/* App Banner */
.app-banner {
  width: 100%;
  margin-bottom: 3rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: perspective(1000px) rotateX(0deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.app-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.app-banner:hover {
  transform: perspective(1000px) rotateX(6deg) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 255, 255, 0.35);
}

.app-banner:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.2);
}
