body {
    margin: 0;
    background: #0a0a0c;
    color: #e9e9e9;
    font-family: 'Poppins', sans-serif;
}

header {
    padding: 25px 0;
    text-align: center;
    background: #0d0d10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

h1 {
    color: #ff3b8d;
    font-size: 28px;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.hero {
    margin-top: 35px;
    text-align: center;
    padding: 45px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 59, 141, 0.12), rgba(76, 212, 255, 0.12));
    backdrop-filter: blur(8px);
}

.hero img {
    width: 100%;
    max-width: 720px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(255, 59, 141, 0.18);
    margin-bottom: 25px;
}

.hero h2 {
    color: #4cd4ff;
    font-size: 26px;
    margin-bottom: 10px;
}

.hero p {
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
}

.btn-main {
    background: #ff3b8d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 17px;
    text-decoration: none;
    margin-top: 25px;
    display: inline-block;
    transition: 0.3s;
}

.btn-main:hover {
    background: #ff539e;
}

.section-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px 22px;
    border-radius: 18px;
    margin-top: 30px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
}

.section-card h2 {
    color: #ff3b8d;
    margin-bottom: 10px;
}

.section-card p {
    line-height: 1.8;
}

footer {
    margin-top: 40px;
    text-align: center;
    padding: 25px 0;
    background: #0d0d10;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: #999;
}

.site-header {
    padding: 20px 0;
    background: #0d0d10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 55px;
    width: auto;
    object-fit: contain;
     background-color: #ff3b8d;
}

.site-header h1 {
    color: #ff3b8d;
    font-size: 26px;
    margin: 0;
    flex: 1;
}

@media(max-width:600px){
    .site-header h1{
        font-size:20px;
        line-height:1.4;
    }
    .logo{
        height:42px;
    }
}
