


:root {
    --primary: #9c4dcc;
    --primary-light: #bb6ee8;
    --primary-dark: #6a1b9a;
    --background-dark: #111111;
    --background-card: #1e1e1e;
    --background-card-hover: #2a2a2a;
    --text: #ffffff;
    --text-light: #cccccc;
    --text-dark: #111111;
    --accent: #282260;
    --gray-light: #333333;
    --gray: #444444;
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  }
  
  .loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .logo-loader {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
  }
  
  .q2-part {
    color: white;
  }
  
  .video-part {
    color: #8a2be2; /* Purple color */
  }
  
  .loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #8a2be2;
    animation: spin 1s ease-in-out infinite;
  }
  
  /* Animations */
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  /* Hide loader when page is loaded */
  .loaded #loading-overlay {
    opacity: 0;
    visibility: hidden;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background-dark);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* For dark backgrounds */
.logo .q2-part {
    color: white;
  }
  
  .logo .video-part {
    color: #d8aeff; /* Lighter purple for better contrast */
  }
  
  /* For light backgrounds */
  .logo .q2-part {
    color: #ffff; /* Darker color instead of white */
  }
  
  .logo .video-part {
    color: #8c16e1; /* Darker purple */
  }

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

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(156, 77, 204, 0.3);
}

.btn-arrow::after {
    content: " →";
}

/* Header */
header {
    padding: 1.5rem 0;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
 
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-light), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: translateX(100%);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(106, 27, 154, 0.2), transparent 70%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light), var(--primary-dark));
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-app-status {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 680px;
    margin: 0 auto;
}

.phone-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 105%;
    z-index: 2;
}

.phone-screen {
    position: absolute;
    top: 19px;
    left: 15px;
    width: 308px;
    height: 665px;
    overflow: hidden;
    border-radius: 32px;
    z-index: 1;
    background-color: #121212;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.video-stats {
    position: absolute;
    bottom: 25%;
    right: -30px;
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(156, 77, 204, 0.2);
    transition: all 0.3s ease;
}

.video-stats:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(156, 77, 204, 0.3);
}

.video-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.video-stat-icon {
    font-size: 1.2rem;
}

.video-stat-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-light);
}

.video-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.record-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: recordPulse 2s infinite;
}

.record-button::before {
    content: '';
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.record-button:hover {
    transform: translateX(-50%) scale(1.1);
}

.record-button.recording::before {
    border-radius: 4px;
    background-color: #e74c3c;
}

.video-frame {
    position: absolute;
    top: -50px;
    right: -80px;
    width: 180px;
    height: 320px;
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    transform: rotate(-10deg);
    z-index: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(156, 77, 204, 0.2);
    animation: floatFrame 8s ease-in-out infinite;
}

.education-elements {
    position: absolute;
    top: 10%;
    left: 5%;
    z-index: 0;
}

.education-element {
    font-size: 3rem;
    opacity: 0.15;
    animation: float 15s ease-in-out infinite;
    margin-bottom: 2rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(156, 77, 204, 0.15);
    animation: float 20s ease-in-out infinite;
}

.floating-element .icon {
    font-size: 1.3rem;
    margin-right: 0.3rem;
}

.floating-element .count {
    font-weight: 700;
    color: var(--primary-light);
}

.video-icon {
    top: 15%;
    right: 15%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}

.share-icon {
    bottom: 20%;
    left: 10%;
    width: 45px;
    height: 45px;
    animation-delay: -5s;
}

.views-icon {
    top: 10%;
    left: 20%;
    padding: 0.75rem 1rem;
    animation-delay: -10s;
}

.education-icon {
    bottom: 30%;
    right: 25%;
    width: 50px;
    height: 50px;
    animation-delay: -15s;
}

.message-icon {
    top: 60%;
    right: 10%;
    width: 45px;
    height: 45px;
    animation-delay: -7s;
}

/* Social Proof Strip */
.social-proof {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, var(--background-card) 0%, var(--background-card-hover) 100%);
    border-top: 1px solid rgba(156, 77, 204, 0.1);
    border-bottom: 1px solid rgba(156, 77, 204, 0.1);
    text-align: center;
}

.social-proof-text {
    color: var(--text-light);
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--background-dark);
    position: relative;
}

.how-it-works::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    padding: 2rem;
    background-color: var(--background-card);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 77, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 77, 204, 0.3);
    background-color: var(--background-card-hover);
}

.step:hover::before {
    transform: scaleX(1);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--text);
    border-radius: 50%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(156, 77, 204, 0.5);
    transform: scale(1.1);
}

.step-title {
    margin-bottom: 0.75rem;
}

/* Who It's For */
.who-its-for {
    padding: 6rem 0;
    background-color: var(--background-dark);
    position: relative;
}

.audience-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.audience-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--background-card);
    border-radius: 12px;
    border: 1px solid rgba(156, 77, 204, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 77, 204, 0.3);
    background-color: var(--background-card-hover);
}

