/*
Theme Name: My Elementor Theme
Author: Your Name
Description: A simple theme built for Elementor.
Version: 1.0
Text Domain: my-elementor-theme
*/

/* --- FINAL DPBOSS STYLE HEADER & BANNER --- */

/* 1. कॉमन कंटेनर सेटिंग्स - इसे 100% करने के लिए */
.satta-wrapper, .banner-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 5px; /* कोनों पर हल्का गैप जैसा LIVE RESULT में है */
    box-sizing: border-box;
    margin-top: 8px;
}

/* 2. मुख्य हेडर (SATTA MATKA FAST.COM) */
.satta-3d-box {
    background-color: #ffc0cb; 
    border: 2px solid #ff0000; 
    border-radius: 8px;
    width: 100%; /* पूरी चौड़ाई */
    padding: 12px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.satta-3d-box h1 {
    margin: 0;
    font-weight: 900;
    font-size: clamp(20px, 6vw, 32px);
    text-transform: uppercase;
    display: flex;
    flex-wrap: nowrap;
}

.dp-style {
    color: #FF01A2; 
    margin-right: 8px;
}

.boss-style {
    color: #000; 
}

/* 3. बैनर बॉक्स (भगवान की फोटो और टेक्स्ट) */
.banner-box {
    width: 100%;
    background: #ffcb99;
    border: 2px solid #ff0000;
    border-radius: 8px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 90px;
}

/* फोटो वाला हिस्सा - मोबाइल और लैपटॉप दोनों के लिए सेट */
.banner-img {
    flex: 0 0 110px; /* लैपटॉप के लिए जगह */
    background: transparent;
    border-right: 2px solid #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.banner-img img {
    max-width: 100%;
    max-height: 85px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* टेक्स्ट वाला हिस्सा - साइज को संतुलित किया गया है */
.banner-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-weight: bold;
    font-size: clamp(14px, 4vw, 16px); /* लैपटॉप पर मीडियम साइज */
    color: #000;
    text-align: center;
    line-height: 1.3;
}

/* --- मोबाइल के लिए खास एडजस्टमेंट (Responsive) --- */
@media screen and (max-width: 600px) {
    .banner-box {
        min-height: 75px; 
    }

    .banner-img {
        flex: 0 0 90px; /* मोबाइल पर फोटो के लिए सही चौड़ाई */
        padding: 2px;
    }

    .banner-img img {
        max-height: 70px; /* मोबाइल पर फोटो 'फुल' दिखेगी */
        width: 100%;
    }

    .banner-text {
        font-size: 13px; /* मोबाइल पर टेक्स्ट साफ़ और छोटा */
        padding: 5px;
        line-height: 1.2;
    }
}








.seo-wrapper { 
    width: 100%; 
    padding: 0 5px; 
    margin-top: 10px; 
    box-sizing: border-box; 
}

.seo-box { 
    background: #ffff00; /* पीला रंग */
    border: 2px solid #000; 
    border-radius: 8px; 
    padding: 8px 5px; /* जगह कम की ताकि फैले नहीं */
    text-align: center;
}

.seo-title { 
    font-size: 16px; /* मोबाइल के लिए सही साइज */
    font-weight: bold; 
    color: #000; 
    margin: 0 0 5px 0;
    text-decoration: underline;
}

.seo-text { 
    font-size: 11px; /* छोटा साइज ताकि कम जगह घेरे */
    font-style: italic; 
    color: #000; 
    line-height: 1.3; /* लाइनों के बीच की दूरी कम की */
    margin: 0;
    font-weight: 600;
}

