/* Non-Critical CSS - Load this after page render */

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.quality-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #fd653b, #FDC144);
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item h4 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
}

/* FAQ Styles */
.faq-header {
    background: linear-gradient(135deg, #fd653b 0%, #FDC144 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.faq-subtitle {
    font-size: 1.1em;
    margin-top: 10px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.faqbox {
    padding: 40px 30px;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list li {
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-list li:hover {
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.faq-list li.active {
    border-color: #667eea;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.faq-question {
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-list h3 {
    margin: 0;
    padding: 24px 28px 24px 60px;
    font-size: 1.1em;
    font-weight: 600;
    color: #2d3748;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    transition: all 0.3s ease;
}

.faq-list li:hover h3 {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #5a67d8;
}

.faq-list li.active h3 {
    background: linear-gradient(135deg, #9b9b9b 0%, #e3e3e3 100%);
    color: white;
}

.faq-question::before {
    content: '❓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    transition: all 0.3s ease;
}

.faq-list li.active .faq-question::before {
    content: '✅';
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8em;
    font-weight: 300;
    color: #64748b;
    transition: all 0.3s ease;
}

.faq-list li:hover .faq-question::after {
    color: #5a67d8;
    transform: translateY(-50%) scale(1.1);
}

.faq-list li.active .faq-question::after {
    content: '−';
    color: white;
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
}

.faq-list li.active .faq-answer {
    max-height: 200px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    margin: 0;
    padding: 24px 28px 28px 60px;
    color: #4a5568;
    font-size: 0.95em;
    line-height: 1.7;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: #5a67d8;
    border-bottom-color: #5a67d8;
}

/* How to Copy Link Section */
.subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 50px 40px;
}

.steps-container {
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.step-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-content h3 {
    margin: 0 0 15px 0;
    color: #2d3748;
    font-size: 1.3em;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #4a5568;
    font-size: 1.05em;
    line-height: 1.6;
}

.step-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2em;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Video Section */
.video-section {
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.video-container {
    position: relative;
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 400px;
    width: 280px;
    background-color: #f2f2f2;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.video-container img, .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container img {
    object-fit: cover;
}

.video-thumbnail {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.playbutton {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.playbutton svg {
    width: 35px;
    height: 35px;
    color: #667eea;
    margin-left: 3px;
}

.video-title {
    color: black;
    margin-top: 25px;
    font-size: 1.3em;
    font-weight: 600;
}

.video-description {
    color: black;
    margin-top: 10px;
    font-size: 1em;
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 48px;
    transform: translate(-50%, -50%);
    z-index: 99;
    background: transparent;
    border: 0;
}

/* Extension Section */
.extension-section {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    padding: 40px 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.extension-container {
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.extension-header {
    text-align: center;
    margin-bottom: 40px;
}

.extension-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.extension-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.extension-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}

.extension-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.extension-image img {
    max-width: 100%;
    height: 320px;
    width: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.extension-details {
    flex: 1;
    padding: 30px;
}

.extension-details h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.extension-details ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.extension-details li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.extension-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 76, 76, 0.3);
}

.extension-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 76, 76, 0.4);
}

/* App Launch Section */
.app-launch-section {
    padding: 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    background: rgb(253,74,57);
    background: radial-gradient(circle, rgba(253,74,57,1) 0%, rgba(252,197,68,1) 100%);
    color: white;
}

.h2app {
    color: white;
    font-size: 33px;
    font-weight: 600;
}

.center-image {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    height: auto;
}

/* Stats Module */
.stats-module-wrapper {
    padding: 42px 0px;
}

.stats-module-wrapper .stats-container {
    max-width: 1310px;
    margin: 0 auto;
}

.stats-module-wrapper .headings {
    text-align: center;
    margin-bottom: 50px;
}

.stats-module-wrapper .stats-wrapper {
    max-width: 1470px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.stats-module-wrapper span.stat-number {
    color: #f03a57;
    display: block;
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    font-family: proxima-nova !important;
}

.stats-module-wrapper span.stat-heading {
    display: block;
    padding-top: 2px;
}

.stats-module-wrapper .stat-block {
    text-align: center;
    padding: 28.5px 15px;
    width: 20%;
}

.stats-module-wrapper .stat-block + .stat-block {
    border-left: 1px solid #D9D9D9;
}

/* Table Styles */
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
}

.box-button {
    display: inline-block;
    padding: 2px 17px;
    border: 2px solid #0A5731;
    color: #0A5731;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.box-button:hover {
    color: white;
    background-color: #28b76b;
    border-color: #28b76b;
}

/* Guide Styles */
.guide {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    width: 300px;
    margin: 20px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 4%);
    padding: 10px;
}

.step h2 {
    font-size: 1.2em;
    margin: 10px 0;
}

/* App styles */
.app {
    margin: 15px 0;
}

/* Ol Decorated */
.ol-decorated {
    counter-reset: zone-counter;
    margin: 0;
    text-align: left;
    list-style: none;
}

.ol-decorated li {
    position: relative;
    line-height: 24px;
    margin-bottom: 20px;
    padding-left: 32px;
}

.ol-decorated li:before {
    border: 1px solid #337efe;
    box-sizing: border-box;
    color: #337efe;
    content: counter(zone-counter);
    counter-increment: zone-counter;
    display: block;
    height: 25px;
    line-height: 24px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 25px;
    border-radius: 50%;
}

/* Blog Slider Section */
.blog-slider-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-top: 50px;
}

.blog-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 350px;
}

.blog-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.blog-slide {
    min-width: calc(25% - 15px);
    flex-shrink: 0;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-image-container {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more-overlay {
    background: #007bff;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-overlay:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title {
    margin: 0 0 10px 0;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #007bff;
}

.blog-date {
    color: #6c757d;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.date-icon {
    font-size: 0.8rem;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 9px;
}

.next-btn {
    right: 9px;
}

.arrow-icon {
    font-style: normal;
    font-weight: bold;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 20px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #007bff;
    transform: scale(1.2);
}

/* Footer Styles */
.copyright-text {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.social-buttons {
    display: flex;
    justify-content: center;
}

.social-buttons a {
    padding: 5px;
    margin: 0 5px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.social-buttons a:hover {
    color: #fd653b;
}

/* CSS Variables */
:root {
    --primary-color: #ff4c4c;
    --secondary-color: #f7f7f7;
    --text-color: #333333;
    --accent-color: #7e44ff;
    --border-radius: 12px;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Links */
a {
    color: #0073e6;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    color: #363636;
}

/* Utility classes */
.mt-14 {
    margin-top: 14px;
}

.mb-14 {
    margin-bottom: 14px;
}

/* Mobile Responsive for Blog Slider */
@media (max-width: 1024px) {
    .blog-slide {
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .blog-slide {
        min-width: calc(50% - 10px);
    }
    
    .slider-nav {
        display: none;
    }
    
    .faq-header {
        padding: 30px 20px;
    }
    
    .faqbox {
        padding: 30px 10px;
    }
    
    .faq-list h3 {
        padding: 20px 24px 20px 20px;
        font-size: 1em;
    }
    
    .faq-answer p {
        padding: 20px 24px 24px 20px;
        font-size: 0.9em;
    }
    
    .faq-question::before {
        left: 16px;
        font-size: 1.2em;
    }
    
    .faq-question::after {
        right: 20px;
        font-size: 1.6em;
    }
    
    .header-section,
    .content-section {
        padding: 30px 0px;
    }
    
    .video-thumbnail {
        width: 300px;
    }
    
    .playbutton {
        width: 60px;
        height: 60px;
    }
    
    .playbutton svg {
        width: 25px;
        height: 25px;
    }
    
    .h2app {
        font-size: 18px;
    }
    
    .extension-content {
        flex-direction: column;
    }
    
    .extension-image, .extension-details {
        width: 100%;
        padding: 15px;
    }
    
    .extension-header h2 {
        font-size: 28px;
    }
    
    .extension-header p {
        font-size: 16px;
    }
    
    .stats-module-wrapper .stat-block {
        width: 50%;
        padding: 0px;
    }
    
    .stats-module-wrapper .stat-block + .stat-block {
        border-left: none;
    }
    
    .stats-module-wrapper {
        padding: 40px 0;
    }
    
    .stats-module-wrapper span.stat-number {
        font-size: 39px;
        line-height: 30px;
        padding-bottom: 10px;
    }
    
    .stats-module-wrapper span.stat-heading {
        font-size: 14px;
        line-height: 16px;
        max-width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .blog-slide {
        min-width: calc(100% - 0px);
    }
}

@media (max-width: 567px) {
    .stats-module-wrapper .headings .sh2 {
        display: none;
    }
}

@media screen and (max-width: 1150px) {
    .stats-module-wrapper .stat-block + .stat-block {
        padding-left: 0px;
    }
    
    .stats-module-wrapper .stat-block {
        width: 25%;
    }
}