/*
Theme Name: Ultra Video CTA Light
Theme URI: https://thesimpleshopping.com
Author: Custom High-CR Light Theme
Description: قالب ووردبريس فاتح، نظيف، وفخم جداً مخصص لمراجعات منتجات كليك بانك لتحقيق أعلى معدل تحويل وثقة للزائر الأمريكي.
Version: 2.1.0
*/

/* --- CSS Reset & Global Vars --- */
:root {
    --primary-color: #16a34a;       /* أخضر مريح وموثوق للتسوق */
    --primary-hover: #15803d;
    --accent-blue: #2563eb;
    --bg-color: #f8fafc;            /* خلفية فاتحة للغاية */
    --card-bg: #ffffff;             /* بطاقة بيضاء ناصعة */
    --text-main: #0f172a;           /* نص داكن واضح */
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --container-width: 840px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Header --- */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
    text-align: center;
}

.site-logo span {
    color: var(--accent-blue);
}

/* --- Main Layout --- */
.main-wrapper {
    max-width: var(--container-width);
    margin: 35px auto 60px auto;
    padding: 0 15px;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

/* --- Post Title --- */
.post-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 22px;
}

@media (min-width: 640px) {
    .post-title {
        font-size: 32px;
    }
}

/* --- Video Container --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000000;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px !important;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* --- CTA Styling --- */
.entry-content {
    text-align: center;
}

.entry-content p a {
    display: inline-block !important;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    padding: 18px 32px !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.25) !important;
    transition: all 0.2s ease-in-out !important;
    border: 1px solid #15803d !important;
    margin-top: 10px;
}

.entry-content p a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(22, 163, 74, 0.35) !important;
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%) !important;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
}

/* --- Trust / Guarantee Grid --- */
.guarantee-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.guarantee-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 30px 15px;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    background: #ffffff;
}