:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --dark-bg: #0f0f23;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.4);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Inter", sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Animated Background */
  .bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #0f0f23, #1a1a3e, #2d2d5f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
  }
  
  .bg-animation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
  }
  
  @keyframes gradientShift {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    33% {
      transform: translateY(-30px) rotate(120deg);
    }
    66% {
      transform: translateY(30px) rotate(240deg);
    }
  }
  
  /* Header Styles */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .header.scrolled {
    background: rgba(15, 15, 35, 0.95);
    box-shadow: var(--shadow-primary);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  }
  
  .logo-text h1 {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .logo-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    width: 100%;
  }
  
  .cta-button {
    background: var(--secondary-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.4);
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    margin-top: 80px;
  }
  
  .breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    color: var(--text-secondary);
  }
  
  .breadcrumb-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .breadcrumb-list a:hover {
    color: var(--text-primary);
  }
  
  /* Compact Hero Section - Fits with Stats in Single Screen */
  .hero {
    min-height: 60vh; /* Reduced from 100vh to 60vh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 2rem; /* Reduced padding */
    position: relative;
  }
  
  .hero-content {
    max-width: 700px; /* Slightly smaller max-width */
    z-index: 2;
  }
  
  .hero h1,
  .hero h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Reduced font sizes */
    font-weight: 800;
    margin-bottom: 1rem; /* Reduced margin */
    line-height: 1.1;
  }
  
  .hero .highlight {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero p {
    font-size: 1rem; /* Reduced from 1.2rem */
    color: var(--text-secondary);
    margin-bottom: 1.5rem; /* Reduced margin */
    line-height: 1.6;
    max-width: 500px; /* Added max-width for better readability */
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    display: flex;
    gap: 0.8rem; /* Reduced gap */
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 0.8rem 1.5rem; /* Reduced padding */
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem; /* Added smaller font size */
  }
  
  .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.4);
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.8rem 1.5rem; /* Reduced padding */
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem; /* Added smaller font size */
  }
  
  .btn-secondary:hover {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
  }
  
  /* Compact Stats Section - Minimal Space */
  .stats {
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
    flex: 1;
    max-width: 160px;
  }
  
  .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .stat-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
  }
  
  .stat-icon.users {
    background: var(--success-gradient);
  }
  .stat-icon.bonus {
    background: var(--secondary-gradient);
  }
  .stat-icon.apps {
    background: var(--warning-gradient);
  }
  
  .stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    line-height: 1;
  }
  
  .stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  /* Apps Section */
  .apps-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }
  
  .tab {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .tab.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  }
  
  /* Compact Apps Grid - 3-4 apps per row */
  .apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  /* Ultra Compact App Cards */
  .app-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .app-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .app-card:hover::before {
    transform: scaleX(1);
  }
  
  .app-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  /* Compact App Header */
  .app-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }
  
  /* Small App Icons */
  .app-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    position: relative;
  }
  
  .app-info {
    text-align: center;
  }
  
  .app-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    line-height: 1.2;
  }
  
  .app-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
  }
  
  .rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #ffd700;
    font-size: 0.7rem;
  }
  
  .downloads {
    color: var(--text-secondary);
    font-size: 0.7rem;
  }
  
  .app-category {
    background: var(--success-gradient);
    color: white;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  /* Compact Features */
  .app-features {
    margin: 0.5rem 0;
  }
  
  .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
    color: var(--text-secondary);
    font-size: 0.7rem;
  }
  
  .feature-icon {
    width: 12px;
    color: #4ade80;
    font-size: 0.7rem;
  }
  
  .bonus-amount {
    color: #4ade80;
    font-weight: 700;
  }
  
  .withdraw-amount {
    color: #60a5fa;
    font-weight: 600;
  }
  
  /* Compact Download Button */
  .download-btn {
    width: 100%;
    background: var(--secondary-gradient);
    color: white;
    padding: 0.6rem 0.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
    min-height: 32px;
  }
  
  .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.4);
  }
  
  /* Compact Badge */
  .badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--warning-gradient);
    color: white;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .badge.featured {
    background: var(--secondary-gradient);
  }
  
  /* Codes Section */
  .codes-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .codes-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .code-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .code-card.featured {
    border-color: rgba(245, 87, 108, 0.5);
    box-shadow: 0 0 30px rgba(245, 87, 108, 0.2);
  }
  
  .code-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  
  .code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .code-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .code-status {
    background: var(--success-gradient);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
  }
  
  .code-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .code-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  
  .bonus-amount {
    color: #4ade80;
    font-weight: 700;
  }
  
  .validity {
    color: var(--text-secondary);
    font-size: 0.8rem;
  }
  
  .copy-code-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
  }
  
  .copy-code-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  }
  
  /* How to Use Section */
  .how-to-use {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .how-to-use h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .step-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
  }
  
  .step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }
  
  .step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  /* SEO Content Sections */
  .seo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-top: 4rem;
  }
  
  .seo-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .seo-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
  }
  
  .seo-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
  }
  
  .seo-content ul,
  .seo-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
  }
  
  .seo-content li {
    margin-bottom: 0.5rem;
  }
  
  .keyword-highlight {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
  }
  
  .code-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: "Courier New", monospace;
    color: #4ade80;
  }
  
  /* FAQ Section */
  .faq-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
  }
  
  .faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    display: none;
  }
  
  .faq-answer.active {
    display: block;
  }
  
  /* Footer */
  .footer {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }
  
  .footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--text-primary);
  }
  
  .social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
  }
  
  .social-btn.telegram {
    background: var(--primary-gradient);
  }
  
  .social-btn.whatsapp {
    background: var(--success-gradient);
  }
  
  .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
  }
  
  .age-warning {
    color: #fbbf24;
    font-weight: 600;
  }
  
  /* Floating Action Buttons */
  .floating-actions {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 1000;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  .floating-btn.telegram {
    background: var(--primary-gradient);
  }
  
  .floating-btn.whatsapp {
    background: var(--success-gradient);
  }
  
  .floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  }
  
  /* Loading Animation */
  .loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Scroll Animations */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Enhanced Mobile Responsive Design */
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }
  
    .mobile-menu-toggle {
      display: block;
    }
  
    .hero {
      min-height: 50vh; /* Even more compact on mobile */
      padding: 1rem 2rem;
    }
  
    .hero h1,
    .hero h2 {
      font-size: 1.6rem; /* Smaller on mobile */
      margin-bottom: 0.8rem;
    }
  
    .hero p {
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
    }
  
    .hero-buttons {
      gap: 0.6rem;
    }
  
    .btn-primary,
    .btn-secondary {
      padding: 0.7rem 1.2rem;
      font-size: 0.8rem;
    }
  
    .hero h1,
    .hero h2 {
      font-size: 2.2rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
    }
  
    /* Mobile: 2-3 apps per row */
    .apps-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 0.8rem;
    }
  
    .app-card {
      padding: 0.8rem;
    }
  
    .app-icon {
      width: 30px;
      height: 30px;
      font-size: 0.9rem;
    }
  
    .app-info h3 {
      font-size: 0.8rem;
    }
  
    .feature {
      font-size: 0.6rem;
    }
  
    .download-btn {
      font-size: 0.6rem;
      padding: 0.5rem 0.3rem;
    }
  
    .codes-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .steps-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .stats-grid {
      gap: 0.8rem;
    }
  
    .stat-card {
      padding: 0.6rem 0.8rem;
      min-width: 100px;
      max-width: 140px;
    }
  
    .stat-icon {
      width: 25px;
      height: 25px;
      font-size: 0.8rem;
      margin-bottom: 0.3rem;
    }
  
    .stat-number {
      font-size: 1rem;
    }
  
    .stat-label {
      font-size: 0.6rem;
    }
  
    .stat-icon {
      width: 50px;
      height: 50px;
      font-size: 1.3rem;
    }
  
    .tabs {
      max-width: 100%;
      margin-bottom: 2rem;
    }
  
    .floating-actions {
      bottom: 1rem;
      right: 1rem;
    }
  
    .floating-btn {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }
  
    .logo-icon {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
  
    .logo-text h1 {
      font-size: 1.4rem;
    }
  
    .social-btn {
      width: 35px;
      height: 35px;
    }
  
    .stats {
      padding: 0.8rem 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      min-height: 45vh; /* Ultra-compact on small mobile */
      padding: 0.8rem 1rem;
    }
  
    .hero h1,
    .hero h2 {
      font-size: 1.4rem;
      margin-bottom: 0.6rem;
    }
  
    .hero p {
      font-size: 0.85rem;
      margin-bottom: 1rem;
    }
  
    .btn-primary,
    .btn-secondary {
      padding: 0.6rem 1rem;
      font-size: 0.75rem;
    }
  
    /* Small mobile: 2 apps per row */
    .apps-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.6rem;
    }
  
    .app-card {
      padding: 0.6rem;
    }
  
    .app-icon {
      width: 28px;
      height: 28px;
      font-size: 0.8rem;
    }
  
    .app-info h3 {
      font-size: 0.7rem;
    }
  
    .floating-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  
    .logo-icon {
      width: 30px;
      height: 30px;
      font-size: 0.9rem;
    }
  
    .step-number {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }
  
    .stats-grid {
      gap: 0.5rem;
    }
  
    .stat-card {
      padding: 0.5rem 0.6rem;
      min-width: 80px;
      max-width: 120px;
    }
  
    .stat-icon {
      width: 20px;
      height: 20px;
      font-size: 0.7rem;
      margin-bottom: 0.2rem;
    }
  
    .stat-number {
      font-size: 0.9rem;
    }
  
    .stat-label {
      font-size: 0.55rem;
    }
  
    .stats {
      padding: 0.6rem 1rem;
    }
  }
  
  @media (min-width: 1200px) {
    /* Large screens: 4-5 apps per row */
    .apps-grid {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
  }
  