 /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #34a853;
            --primary-dark: #2d9249;
            --dark: #202124;
            --gray: #5f6368;
            --light-gray: #f8f9fa;
            --border: #dadce0;
            --warning: #f9ab00;
            --error: #ea4335;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body {
            background-color: var(--white);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

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








          /* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: sticky;
        top: 0;
        z-index: 100;
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        text-decoration: none;
        font-family: cursive;
      }

      .logo span {
        color: rgb(31, 129, 31);
        text-decoration: line-through white;
      }

      /* Desktop Navigation */
      .desktop-nav ul {
        display: flex;
        list-style: none;
      }

      .desktop-nav li {
        margin-left: 25px;
      }

      .desktop-nav a {
        text-decoration: none;
        color: var(--gray);
        font-weight: 500;
        transition: color 0.3s;
        padding: 5px 10px;
        border-radius: 4px;
      }

      .desktop-nav a:hover, .desktop-nav a.active {
        color: var(--primary);
        background-color: var(--light-gray);
      }

      /* Mobile Navigation */
      .mobile-nav-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark);
      }

      .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        z-index: 99;
      }

      .mobile-nav.active {
        display: block;
      }

      .mobile-nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .mobile-nav a {
        text-decoration: none;
        color: var(--gray);
        font-weight: 500;
        display: block;
        padding: 10px;
        border-radius: 4px;
        transition: all 0.3s;
      }

      .mobile-nav a:hover, .mobile-nav a.active {
        color: var(--primary);
        background-color: var(--light-gray);
      }  /* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: sticky;
        top: 0;
        z-index: 100;
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        text-decoration: none;
        font-family: cursive;
      }

      .logo span {
        color: rgb(31, 129, 31);
        text-decoration: line-through white;
      }

      /* Desktop Navigation */
      .desktop-nav ul {
        display: flex;
        list-style: none;
      }

      .desktop-nav li {
        margin-left: 25px;
      }

      .desktop-nav a {
        text-decoration: none;
        color: var(--gray);
        font-weight: 500;
        transition: color 0.3s;
        padding: 5px 10px;
        border-radius: 4px;
      }

      .desktop-nav a:hover, .desktop-nav a.active {
        color: var(--primary);
        background-color: var(--light-gray);
      }

      /* Mobile Navigation */
      .mobile-nav-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark);
      }

      .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        z-index: 99;
      }

      .mobile-nav.active {
        display: block;
      }

      .mobile-nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .mobile-nav a {
        text-decoration: none;
        color: var(--gray);
        font-weight: 500;
        display: block;
        padding: 10px;
        border-radius: 4px;
        transition: all 0.3s;
      }

      .mobile-nav a:hover, .mobile-nav a.active {
        color: var(--primary);
        background-color: var(--light-gray);
      }

        /* Main Content */
        .main-content {
            padding: 60px 0;
        }

        /* Checker Section */
        .checker {
            padding: 40px 0;
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .checker::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="%2334a853" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
            z-index: 0;
        }

        .checker-content {
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.5rem;
            color: var(--dark);
            opacity: 0;
            animation: fadeInUp 1s ease 0.2s forwards;
        }

        .section-subtitle {
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 1s ease 0.4s forwards;
        }

        /* Checker Box */
        .checker-box {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(0,0,0,0.05);
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .checker-title {
            text-align: center;
            margin-bottom: 10px;
            font-size: 1.8rem;
            color: var(--dark);
        }

        .checker-description {
            text-align: center;
            margin-bottom: 40px;
            color: var(--gray);
        }

        /* Checker Input */
        .checker-input-group {
            position: relative;
            margin-bottom: 30px;
        }

        .checker-input {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            background: var(--white);
        }

        .checker-input:focus {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(52, 168, 83, 0.2);
            transform: translateY(-2px);
        }

        .checker-btn {
            width: 100%;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 18px 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            margin-top: 10px;
        }

        .checker-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 168, 83, 0.3);
        }

        .search-examples {
            text-align: center;
            margin-top: 25px;
            font-size: 0.95rem;
            color: var(--gray);
        }

        /* Feature Examples */
        .feature-examples {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 40px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
        }

        .example-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
        }

        .example-card:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .example-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
            display: block;
        }

        .example-name {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--dark);
        }

        /* Results Section */
        .results-section {
            padding: 80px 0;
            background: var(--white);
        }

        .results-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.2rem;
            color: var(--dark);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .result-card {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.03);
            opacity: 0;
            transform: translateY(30px);
        }

        .result-card.animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .result-card:nth-child(1) { animation-delay: 0.1s; }
        .result-card:nth-child(2) { animation-delay: 0.2s; }
        .result-card:nth-child(3) { animation-delay: 0.3s; }

        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }

        .result-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
            transition: var(--transition);
        }

        .result-card:hover .result-icon {
            transform: scale(1.1);
        }

        .result-status {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            padding: 6px 15px;
            border-radius: 20px;
            display: inline-block;
        }

        .status-available {
            background: #e6f4ea;
            color: var(--primary);
        }

        .status-limited {
            background: #fef7e0;
            color: var(--warning);
        }

        .status-not-supported {
            background: #fce8e6;
            color: var(--error);
        }

        .result-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .result-description {
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .browser-support {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .browser {
            text-align: center;
        }

        .browser-icon {
            font-size: 1.8rem;
            margin-bottom: 5px;
            display: block;
        }

        .browser-name {
            font-size: 0.8rem;
            color: var(--gray);
        }

        .browser-version {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--dark);
        }

        .action-btn {
            display: inline-block;
            padding: 10px 20px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: var(--transition);
            margin: 5px;
        }

        .action-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

         .action-btn.secondary { 
            background: var(--light-gray);
            color: var(--dark);
        } 

        .action-btn.secondary:hover {
            background: var(--border);
        } 

        /* How It Works Section */
        .how-it-works {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .step {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .step.animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.3s; }
        .step:nth-child(3) { animation-delay: 0.5s; }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 25px;
            transition: var(--transition);
        }

        .step:hover .step-number {
            transform: scale(1.1);
        }

        .step-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .step-description {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .feature-examples {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .results-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .steps {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }


/* Footer */
      footer {
        background-color: var(--dark);
        color: white;
        padding: 60px 0 20px;
        margin-top: auto;
        position: relative;
        top: 50px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 40px;
      }

      .footer-column h3 {
        margin-bottom: 20px;
        font-size: 1.2rem;
      }

      .footer-column ul {
        list-style: none;
      }

      .footer-column li {
        margin-bottom: 10px;
      }

      .footer-column a {
        color: #bdc1c6;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-column a:hover {
        color: white;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #3c4043;
        color: #9aa0a6;
        font-size: 0.9rem;
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
        .features-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        
        .footer-content {
          grid-template-columns: repeat(2, 1fr);
        }
      }











        @media (max-width: 768px) {
            .checker-box {
                padding: 30px 25px;
            }
            
            .feature-examples {
                grid-template-columns: 1fr;
            }
            
            .results-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .checker-title {
                font-size: 1.5rem;
            }
            
            .checker-input {
                padding: 16px 20px;
                font-size: 1rem;
            }
            
            .checker-btn {
                padding: 16px 25px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .checker-title {
                font-size: 1.3rem;
            }
            
            .checker-box {
                padding: 25px 20px;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .result-card {
                padding: 25px 20px;
        
            }
        }


        /* Responsive Design */
      @media (max-width: 1024px) {
        .features-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        
        .footer-content {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .desktop-nav {
          display: none;
        }
        
        .mobile-nav-toggle {
          display: block;
        }
        
        .features-grid {
          grid-template-columns: 1fr;
        }
        
        .footer-content {
          grid-template-columns: 1fr;
        }
        
        .hero h1 {
          font-size: 2rem;
        }
        
        .hero {
          padding: 60px 0;
        }
        
        .search-btn {
          position: relative;
          right: auto;
          top: auto;
          width: 100%;
          margin-top: 10px;
          border-radius: 8px;
        }
        
        .search-box {
          padding: 0 15px;
        }
        
        .search-input {
          border-radius: 8px;
        }
        
        .container-feature {
          top: 30px;
        }
        
        .feature {
          top: -80px;
        }
      }

      @media (max-width: 480px) {
        .hero h1 {
          font-size: 1.8rem;
        }
        
        .hero p {
          font-size: 1rem;
        }
        
        .section-title {
          font-size: 1.5rem;
        }
        
        .feature-card {
          padding: 20px;
        }
        
        .feature-icon {
          font-size: 2rem;
        }
      }
      /* Animation for result cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* Browser support styles */
.browser.not-supported {
    opacity: 0.5;
}

.browser.not-supported .browser-icon {
    opacity: 0.3;
}

/* Card actions */
.card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    flex: 1;
    background: #007bff;
    color: white;
}

.action-btn.secondary {
    background: #f0f0f0;
    color: #333;
}

/* Search examples */
.search-examples strong {
    cursor: pointer;
    text-decoration: underline;
}

.search-examples strong:hover {
    color: #007bff;
}