.elementor-4560 .elementor-element.elementor-element-cb537d2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7b7cc65 *//* تصميم مميز للمقارنة: أزرق/أحمر (أزرق لـLG، أحمر لـSamsung) مع رمادي للتوازن */
:root {
    --lg-color: #3498db; /* أزرق لإل جي */
    --samsung-color: #e74c3c; /* أحمر لسامسونج */
    --neutral-color: #34495e; /* رمادي للعناوين */
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); /* خلفية محايدة */
    --card-bg: rgba(255,255,255,0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Cairo', sans-serif; 
    line-height: 1.8; 
    color: var(--neutral-color); 
    background: var(--bg-gradient);}
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Breadcrumb */
.breadcrumb { 
    background: rgba(255,255,255,0.9); 
    padding: 15px 25px; 
    border-radius: 12px; 
    margin-bottom: 25px; 
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.1);
}
.breadcrumb a { color: var(--samsung-color); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* Content Card */
.content-card { 
    background: var(--card-bg); 
    margin: 30px 0; 
    border-radius: 20px; 
    padding: 40px; 
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
}
.content-card::before {
    content: '';    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--lg-color), var(--samsung-color));
}

h1 { 
    color: var(--neutral-color); 
    font-size: 3.2em; 
    text-align: center; 
    margin-bottom: 30px; 
    font-weight: 700;
    background: linear-gradient(45deg, var(--lg-color), var(--samsung-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--lg-color), var(--samsung-color));
    border-radius: 2px;
}

h2 { 
    color: var(--neutral-color); 
    font-size: 2.2em; 
    margin: 40px 0 20px; 
    position: relative;
    padding-right: 30px;
    display: flex;
    align-items: center;
}
h2::before {
    content: '❄️';
    margin-left: 15px;
    font-size: 1.2em;
}

h3 { 
    color: var(--lg-color); 
    font-size: 1.6em; 
    margin: 25px 0 15px; 
    display: flex;
    align-items: center;
}
h3::before {
    content: '▶️';
    margin-left: 10px;
    font-size: 0.8em;
}
h3.samsung {
    color: var(--samsung-color);
}

.keywords { display: none; } /* مخفية */

/* AdSense */
.adsense { 
    background: linear-gradient(135deg, #f8f9fa, #e9ecef); 
    border: 3px dashed var(--lg-color); 
    text-align: center; 
    padding: 50px 20px; 
    margin: 40px 0; 
    border-radius: 15px; 
    font-size: 1.2em; 
    color: #7f8c8d;
    position: relative;
}
.adsense::before {
    content: 'إعلان جوجل أدسينس';
    position: absolute;
    top: 10px;
    right: 15px;
    background: var(--lg-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
}

/* Tables - مقارنة */
.comparison-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin: 30px 0; 
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
}
.comparison-table th { 
    background: linear-gradient(135deg, var(--lg-color), var(--samsung-color)); 
    color: white; 
    padding: 18px; 
    font-weight: 600;
    text-align: center;
}
.comparison-table td { 
    padding: 15px; 
    border-bottom: 1px solid #ecf0f1; 
    text-align: center;
    transition: background 0.3s ease;
}
.comparison-table tr:hover td { 
    background: #f8f9fa; 
}
.lg-col { background: rgba(52, 152, 219, 0.1); }
.samsung-col { background: rgba(231, 76, 60, 0.1); }

/* Lists */
ul { padding-right: 25px; margin: 15px 0; }
ul li { 
    margin: 8px 0; 
    position: relative; 
    padding-right: 25px;
    list-style: none;
}
ul li::before { 
    content: '/* تم تصحيح هذا الرمز */
    position: absolute; 
    right: -20px; 
    font-size: 1.1em;
}
ul.lg-list li::before { content: '🔵'; color: var(--lg-color); }
ul.samsung-list li::before { content: '🔴'; color: var(--samsung-color); }

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
    border: 2px solid var(--samsung-color);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
}
.warning-box::before {
    content: '⚠️';
    font-size: 1.5em;
    margin-left: 10px;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #e6f3ff, #cce7ff);
    border: 2px solid var(--lg-color);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
}
.info-box::before {
    content: '📌';    font-size: 1.5em;
    margin-left: 10px;
}

/* FAQ */
.faq-item { 
    background: #f8f9fa;     padding: 20px; 
    margin: 15px 0; 
    border-radius: 12px; 
    border-right: 5px solid var(--lg-color);
    transition: all 0.3s ease;
}
.faq-item:hover { 
    background: #ffffff; 
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.1);
}
.faq-question { 
    color: var(--neutral-color); 
    font-weight: 700; 
    font-size: 1.1em;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;    justify-content: space-between;
    align-items: center;
}
.faq-answer { 
    color: #34495e; 
    line-height: 1.6;
    display: none;
}
.faq-item.active .faq-answer { display: block; }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* مقارنة تفاعلية - أزرار للتبديل */
.comparison-toggle {
    text-align: center;
    margin: 20px 0;
}
.toggle-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.toggle-btn.lg {
    background: var(--lg-color);
    color: white;
}
.toggle-btn.samsung {
    background: var(--samsung-color);
    color: white;
}
.toggle-btn.active {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.comparison-section {
    display: none;
}
.comparison-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Related Posts */
.related { 
    background: linear-gradient(135deg, #e6f3ff, #cce7ff); 
    padding: 30px; 
    border-radius: 15px; 
    margin: 40px 0; 
}
.related h3 { 
    color: var(--neutral-color); 
    text-align: center; 
    margin-bottom: 20px;
}
.related ul { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; 
    list-style: none; 
}
.related li a { 
    display: block; 
    padding: 15px; 
    background: white; 
    border-radius: 10px; 
    text-decoration: none; 
    color: var(--lg-color); 
    font-weight: 600; 
    text-align: center;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.1); 
    transition: all 0.3s ease;
}
.related li a:hover { 
    transform: translateY(-3px); 
    color: var(--samsung-color); 
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.15);
}

/* Sections */
.sections { 
    background: linear-gradient(135deg, #f8f9fa, #e9ecef); 
    padding: 30px; 
    border-radius: 15px; 
    margin: 40px 0; 
}
.sections h3 { 
    color: var(--lg-color); 
    text-align: center; 
    margin-bottom: 20px;
}
.sections ul { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    list-style: none; 
}
.sections li a { 
    padding: 12px 20px; 
    background: linear-gradient(45deg, var(--lg-color), var(--samsung-color)); 
    color: white; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s ease;
}
.sections li a:hover { 
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Keywords Box */
.keywords-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed var(--lg-color);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}
.keywords-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.keyword-tag {
    background: linear-gradient(45deg, var(--lg-color), var(--samsung-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.keyword-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
    transition: transform 0.3s ease;
}
img:hover {
    transform: scale(1.02);
}

/* Expert Quote */
.expert-quote {
    background-color: #f8f9fa;
    border-left: 5px solid var(--lg-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.05);
    transition: box-shadow 0.3s ease;
}
.expert-quote:hover {
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}
.expert-quote p { margin-bottom: 5px; }
.expert-quote .expert-name { font-weight: bold; color: var(--samsung-color); }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 1.8em; }
    .content-card { padding: 25px; }
    .comparison-table { font-size: 0.9em; }
    .related ul { grid-template-columns: 1fr; }
    .keywords-list { gap: 8px; }
    .keyword-tag { font-size: 0.8em; padding: 6px 12px; }
    .adsense { padding: 30px 10px; font-size: 1em; }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--lg-color), var(--samsung-color));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}/* End custom CSS */