    :root {
        --primary: #4361ee;
        --primary-dark: #3a56d4;
        --secondary: #3f37c9;
        --accent: #f72585;
        --dark: #222639;
        --light: #f8f9fa;
        --gray: #6c757d;
        --success: #4bb543;
        --info: #3a86ff;
        --warning: #fca311;
        --danger: #e63946;
        --border-radius: 8px;
        --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        --transition: all 0.3s ease;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        background-color: #f8f9fa;
        color: var(--dark);
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
    }
    
    .header {
        background-color: var(--dark);
        padding: 15px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .header .logo {
        font-size: 22px;
        font-weight: 700;
        color: white;
        text-decoration: none;
    }
    
    .header .logo span {
        color: var(--accent);
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.8);
        margin: 0 10px;
        font-weight: 500;
        transition: var(--transition);
        font-size: 15px;
    }
    
    .nav-link:hover, 
    .nav-link:focus {
        color: white;
    }
    
    .hero {
        background: linear-gradient(135deg, var(--dark) 0%, #303552 100%);
        padding: 80px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(var(--accent), transparent 70%);
        opacity: 0.3;
        top: -100px;
        right: -100px;
        border-radius: 50%;
    }
    
    .hero::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background: radial-gradient(var(--primary), transparent 70%);
        opacity: 0.2;
        bottom: -80px;
        left: -80px;
        border-radius: 50%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        font-weight: 300;
        opacity: 0.9;
    }
    
    .player-card {
        background-color: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        padding: 30px;
        position: relative;
        z-index: 10;
    }
    
    .url-input {
        border: 2px solid #e1e5eb;
        padding: 15px;
        border-radius: var(--border-radius);
        width: 100%;
        font-size: 16px;
        transition: var(--transition);
    }
    
    .url-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        outline: none;
    }
    
    .placeholder-text {
        color: var(--gray);
    }
    
    .player-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }
    
    .btn-player {
        padding: 12px 20px;
        border-radius: var(--border-radius);
        font-weight: 600;
        flex: 1;
        min-width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .custom-play-btn {
        padding: 12px 20px;
        border-radius: var(--border-radius);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: var(--primary);
        color: white;
        border: none;
        transition: var(--transition);
    }
    
    .custom-play-btn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
    }
    
    .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
    }
    
    .btn-primary:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
    }
    
    .btn-secondary {
        background-color: var(--secondary);
        border-color: var(--secondary);
    }
    
    .btn-secondary:hover {
        background-color: #362fc0;
        border-color: #362fc0;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(63, 55, 201, 0.3);
    }
    
    .btn-accent {
        background-color: var(--accent);
        border-color: var(--accent);
    }
    
    .btn-accent:hover {
        background-color: #dc2079;
        border-color: #dc2079;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
    }
    
    .btn-info {
        background-color: var(--info);
        border-color: var(--info);
    }
    
    .btn-info:hover {
        background-color: #347ae0;
        border-color: #347ae0;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(58, 134, 255, 0.3);
    }
    
    .video-container {
        aspect-ratio: 16 / 9;
        width: 100%;
        background-color: #000;
        border-radius: var(--border-radius);
        overflow: hidden;
        margin-top: 30px;
        box-shadow: var(--box-shadow);
    }
    
    .video-js {
        width: 100%;
        height: 100%;
    }
    
    .features-section {
        padding: 80px 0;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }
    
    .section-title::after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        background-color: var(--primary);
        margin: 20px auto 0;
        border-radius: 2px;
    }
    
    .feature-card {
        background-color: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        padding: 30px;
        height: 100%;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    
    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: var(--primary);
        opacity: 0.6;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .feature-icon {
        font-size: 36px;
        margin-bottom: 20px;
        color: var(--primary);
    }
    
    .feature-title {
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .feature-text {
        color: var(--gray);
        font-size: 15px;
    }
    
    .how-it-works {
        background-color: #f1f4f9;
        padding: 80px 0;
    }
    
    .step-card {
        display: flex;
        align-items: flex-start;
        background-color: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        padding: 25px;
        margin-bottom: 30px;
        transition: var(--transition);
    }
    
    .step-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    
    .step-number {
        background-color: var(--primary);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    .step-content h3 {
        margin-bottom: 10px;
        font-size: 18px;
    }
    
    .step-content p {
        color: var(--gray);
        margin-bottom: 0;
        font-size: 15px;
    }
    
    .formats-section {
        padding: 80px 0;
        background-color: white;
    }
    
    .format-badge {
        display: inline-block;
        padding: 8px 16px;
        background-color: #e9ecef;
        border-radius: 20px;
        margin: 5px;
        font-weight: 500;
        font-size: 14px;
        transition: var(--transition);
    }
    
    .format-badge:hover {
        background-color: var(--primary);
        color: white;
        transform: translateY(-2px);
    }
    
    .news-section {
        padding: 80px 0;
        background-color: #f1f4f9;
    }
    
    .news-card {
        background-color: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        overflow: hidden;
        height: 100%;
        transition: var(--transition);
    }
    
    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .news-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.5;
        height: 3em;
    }
    
    .news-link {
        text-decoration: none;
        color: var(--dark);
    }
    
    .news-link:hover .news-title {
        color: var(--primary);
    }
    
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .btn-cta {
        background-color: white;
        color: var(--primary);
        font-weight: 600;
        padding: 12px 30px;
        border-radius: var(--border-radius);
        border: none;
        transition: var(--transition);
    }
    
    .btn-cta:hover {
        background-color: var(--accent);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .faq-section {
        padding: 80px 0;
    }
    
    .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: var(--border-radius) !important;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .accordion-button {
        padding: 20px;
        font-weight: 600;
        background-color: white;
        box-shadow: none !important;
    }
    
    .accordion-button:not(.collapsed) {
        color: var(--primary);
        background-color: rgba(67, 97, 238, 0.05);
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(67, 97, 238, 0.5);
    }
    
    .accordion-body {
        padding: 20px;
        background-color: white;
    }
    
    .footer {
        background-color: var(--dark);
        color: white;
        padding: 60px 0 30px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .footer-title::after {
        content: "";
        display: block;
        width: 30px;
        height: 3px;
        background-color: var(--accent);
        margin-top: 10px;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .footer-links a:hover {
        color: white;
        text-decoration: none;
    }
    
    .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 15px;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        transition: var(--transition);
    }
    
    .social-links a:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
    }
    
    .copyright {
        text-align: center;
        padding-top: 30px;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
    }
    
    .donate-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--accent);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 12px 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
        transition: var(--transition);
        z-index: 100;
        text-decoration: none;
    }
    
    .donate-btn:hover {
        background-color: #dc2079;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(247, 37, 133, 0.4);
        color: white;
    }
    
    .embed-modal .modal-content {
        border-radius: var(--border-radius);
        border: none;
        box-shadow: var(--box-shadow);
    }
    
    .embed-modal .modal-header {
        background-color: var(--primary);
        color: white;
        border-bottom: none;
        border-radius: calc(var(--border-radius) - 1px) calc(var(--border-radius) - 1px) 0 0;
    }
    
    .embed-modal .modal-title {
        font-weight: 600;
    }
    
    .embed-modal .close {
        color: white;
    }
    
    .embed-modal .form-control {
        padding: 12px;
        border-radius: var(--border-radius);
        border: 2px solid #e1e5eb;
    }
    
    .embed-modal .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    }
    
    .embed-modal .btn-copy {
        background-color: var(--primary);
        color: white;
        border: none;
        border-radius: var(--border-radius);
        padding: 12px 20px;
        font-weight: 600;
    }
    
    /* Player customizations */
    .video-js {
        font-size: 14px;
        overflow: hidden;
        border-radius: var(--border-radius);
    }
    
    .vjs-big-play-button {
        background-color: var(--primary) !important;
        border-color: var(--primary) !important;
        border-radius: 50% !important;
        width: 80px !important;
        height: 80px !important;
        line-height: 80px !important;
        top: 50% !important;
        left: 50% !important;
        margin-top: -40px !important;
        margin-left: -40px !important;
        transition: var(--transition) !important;
    }
    
    .vjs-big-play-button:hover {
        background-color: var(--primary-dark) !important;
        transform: scale(1.1) !important;
    }
    
    .vjs-control-bar {
        background-color: rgba(34, 38, 57, 0.8) !important;
    }
    
    .embed-responsive {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        overflow: hidden;
        border-radius: var(--border-radius);
    }
    
    .embed-responsive iframe,
    .embed-responsive #player {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    .sharing-tools {
        background-color: white;
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 20px;
        box-shadow: var(--box-shadow);
    }
    
    .share-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }
    
    .share-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 15px;
        border-radius: var(--border-radius);
        color: white;
        font-weight: 500;
        text-decoration: none;
        transition: var(--transition);
    }
    
    .share-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        color: white;
    }
    
    .btn-facebook {
        background-color: #3b5998;
    }
    
    .btn-twitter {
        background-color: #1da1f2;
    }
    
    .btn-whatsapp {
        background-color: #25d366;
    }
    
    .btn-telegram {
        background-color: #0088cc;
    }
    
    .btn-email {
        background-color: #6c757d;
    }
    
    .btn-embed {
        background-color: #6610f2;
    }
    
    .btn-copy {
        background-color: #20c997;
    }
    
    .vjs-snapshot-button .vjs-icon-placeholder:before {
        content: "\1F4F7";
        font-family: "VideoJS";
        font-size: 1.5em;
    }
    
    .embed-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        width: 90%;
        max-width: 600px;
        padding: 30px;
        border-radius: var(--border-radius);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        display: none;
    }
    
    .embed-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .embed-popup h4 {
        margin-bottom: 20px;
        color: var(--primary);
    }
    
    .embed-popup textarea {
        width: 100%;
        padding: 15px;
        border: 2px solid #e1e5eb;
        border-radius: var(--border-radius);
        height: 120px;
        margin-bottom: 20px;
        font-family: monospace;
        font-size: 14px;
    }
    
    .embed-popup button {
        padding: 12px 25px;
        border-radius: var(--border-radius);
        font-weight: 600;
        background-color: var(--primary);
        color: white;
        border: none;
        transition: var(--transition);
    }
    
    .embed-popup button:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
    }
    
    @media (max-width: 991.98px) {
        .hero {
            padding: 60px 0;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .btn-player {
            padding: 10px 15px;
        }
    }
    
    @media (max-width: 767.98px) {
        .hero {
            padding: 40px 0;
        }
        
        .hero-title {
            font-size: 1.8rem;
        }
        
        .player-buttons {
            flex-direction: column;
        }
        
        .btn-player {
            width: 100%;
        }
        
        .step-card {
            flex-direction: column;
        }
        
        .step-number {
            margin-right: 0;
            margin-bottom: 15px;
        }
        
        .sharing-tools {
            padding: 15px;
        }
        
        .share-buttons {
            justify-content: center;
        }
    }
/* Fake player styles */
.fake-player {
    width: 100%;
    background-color: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.fake-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fake-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fake-play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    cursor: pointer;
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 2;
}

.fake-play-button:hover {
    opacity: 1;
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.fake-controls {
    background-color: rgba(34, 38, 57, 0.9);
    padding: 10px 15px;
}

.fake-progress {
    width: 100%;
    height: 5px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.fake-progress-bar {
    height: 100%;
    width: 35%;
    background-color: var(--primary);
    border-radius: 3px;
}

.fake-buttons {
    display: flex;
    align-items: center;
    color: white;
}

.fake-button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.fake-button:hover {
    opacity: 1;
}

.fake-time {
    font-size: 12px;
    margin-right: 15px;
    opacity: 0.8;
}

.fake-volume {
    margin-right: 15px;
    opacity: 0.8;
}

.fake-spacer {
    flex-grow: 1;
}

.demo-player-section {
    padding: 60px 0;
}
.features-services-section {
    background-color: #f1f4f9;
    padding: 70px 0;
}

.features-services-section .feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.features-services-section .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.6;
}

.features-services-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.features-services-section h2 {
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.features-services-section h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.features-services-section p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.features-services-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.features-services-section a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.features-services-section .http {
    color: #e63946;
    font-weight: 700;
}

.features-services-section .https {
    color: #38b000;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .features-services-section {
        padding: 50px 0;
    }
    
    .features-services-section h2 {
        font-size: 22px;
    }
    
    .features-services-section h3 {
        font-size: 18px;
    }
}
