/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background: #0a0b14;
    color: #ffffff;
    overflow-x: hidden;
}
/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.25);
    z-index: 1000;
}
.navbar .logo {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #3ba9ff, #934dff);
    -webkit-background-clip: text;
    color: transparent;
}
.navbar nav a {
    margin-left: 25px;
    color: #bfc1d7;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}
.navbar nav a:hover {
    color: #ffffff;
}
.brand-mark {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(90deg, #3ba9ff, #934dff);
    -webkit-background-clip: text;
    color: transparent;
}
/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 12%;
    position: relative;
}
.hero-content {
    max-width: 550px;
    z-index: 2;
}
.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero p {
    font-size: 18px;
    color: #c9cad8;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(90deg, #3ba9ff, #934dff);
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}
.btn-primary:hover {
    opacity: 0.85;
}
/* SECTION TITLE */
.section-title {
    font-size: 40px;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #3ba9ff, #934dff);
    -webkit-background-clip: text;
    color: transparent;
}
/* APPS SECTION */
.apps-section {
    padding: 120px 10%;
    text-align: center;
}
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}
.app-card {
    background: rgba(255,255,255,0.04);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}
.app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 25px rgba(65,105,230,0.25);
}
.app-image {
    height: 170px;
    border-radius: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #0e111f;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}
.iptv-bg { background-image: url("atlasiptv.png"), radial-gradient(circle at 25% 25%, rgba(59,169,255,0.22), transparent 55%), radial-gradient(circle at 80% 65%, rgba(147,77,255,0.18), transparent 50%); }
.afghan-bg { background-image: url("afghan.png"), radial-gradient(circle at 25% 25%, rgba(59,169,255,0.22), transparent 55%), radial-gradient(circle at 80% 65%, rgba(147,77,255,0.18), transparent 50%); }
.persian-bg { background-image: url("persian.png"), radial-gradient(circle at 25% 25%, rgba(59,169,255,0.22), transparent 55%), radial-gradient(circle at 80% 65%, rgba(147,77,255,0.18), transparent 50%); }
.turkish-bg { background-image: url("turkish.png"), radial-gradient(circle at 25% 25%, rgba(59,169,255,0.22), transparent 55%), radial-gradient(circle at 80% 65%, rgba(147,77,255,0.18), transparent 50%); }
.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}
/* ABOUT */
.about-section {
    padding: 120px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    align-items: center;
    position: relative;
}
.about-section::after {
    content: "";
    position: absolute;
    inset: 20% 10% auto;
    height: 60%;
    background: radial-gradient(circle at 30% 30%, rgba(59,169,255,0.16), transparent 55%),
                radial-gradient(circle at 80% 60%, rgba(147,77,255,0.12), transparent 45%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}
.about-copy {
    position: relative;
    z-index: 1;
}
.about-text {
    color: #c9cad8;
    line-height: 1.65;
    font-size: 17px;
}
.about-text.lead {
    font-size: 18px;
    color: #e8eaf7;
    margin-bottom: 22px;
}
.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.about-pill {
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #d6d8e5;
    font-size: 14px;
}
.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}
.about-card {
    background: linear-gradient(145deg, rgba(59,169,255,0.16), rgba(147,77,255,0.1));
    border: 1px solid rgba(255,255,255,0.1);
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.about-card h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 19px;
}
.about-card p {
    color: #d6d8e5;
    font-size: 15px;
    line-height: 1.5;
}
.about-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.metric {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #e8eaf7;
    font-weight: 600;
    font-size: 16px;
}
.metric span {
    display: block;
    color: #9ca0b8;
    font-weight: 400;
    font-size: 13px;
    margin-top: 4px;
}
/* APP DETAIL */
.app-detail {
    padding: 120px 10%;
    max-width: 1100px;
    margin: 0 auto;
}
.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.app-identity {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(59,169,255,0.18), rgba(147,77,255,0.14));
    border: 1px solid rgba(255,255,255,0.14);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}
.app-icon img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}
.back-link {
    color: #bfc1d7;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 12px;
    transition: 0.2s;
}
.back-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.feature-list {
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.feature-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    color: #d6d8e5;
    line-height: 1.5;
}
.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}
/* CONTACT */
.contact-section {
    padding: 100px 10%;
    text-align: center;
}
.contact-text {
    color: #c9cad8;
    font-size: 17px;
    margin-bottom: 25px;
}
/* FOOTER */
.footer {
    text-align: center;
    padding: 25px;
    background: rgba(0,0,0,0.3);
    margin-top: 60px;
    color: #8c8fa6;
}
