:root {
    --primary-red: #e60023;
    --primary-white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --border-light: #e9ecef;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 80px;
}

/* Bootstrap Container Override */
.container {
    max-width: 86% !important;
}

/* Header Styles */
.navbar {
    background-color: var(--primary-white);
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red) !important;
    text-decoration: none;
}

.language-selector {
    position: relative;
}

.btn-language {
    background-color: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-language:hover,
.btn-language:focus {
    background-color: #c5001e;
    color: var(--primary-white);
    box-shadow: 0 2px 8px rgba(230, 0, 35, 0.3);
}

.btn-language i {
    font-size: 16px;
}

.dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 8px 0;
    min-width: 200px;
    margin-top: 8px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-red);
}

.dropdown-item.active {
    background-color: var(--primary-red);
    color: var(--primary-white);
}

.dropdown-item.active:hover {
    background-color: #c5001e;
    color: var(--primary-white);
}

/* Language Dropdown Responsive */
@media (max-width: 768px) {
    .btn-clear{
        top: 7px;
        font-size: 12px;
    }
    .btn-language {
        padding: 6px 15px;
        font-size: 13px;
    }

    .dropdown-menu {
        min-width: 180px;
    }
}

/* Navbar Brand */
.navbar-brand {
    border: none;
    border-radius: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e60023 0%, #ff6b6b 100%);
    color: var(--primary-white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-create-now {
    background-color: var(--primary-white);
    color: var(--primary-red);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-create-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--primary-red);
}

/* Download Section */
.width-80{
    width: 70%;
    margin: auto;
}
.download-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.download-container {
    background-color: var(--primary-white);
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    padding: 60px 40px;
    width: 100%;
    margin: 0 auto;
}

.download-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-white);
    font-size: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}
.group-section-download{
    display: flex;
    align-items: center;
}
.url-input-group {
    width: 80%;
    margin: 0 auto;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}

.url-input {
    border: 2px solid var(--border-light);
    border-radius: 50px;
    padding: 8px 25px;
    font-size: 1.1rem;
    flex: 1;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #efeeeede;
}

.url-input:focus {
    border-color: var(--primary-red);
}

.btn-paste {
    background-color: #f8f9fa;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    border-radius: 50px;
    padding: 5px 20px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 100px;
    position: absolute;
    right: 5px;
}

.btn-paste:hover {
    background-color: #e9ecef;
    color: var(--text-dark);
    border-color: var(--primary-red);
}

.btn-clear {
    background-color: #dc3545;
    color: white;
    border: 2px solid #dc3545;
    border-radius: 50px;
    padding: 5px 20px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 100px;
    position: absolute;
    right: 5px;
}

.btn-clear:hover {
    background-color: #c82333;
    color: white;
    border-color: #c82333;
}

