/* Font Face Declarations */
@font-face {
    font-family: 'Tajawal';
    src: url('/fonts/Tajawal-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('/fonts/Tajawal-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background-color: #0A0A0A;
    color: #D9D9E1;
}

/* Header Menu */
.header-menu {
    background-color: #0A0A0A;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #D9D9E1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.nav-link:hover {
    color: #C21827;
}

@media screen and (max-width: 768px) {
    .nav-list {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #0A0A0A;
    contain: content;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    contain: layout;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    will-change: transform;
    contain: layout;
    content-visibility: auto;
}

.hero-title {
    color: #D9D9E1;
    font-size: 2.5rem;
    margin: 0 0 20px;
    line-height: 1.2;
    font-weight: 700;
    contain: content;
    text-wrap: balance;
}

.hero-subtitle {
    color: #7A7A7A;
    font-size: 1.25rem;
    margin: 0 0 30px;
    line-height: 1.5;
    font-weight: 400;
}

.cta-button {
    background-color: #C21827;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    margin-bottom: 40px;
}

.cta-button:hover {
    background-color: #A01420;
}

.benefits-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.benefits-list li {
    color: #7A7A7A;
    font-size: 16px;
}

/* Disclaimer Section Styles */
.disclaimer-section {
    background-color: #0B0B0B;
    padding: 40px 20px;
}

.disclaimer-container {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-title {
    color: #C21827;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.disclaimer-content {
    background: linear-gradient(145deg, rgba(194, 24, 39, 0.1), rgba(26, 26, 26, 0.9));
    border: 1px solid rgba(194, 24, 39, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(194, 24, 39, 0.15);
}

.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.disclaimer-list li {
    color: #D9D9E1;
    font-size: 16px;
    line-height: 1.6;
    padding-right: 25px;
    position: relative;
}

.disclaimer-list li::before {
    content: "⚠️";
    position: absolute;
    right: 0;
    top: 2px;
}

/* Video Comparison Section */
.comparison-section {
    padding: 40px 20px;
    background-color: #0A0A0A;
}

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-title {
    color: #D9D9E1;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.comparison-subtitle {
    color: #7A7A7A;
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
}

.videos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.video-block {
    flex: 1;
    max-width: 480px;
    margin: 0 15px;
    text-align: center;
}

.video-label {
    color: #D9D9E1;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.comparison-video {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 9/16;
    background-color: #1A1A1A;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.callout-box {
    color: #D9D9E1;
    background: linear-gradient(145deg, rgba(194, 24, 39, 0.1), rgba(26, 26, 26, 0.9));
    border: 1px solid rgba(194, 24, 39, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 4px 20px rgba(194, 24, 39, 0.15),
                inset 0 1px 2px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.callout-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 12px;
    border: 1px solid rgba(194, 24, 39, 0.5);
    pointer-events: none;
}

/* Benefits Section Styles */
.benefits-section {
    background-color: #1A1A1A;
    padding: 40px 20px;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    color: #D9D9E1;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.benefits-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-block {
    background-color: #222;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-block:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    color: #C21827;
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-title {
    color: #D9D9E1;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-description {
    color: #7A7A7A;
    font-size: 16px;
    line-height: 1.6;
}

/* Results Section Styles */
.results-section {
    background-color: #161616;
    padding: 40px 20px;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.results-title {
    color: #D9D9E1;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-card {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.creator-link {
    color: #D9D9E1;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 24px;
    transition: color 0.3s ease;
    text-align: center;
}

.creator-link:hover {
    color: #C21827;
}

.comparison-images {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.image-block {
    flex: 0 0 256px;
    width: 256px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 4px;
}

.image-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #C21827;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
}

.result-image {
    width: 256px;
    height: 340px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
    display: block;
}

.views-count {
    color: #7A7A7A;
    font-size: 16px;
    display: block;
    text-align: center;
    font-weight: 500;
}

.results-disclaimer {
    color: #D9D9E1;
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.6;
    padding: 20px;
    background-color: rgba(194, 24, 39, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(194, 24, 39, 0.2);
}

/* Features Section Styles */
.features-section {
    background-color: #1A1A1A;
    padding: 40px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    color: #D9D9E1;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.features-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-row {
    background-color: #222;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-row:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-icon {
    color: #C21827;
    font-size: 48px;
}

.feature-content {
    flex-grow: 1;
}

.feature-title {
    color: #D9D9E1;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-description {
    color: #7A7A7A;
    font-size: 16px;
    line-height: 1.6;
}

.feature-number {
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #C21827;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.has-ribbon .feature-number {
    top: 40px;
}

/* Ribbon Styles */
.has-ribbon {
    padding-top: 40px;
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #C21827;
    color: white;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    padding: 5px 40px;
    font-size: 14px;
    transform: rotate(45deg);
    transform-origin: center;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

/* Pricing Section Styles */
.pricing-section {
    background-color: #101010;
    padding: 40px 20px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-title {
    color: #D9D9E1;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: #D9D9E1;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    color: #C21827;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-description {
    color: #7A7A7A;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: right;
}

.pricing-card .features-list li {
    color: #D9D9E1;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .features-list li:last-child {
    border-bottom: none;
}

.buy-button {
    display: inline-block;
    background-color: #C21827;
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #A01420;
}

/* FAQ Section Styles */
.faq-section {
    background-color: #0E0E0E;
    padding: 40px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    color: #D9D9E1;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #1A1A1A;
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    color: #D9D9E1;
    font-size: 20px;
    font-weight: 700;
    padding: 16px;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: right;
}

.faq-question::after {
    content: "+";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #C21827;
    transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question::after {
    content: "–";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 16px;
    color: #7A7A7A;
    font-size: 18px;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 16px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0 16px 16px 0;
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
}

.faq-answer li::before {
    content: "•";
    position: absolute;
    right: -16px;
    color: #C21827;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 16px 16px;
}

/* Footer Section Styles */
.footer-section {
    background-color: #000000;
    padding: 30px 20px 20px;
    color: #7A7A7A;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-link {
    color: #7A7A7A;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #D9D9E1;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.social-link {
    color: #7A7A7A;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #C21827;
}

.footer-copyright {
    color: #7A7A7A;
    font-size: 14px;
    text-align: center;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-link {
        font-size: 14px;
    }

    .social-icons {
        gap: 15px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-section,
    .disclaimer-section,
    .comparison-section,
    .benefits-section,
    .results-section,
    .features-section,
    .pricing-section,
    .faq-section {
        padding: 30px 20px;
    }

    .hero-title,
    .disclaimer-title,
    .comparison-title,
    .benefits-title,
    .results-title,
    .features-title,
    .pricing-title,
    .faq-title {
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 18px;
    }

    .benefits-list {
        flex-direction: column;
        gap: 15px;
    }

    .benefits-container {
        flex-direction: column;
        gap: 40px;
    }

    .benefit-block {
        padding: 20px 10px;
    }

    .benefit-icon {
        font-size: 36px;
    }

    .benefit-title {
        font-size: 18px;
    }

    .benefit-description {
        font-size: 14px;
    }

    .comparison-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .comparison-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .videos-container {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .video-block {
        margin: 0 auto 30px;
        width: 100%;
    }

    .videos-container {
        gap: 15px;
    }
    
    .comparison-video {
        max-width: 100%;
    }

    .callout-box {
        font-size: 14px;
        padding: 20px;
    }

    .features-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .feature-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
        padding-top: 35px;
        gap: 20px;
    }

    .ribbon {
        top: 15px;
        right: -40px;
        padding: 4px 40px;
        font-size: 12px;
    }

    .feature-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }

    .benefits-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .benefits-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-block {
        padding: 30px 20px;
    }

    .disclaimer-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .disclaimer-content {
        padding: 15px;
    }

    .disclaimer-list {
        gap: 12px;
    }

    .disclaimer-list li {
        font-size: 14px;
        padding-right: 22px;
    }

    .results-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .comparison-images {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .image-block {
        width: 100%;
        max-width: 300px;
    }

    .result-image {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
    }

    .creator-link {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .image-label {
        top: 8px;
        right: 8px;
        font-size: 12px;
        padding: 3px 8px;
    }

    .views-count {
        font-size: 14px;
    }

    .results-disclaimer {
        font-size: 16px;
        margin-top: 30px;
        padding: 15px;
    }

    .pricing-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .card-title {
        font-size: 22px;
    }

    .price {
        font-size: 40px;
    }

    .price-description {
        font-size: 16px;
    }

    .pricing-card .features-list li {
        font-size: 16px;
        padding: 10px 0;
    }

    .buy-button {
        padding: 14px 30px;
        font-size: 18px;
        width: 100%;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 18px;
        padding: 14px;
    }

    .faq-answer {
        font-size: 16px;
    }

    .faq-question::after {
        left: 14px;
        font-size: 20px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 30px;
    }

    .feature-number {
        left: 15px;
        top: 15px;
        width: 20px;
        height: 20px;
        font-size: 12px;
        color: white;
    }

    .has-ribbon .feature-number {
        top: 35px;
    }
}

/* Policy Pages Styles */
.policy-section {
    background-color: #0A0A0A;
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.policy-title {
    color: #D9D9E1;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.policy-content {
    color: #D9D9E1;
}

.policy-block {
    margin-bottom: 30px;
    background-color: #1A1A1A;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.policy-block h2 {
    color: #C21827;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.policy-block p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-block ul {
    list-style-type: none;
    padding: 0;
}

.policy-block ul li {
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.policy-block ul li::before {
    content: "•";
    color: #C21827;
    position: absolute;
    right: 0;
    top: 0;
}

/* Responsive Styles for Policy Pages */
@media (max-width: 768px) {
    .policy-section {
        padding: 40px 15px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-block {
        padding: 15px;
    }

    .policy-block h2 {
        font-size: 1.3rem;
    }
} 