* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}
body {
    background: linear-gradient(135deg, #e60000, #7b2ff7, #00c6ff);
    min-height: 100vh;
    color: #fff;
}
header {
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
a{
    text-decoration: none;
    color: #fff;
}
header a h1 {
    font-size: 28px;
    font-weight: 700;
}
header button {
    background: #fff;
    color: #e60000;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
header button:hover {
    transform: scale(1.05);
}
.hero {
    text-align: center;
    padding: 80px 8% 50px;
}
.hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}
.hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: auto;
}
.video-section {
    padding: 60px 8%;
    display: flex;
    justify-content: center;
}
.video-box {
    width: 100%;
    max-width: 900px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.video-box iframe,
.video-box video {
    width: 100%;
    height: 480px;
    border-radius: 15px;
    border: none;
}
.posts {
    padding: 70px 8%;
}
.posts h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.post-card {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.post-card:hover {
    transform: translateY(-8px);
}
.post-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.post-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}
.post-image {
    width: 120px;      
    height: 120px;
    object-fit: contain;
    display: block;    
    margin: 0 auto 20px; 
    border-radius: 30px;
    background: rgba(255,255,255,0.25);
    padding: 18px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
    transition: 0.3s ease;
}
.post-card:hover .post-image {
    transform: scale(2.12) rotate(3deg);
    border-radius: 0%;
}
footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    opacity: 0.8;
}