.btn-download {
    background-color: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 50px;
    padding: 8px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    max-width: 200px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: #cc0020;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 0, 35, 0.3);
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.step-item {
    text-align: left;
    padding: 30px 25px;
    background-color: var(--primary-white);
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    min-height: 200px;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-icon {
    font-size: 1.8rem;
    color: var(--primary-red);
    position: absolute;
    top: 25px;
    right: 25px;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 20px 0;
    background-color: var(--primary-white);
}
.bg-section{
    background: #f7f8f9;
    border-radius: 30px;
    padding: 60px 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-red);
    font-size: 2rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-check {
    color: #28a745;
    font-size: 1.5rem;
    margin-left: 10px;
}

/* FAQ Section */
.faq-question:focus{
    outline: none;
}
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-item {
    background-color: var(--primary-white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    background-color: var(--primary-white);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-answer {
    padding: 15px 30px 25px;
    color: var(--text-light);
    display: none;
}

/* App Section */
.app-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.app-content {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f1f3f4 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
}

.app-title {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-description {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.app-stats {
    color: var(--text-light);
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-button {
    display: inline-block;
}

.app-button img {
    height: 50px;
    transition: transform 0.3s ease;
}

.app-button:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--primary-red);
    color: var(--primary-white);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-links-nav {
    margin-bottom: 25px;
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav-links a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-nav-links a:hover {
    opacity: 0.8;
    color: var(--primary-white);
    text-decoration: none;
}

.footer-social {
    margin-bottom: 30px;
}

.social-network {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-network .item {
    display: inline-block;
}

.social-network .item a {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.social-network .item a:hover {
    background-color: rgba(255,255,255,0.2);
    color: var(--primary-white);
}

.footer-description {
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

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

.footer-text a {
    color: var(--primary-white);
    text-decoration: underline;
}

.footer-text a:hover {
    color: var(--primary-white);
    opacity: 0.8;
}

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

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

/* Responsive */
@media (max-width: 768px) {
    h1{
        font-size: 1.6rem;
    }
    .container{
        width: 96%;
        margin: auto;
        max-width: 100% !important;
    }

    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle{
        font-size: 1rem;
    }
    .width-80{
        width: 100%;
    }
    .group-section-download{
        flex-direction: column;
    }

    .download-container {
        padding: 10px 10px;
        margin: 0 5px;
    }
    .url-input{
        width: 100%;
    }
    .btn-paste{
        font-size: 0.9rem;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        min-width: 100px;
        position: absolute;
        right: 5px;
        width: 35px !important;
        top: 6px;
        padding: 5px 15px;
    }
    .btt-download{
        width: 100%;
        margin-top: 15px;
    }
    .btn-download{
        max-width: 100%;
    }

    .url-input-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-paste {
        width: 100%;
        justify-content: center;
    }

    .app-content {
        padding: 40px 20px;
    }

    .footer-nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-description {
        padding: 0 20px;
    }

    .footer-text p {
        font-size: 12px;
    }
}

/* AJAX Loading and Error Styles */
.spinner-icon {
    display: inline-block;
    margin-left: 10px;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: left;
}

.error-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.error-desc {
    font-size: 14px;
    color: #856404;
}

.media-loaded {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.download-another {
    margin-top: 20px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-another:hover {
    background-color: #c5001e;
    color: var(--primary-white);
}

/* Button loading state */
.btn-download .spinner-icon {
    display: none;
}

.btn-download.loading .button-label {
    display: none;
}

.btn-download.loading .spinner-icon {
    display: inline-block;
}
.thumbnail-container{
    text-align: center;
}
.thumbnail-img{
    width: 200px !important;
    margin: auto !important;
}
#ajax-response-container{
    background: #f8f9fa;
    padding-bottom: 100px;
}
/*..media-card{*/
/*    box-shadow: unset;*/
/*    border-radius: 0;*/
/*    background: transparent;*/
/*}*/

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    color: var(--primary-white);
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-form-container {
    background-color: var(--primary-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.required {
    color: var(--primary-red);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fafafa;
    margin-bottom: 20px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: var(--primary-white);
    box-shadow: 0 0 0 0.2rem rgba(230, 0, 35, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background-color: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background-color: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 0, 35, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.contact-info {
    background-color: var(--primary-white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info-title {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-item-content p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.contact-faq-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.contact-faq-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-faq-title {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 40px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .contact-info {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item-icon {
        margin: 0 auto 15px;
    }

    .contact-faq-section {
        padding: 60px 0;
    }

    .contact-faq-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* Multiple Download Styles */
.multiple-download .download-container {
    max-width: 900px;
    margin: 0 auto;
}
#get_video{
    width: 100%;
    flex-direction: column;
}
.multiple-url-input-group {
    width: 100%;
    margin-bottom: 30px;
}

.multiple-input-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.multiple-url-input {
    width: 100%;
    padding: 20px;
    border: 3px solid var(--border-light);
    border-radius: 15px;
    font-size: 16px;
    line-height: 1.5;
    resize: vertical;
    min-height: 120px;
    background-color: #fafafa;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.multiple-url-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: var(--primary-white);
    box-shadow: 0 0 0 0.2rem rgba(230, 0, 35, 0.1);
}

.multiple-url-input::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

.multiple-input-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.btn-paste-multiple,
.btn-clear-multiple {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-paste-multiple:hover {
    background-color: var(--primary-red);
    color: var(--primary-white);
    border-color: var(--primary-red);
}

.btn-clear-multiple:hover {
    background-color: #dc3545;
    color: var(--primary-white);
    border-color: #dc3545;
}

.multiple-help-text {
    margin-top: 15px;
    text-align: center;
}

.multiple-help-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.multiple-help-text i {
    color: var(--primary-red);
}

.alert-box .notification {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

/* Multiple Download Responsive */
@media (max-width: 768px) {
    .multiple-download .download-container {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .multiple-url-input {
        padding: 15px;
        font-size: 14px;
        min-height: 100px;
    }

    .multiple-input-actions {
        position: static;
        justify-content: center;
        margin-top: 15px;
    }

    .multiple-help-text p {
        font-size: 12px;
        flex-direction: column;
        gap: 5px;
    }
}

/* Alert Messages for Multiple Download */
.alert-box .notification {
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

.alert-box .notification.is-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.alert-box .notification.is-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-box .notification.is-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-box .notification::before {
    content: "⚠️";
    font-size: 16px;
}

.alert-box .notification.is-danger::before {
    content: "❌";
}

.alert-box .notification.is-success::before {
    content: "✅";
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress and Loading States */
.progress-url {
    margin-top: 20px;
    text-align: center;
}

.progress-url .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.btn:hover{
    color: #fff;
}

.download-another{
    background-color: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
    margin-top: 0;
}

/* Download Options Styles */
.download-options-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.download-container-1 {
    flex: 1;
    text-decoration: none;
}

.download-button {
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-button.primary {
    background: #e60023;
    color: white;
}

.download-button.secondary {
    background: transparent;
    color: #e60023;
    border: 2px solid #e60023;
}

.download-button svg {
    margin-right: 8px;
}

.download-another-container {
    text-align: center;
    margin-bottom: 15px;
}

.download-another-container.single-row {
    flex: 1;
}

.download-another-container.single-row .download-another {
    width: 100%;
    height: 100%;
}

.download-another i {
    margin-right: 8px;
}

/* Social Share Styles */
.social-share-section {
    text-align: center;
    margin-top: 20px;
}

.social-share-title {
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.whatsapp { background: #25D366; }
.social-btn.facebook { background: #1877F2; }
.social-btn.messenger { background: #00B2FF; }
.social-btn.twitter { background: #1DA1F2; }
.social-btn.vk { background: #4680C2; }
.social-btn.copy { background: #6c757d; }

.social-btn i {
    font-size: 24px;
}

.social-btn.copy i {
    font-size: 20px;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.box-report{
    box-shadow: 0px 0px 7px 2px #e2e2e2;
}
