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

        body {
            font-family: 'Arial', sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }

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

        /* Header */
        header {
            background-color: #ffffff;
            padding: 10px 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }

        .play-btn {
            background: #ff6b35;
            color: white;
            padding: 8px 20px;
            text-decoration: none;
            border-radius: 20px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .play-btn:hover {
            background: #e55a2b;
        }

        /* Main Content */
        main {
            padding: 30px 0;
        }

        .content-section {
            margin-bottom: 40px;
        }

        .text-maintextcontent {
            background-color: #f8f9fa;
            border: 2px dashed #dee2e6;
            padding: 20px;
            margin: 15px 0;
            color: #6c757d;
            font-style: italic;
            border-radius: 5px;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .large-maintextcontent {
            min-height: 100px;
        }

        .small-maintextcontent {
            min-height: 40px;
            font-size: 14px;
        }

        .section-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }

        .subsection-title {
            font-size: 18px;
            font-weight: bold;
            margin: 20px 0 10px 0;
            color: #555;
        }

        /* Table Styles */
        .features-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #f8f9fa;
            border-radius: 5px;
            overflow: hidden;
        }

        .features-table th, .features-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #dee2e6;
        }

        .features-table th {
            background: #e9ecef;
            font-weight: bold;
        }

        /* Pros/Cons Table */
        .pros-cons-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .pros-cons-table th {
            background: #f8f9fa;
            padding: 15px;
            font-weight: bold;
            border: 1px solid #dee2e6;
        }

        .pros-cons-table td {
            padding: 15px;
            border: 1px solid #dee2e6;
            vertical-align: top;
        }

        /* Steps List */
        .steps-list {
            counter-reset: step-counter;
        }

        .step-item {
            counter-increment: step-counter;
            margin: 20px 0;
            padding-left: 40px;
            position: relative;
        }

        .step-item::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background: #ff6b35;
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }

        .step-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        /* Feature List */
        .feature-list {
            margin: 20px 0;
        }

        .feature-item {
            margin: 15px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 5px;
            border-left: 4px solid #ff6b35;
        }

        .feature-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        /* Play Button Sections */
        .play-section {
            text-align: center;
            margin: 30px 0;
            padding: 10px 25%;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .big-play-btn {
            background: #ff6b35;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            font-size: 18px;
            border: none;
            cursor: pointer;
            margin: 10px;
            display: inline-block;
        }

        .big-play-btn:hover {
            background: #e55a2b;
            transform: translateY(-1px);
        }

        .demo-btn {
            background: white;
            color: #ff6b35;
            border: 2px solid #ff6b35;
        }

        .demo-btn:hover {
            background: #ff6b35;
            color: white;
        }

        /* FAQ */
        .faq-item {
            margin: 20px 0;
            border-bottom: 1px solid #dee2e6;
            padding-bottom: 15px;
        }

        .faq-question {
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .header-content {
                flex-direction: row;
            }

            .logo {
                font-size: 18px;
            }

            .play-btn {
                padding: 6px 15px;
                font-size: 12px;
            }

            .section-title {
                font-size: 20px;
            }

            .subsection-title {
                font-size: 16px;
            }

            .big-play-btn {
                padding: 12px 25px;
                font-size: 16px;
            }

            .features-table, .pros-cons-table {
                font-size: 14px;
            }

            .features-table th, .features-table td,
            .pros-cons-table th, .pros-cons-table td {
                padding: 8px;
            }

            .step-item {
                padding-left: 35px;
            }

            .text-maintextcontent {
                padding: 15px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            main {
                padding: 20px 0;
            }

            .content-section {
                margin-bottom: 30px;
            }

            .section-title {
                font-size: 18px;
            }

            .big-play-btn {
                display: block;
                margin: 10px 0;
            }

            .features-table, .pros-cons-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }
/* Footer Styles */
.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #dee2e6;
}

.footer-cta {
    text-align: center;
    margin-bottom: 30px;
}

.disclaimer-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.warning-box {
    border-left: 4px solid #ff6b35;
}

.legal-box {
    border-left: 4px solid #28a745;
}

.info-box {
    border-left: 4px solid #17a2b8;
}

.disclaimer-title {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.disclaimer-text {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    background: #333;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.footer-brand {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-disclaimer {
    margin-bottom: 15px;
    font-size: 12px;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .disclaimer-box {
        margin-bottom: 20px;
    }
    
    .disclaimer-title {
        font-size: 16px !important;
    }
    
    .disclaimer-text {
        font-size: 13px !important;
    }
    
    .footer-cta {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 !important;
    }
    
    .disclaimer-box {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .disclaimer-title {
        font-size: 15px !important;
    }
    
    .disclaimer-text {
        font-size: 12px !important;
    }
    
    .footer-bottom {
        padding: 15px !important;
    }
}
/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.back-to-top-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .back-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}