.audience-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.audience-item:hover .audience-icon {
    transform: scale(1.2);
}

.audience-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-light);
    margin: 2rem 0;
    position: relative;
    padding: 0 2rem;
}

.audience-quote::before,
.audience-quote::after {
    content: '"';
    position: absolute;
    font-size: 3rem;
    color: rgba(156, 77, 204, 0.2);
    height: 30px;
    line-height: 1;
}

.audience-quote::before {
    left: 0;
    top: 0;
}

.audience-quote::after {
    right: 0;
    bottom: -15px;
}

/* Features */
.features {
    padding: 6rem 0;
    background-color: var(--background-dark);
    position: relative;
}

.features::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.1), transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    filter: blur(50px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.feature {
    padding: 2rem;
    background-color: var(--background-card);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 77, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(156, 77, 204, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    background-color: var(--background-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 77, 204, 0.3);
}

.feature:hover::after {
    opacity: 1;
}

.feature-icon {
    position: relative;
    margin-bottom: 1rem;
    display: inline-block;
    z-index: 1;
}

.feature-icon span {
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(156, 77, 204, 0.3), transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulseGlow 3s infinite;
}

.sharing-popup {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.feature:hover .sharing-popup {
    opacity: 1;
    transform: translateY(0);
}

.sharing-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sharing-icon:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: var(--background-dark);
    text-align: center;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    max-width: 400px;
    padding: 2rem;
    background-color: var(--background-card);
    border-radius: 12px;
    border: 1px solid rgba(156, 77, 204, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial::after {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    z-index: 0;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 77, 204, 0.3);
    background-color: var(--background-card-hover);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-light);
}

.testimonial-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3a0d65 0%, #6a1b9a 100%);
    color: var(--text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(187, 110, 232, 0.3), transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    filter: blur(50px);
}

.cta::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(187, 110, 232, 0.2), transparent 70%);
    bottom: -100px;
    left: 10%;
    border-radius: 50%;
    filter: blur(40px);
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

.app-status {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background-color: #0a0a0a;
    color: var(--text);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-company {
    flex: 2;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.app-stores {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.app-badge-wrapper {
    position: relative;
    display: inline-block;
}

.app-badge {
    height: 40px;
    transition: all 0.3s ease;
}

.app-badge:hover {
    transform: translateY(-3px);
}

.coming-soon-label {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-light);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.footer-nav {
    flex: 3;
    display: flex;
    justify-content: space-between;
}

.footer-nav-group h4 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-nav-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(156, 77, 204, 0.1);
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--background-card);
    color: var(--text);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 77, 204, 0.2);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(156, 77, 204, 0.2);
    border-radius: 50%;
}

/* Hero Glow */
.hero-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 77, 204, 0.4), transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(50px);
    animation: pulse-glow 4s infinite alternate;
}

/* Dark Mode Specific Styles */
::selection {
    background-color: var(--primary-dark);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--background-dark);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.mobile-menu-link {
    display: block;
    padding: 1rem;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(156, 77, 204, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background-color: rgba(156, 77, 204, 0.1);
    padding-left: 1.5rem;
    color: #bb6ee8;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(156, 77, 204, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(156, 77, 204, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(156, 77, 204, 0);
    }
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 10px) rotate(5deg); }
    50% { transform: translate(0, 20px) rotate(0deg); }
    75% { transform: translate(-10px, 10px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes recordPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(156, 77, 204, 0.7);
    }
    
    70% {
        box-shadow: 0 0 0 15px rgba(156, 77, 204, 0);
    }
    
    100% {
        box-shadow: 0 0 0 0 rgba(156, 77, 204, 0);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.1;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.1;
        transform: scale(0.8);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.3;
        transform: translateY(-50%) scale(0.8);
    }
    100% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* 3D Tilt Effect */
.tilt-element {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tilt-element:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4),
                5px 5px 15px rgba(156, 77, 204, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .phone-mockup {
        margin: 0 auto;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-container .btn {
        display: none;
    }
    
    .floating-element {
        opacity: 0.5;
    }
    
    .video-stats {
        right: 50%;
        transform: translateX(50%);
        bottom: 15%;
    }
    
    .video-frame {
        display: none;
    }
    
    .sharing-popup {
        display: none;
    }
    
    .testimonials-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .phone-mockup {
        transform: scale(0.9);
    }
    
    .floating-element {
        display: none;
    }
    
    .education-element {
        display: none;
    }
    
    .testimonial::after {
        display: none;
    }
    
    .audience-list {
        flex-direction: column;
        align-items: center;
    }
    
    .audience-item {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        transform: scale(0.8);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero {
        padding: 3rem 0;
    }
    
    .video-stats {
        padding: 0.5rem 1rem;
        gap: 1rem;
    }
    
    .record-button {
        width: 50px;
        height: 50px;
    }
    
    .record-button::before {
        width: 20px;
        height: 20px;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .audience-quote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
}