*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:linear-gradient(135deg,#bee728,hsl(27,100%,51%));
    min-height:100vh;
    font-family:'Kufam',sans-serif;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

/* البطاقة الرئيسية */
.background_bp4{
    width:90%;
    max-width:1000px;
    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(12px);

    border-radius:30px;
    padding:40px 30px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.15);
}

/* دوائر الخلفية */
.circle{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
}

.circle1{
    width:180px;
    height:180px;
    top:-50px;
    right:-50px;
}

.circle2{
    width:120px;
    height:120px;
    bottom:-30px;
    left:-30px;
}

/* العنوان */
.h1{
    text-align:center;
    color:#ff0404;

    font-size:42px;

    margin-bottom:40px;

    text-shadow:
    2px 2px 5px rgba(0,0,0,0.2);

    position:relative;
    z-index:2;
}

/* بطاقة المقولة */
.quote-card{
    position:relative;
    z-index:2;

    background:rgba(255,255,255,0.9);

    border-radius:25px;

    padding:50px 30px;

    text-align:center;

    box-shadow:
    0 8px 20px rgba(0,0,0,0.12);
}

/* رمز الاقتباس */
.quote-icon{
    font-size:60px;
    color:#ff9900;
    margin-bottom:20px;
}

/* نص المقولة */
.quote-text{
    font-size:32px;

    line-height:1.9;

    color:#333;
}

/* الكاتب */
.quote-author{
    display:block;

    margin-top:30px;

    color:#666;

    font-size:22px;
}

/* القلب */
.footer-icon{
    text-align:center;

    margin-top:30px;

    font-size:30px;

    position:relative;
    z-index:2;
}

/* الهواتف */
@media (max-width:768px){

    body{
        padding:15px;
    }

    .background_bp4{
        width:100%;
        padding:25px 20px;
    }

    .h1{
        font-size:32px;
        margin-bottom:30px;
    }

    .quote-card{
        padding:35px 20px;
    }

    .quote-icon{
        font-size:45px;
    }

    .quote-text{
        font-size:22px;
        line-height:1.8;
    }

    .quote-author{
        font-size:18px;
    }

    .circle1{
        width:120px;
        height:120px;
    }

    .circle2{
        width:80px;
        height:80px;
    }

    .footer-icon{
        font-size:25px;
    }
}
