/*==================================================
DOWNLOADS PAGE
HAHA Multimedia IPTV
==================================================*/


/*==================================
DOWNLOAD HERO
==================================*/

.downloads-hero{

position:relative;

padding:150px 5% 110px;

overflow:hidden;

}

.downloads-hero::before{

content:"";

position:absolute;

inset:0;

background:

radial-gradient(circle at 15% 20%,rgba(0,212,255,.12),transparent 30%),

radial-gradient(circle at 80% 25%,rgba(123,61,255,.12),transparent 35%),

radial-gradient(circle at 50% 100%,rgba(255,45,149,.08),transparent 45%);

pointer-events:none;

z-index:0;

}

.downloads-hero .container{

position:relative;

z-index:2;

}

.hero-content{

max-width:900px;

margin:auto;

text-align:center;

}

.hero-badge{

display:inline-flex;

align-items:center;

justify-content:center;

padding:12px 30px;

border-radius:50px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

font-size:14px;

font-weight:800;

letter-spacing:2px;

margin-bottom:25px;

}

.downloads-hero h1{

font-size:clamp(48px,6vw,74px);

font-weight:900;

margin-bottom:25px;

background:linear-gradient(

90deg,

var(--blue),

var(--purple),

var(--pink)

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.downloads-hero p{

max-width:760px;

margin:auto;

font-size:20px;

line-height:2;

color:#d4d4d4;

}





/*==================================
DOWNLOADS SECTION
==================================*/

.downloads-section{

padding:120px 5%;

position:relative;

}

.apps-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

gap:35px;

margin-top:60px;

}





/*==================================
APP CARD
==================================*/

.app-card{

position:relative;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

overflow:hidden;

backdrop-filter:blur(20px);

transition:.35s;

display:flex;

flex-direction:column;

height:100%;

box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.app-card:hover{

transform:translateY(-12px);

border-color:var(--blue);

box-shadow:0 0 45px rgba(0,212,255,.25);

}





.featured{

border:2px solid var(--blue);

box-shadow:0 0 45px rgba(0,212,255,.25);

}

.featured-badge{

position:absolute;

top:20px;

left:50%;

transform:translateX(-50%);

padding:10px 26px;

border-radius:40px;

background:linear-gradient(

90deg,

var(--blue),

var(--purple)

);

font-size:14px;

font-weight:800;

color:#fff;

z-index:5;

}





.app-image{

height:240px;

overflow:hidden;

}

.app-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.app-card:hover .app-image img{

transform:scale(1.08);

}





.app-content{

padding:35px;

display:flex;

flex-direction:column;

flex:1;

}

.app-platform{

display:inline-flex;

align-items:center;

justify-content:center;

width:max-content;

padding:8px 18px;

border-radius:30px;

background:rgba(255,255,255,.06);

border:1px solid rgba(255,255,255,.08);

font-size:13px;

font-weight:700;

margin-bottom:18px;

}

.app-content h3{

font-size:30px;

font-weight:900;

margin-bottom:10px;

}

.app-version{

color:var(--blue);

font-size:18px;

font-weight:700;

margin-bottom:20px;

}





.app-info{

display:flex;

justify-content:space-between;

margin-bottom:25px;

padding-bottom:20px;

border-bottom:1px solid rgba(255,255,255,.08);

}

.app-info span{

font-size:15px;

color:#d5d5d5;

}





.app-features{

list-style:none;

padding:0;

margin:0 0 30px;

display:flex;

flex-direction:column;

gap:14px;

}

.app-features li{

padding:14px 18px;

border-radius:14px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.06);

color:#ddd;

transition:.3s;

}

.app-features li:hover{

background:rgba(0,212,255,.08);

border-color:var(--blue);

}





.download-btn{

margin-top:auto;

display:flex;

justify-content:center;

align-items:center;

height:58px;

border-radius:50px;

background:linear-gradient(

90deg,

var(--blue),

var(--purple)

);

color:#fff;

font-size:18px;

font-weight:800;

transition:.35s;

box-shadow:0 0 25px rgba(0,212,255,.20);

}

.download-btn:hover{

transform:translateY(-4px);

box-shadow:0 0 40px rgba(0,212,255,.35);

}
/*==================================================
IMPORTANT NOTICE
==================================================*/

.notice-section{

padding:120px 5%;

position:relative;

}

.notice-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:50px;

backdrop-filter:blur(20px);

}

.notice-card h2{

text-align:center;

font-size:42px;

font-weight:900;

margin-bottom:45px;

background:linear-gradient(

90deg,

var(--blue),

var(--purple)

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.notice-item{

padding:28px;

margin-bottom:25px;

border-radius:20px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.notice-item:last-child{

margin-bottom:0;

}

.notice-item:hover{

border-color:var(--blue);

background:rgba(0,212,255,.06);

transform:translateY(-6px);

}

.notice-item h3{

font-size:24px;

font-weight:800;

margin-bottom:15px;

color:var(--blue);

}

.notice-item p{

font-size:17px;

line-height:2;

color:#d8d8d8;

}





/*==================================================
DOWNLOADER CODES
==================================================*/

.downloader-section{

padding:120px 5%;

}

.codes-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:35px;

margin-top:60px;

}

.code-card{

position:relative;

text-align:center;

padding:40px 30px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:28px;

backdrop-filter:blur(18px);

transition:.35s;

overflow:hidden;

}

.code-card:hover{

transform:translateY(-10px);

border-color:var(--blue);

box-shadow:0 0 40px rgba(0,212,255,.25);

}

.code-card h3{

font-size:26px;

font-weight:900;

margin-bottom:30px;

color:#fff;

}

.code-number{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 40px;

border-radius:18px;

background:linear-gradient(

90deg,

var(--blue),

var(--purple)

);

font-size:34px;

font-weight:900;

letter-spacing:3px;

color:#fff;

box-shadow:0 0 30px rgba(0,212,255,.25);

}





/*==================================================
OFFICIAL WEBSITE
==================================================*/

.official-section{

padding:120px 5%;

}

.official-card{

max-width:900px;

margin:auto;

padding:60px 50px;

text-align:center;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:35px;

backdrop-filter:blur(18px);

}

.official-icon{

width:110px;

height:110px;

margin:auto;

margin-bottom:30px;

display:flex;

align-items:center;

justify-content:center;

font-size:55px;

border-radius:50%;

background:linear-gradient(

135deg,

var(--blue),

var(--purple)

);

box-shadow:0 0 35px rgba(0,212,255,.30);

}

.official-card h2{

font-size:40px;

font-weight:900;

margin-bottom:20px;

}

.official-card p{

max-width:700px;

margin:auto;

font-size:18px;

line-height:2;

color:#d4d4d4;

margin-bottom:35px;

}

.official-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 45px;

border-radius:50px;

background:linear-gradient(

90deg,

var(--blue),

var(--purple)

);

font-size:18px;

font-weight:800;

color:#fff;

transition:.35s;

box-shadow:0 0 25px rgba(0,212,255,.25);

}

.official-btn:hover{

transform:translateY(-5px);

box-shadow:0 0 40px rgba(0,212,255,.40);

}
/*==================================================
SECTION EFFECTS
==================================================*/

.downloads-hero,
.downloads-section,
.notice-section,
.downloader-section,
.official-section{

position:relative;

overflow:hidden;

}

.downloads-hero::after,
.downloads-section::after,
.notice-section::after,
.downloader-section::after,
.official-section::after{

content:"";

position:absolute;

width:420px;

height:420px;

border-radius:50%;

background:

radial-gradient(

circle,

rgba(0,212,255,.08),

transparent 70%

);

filter:blur(45px);

pointer-events:none;

z-index:0;

}

.downloads-hero::after{

top:-180px;

left:-150px;

}

.downloads-section::after{

bottom:-180px;

right:-150px;

}

.notice-section::after{

top:40%;

left:-180px;

}

.downloader-section::after{

bottom:-180px;

right:-180px;

}

.official-section::after{

top:-180px;

left:-180px;

}

.downloads-hero .container,
.downloads-section .container,
.notice-section .container,
.downloader-section .container,
.official-section .container{

position:relative;

z-index:2;

}





/*==================================================
SHINE EFFECT
==================================================*/

.app-card::before,
.code-card::before{

content:"";

position:absolute;

top:-150%;

left:-70%;

width:65%;

height:320%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.15),

transparent

);

transform:rotate(25deg);

transition:.9s;

pointer-events:none;

}

.app-card:hover::before,
.code-card:hover::before{

left:170%;

}





/*==================================================
ANIMATION
==================================================*/

.app-card,
.notice-item,
.code-card,
.official-card{

animation:fadeUp .8s ease both;

}

.app-card:nth-child(2){

animation-delay:.15s;

}

.app-card:nth-child(3){

animation-delay:.30s;

}

.code-card:nth-child(2){

animation-delay:.15s;

}

.code-card:nth-child(3){

animation-delay:.30s;

}





/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.apps-grid{

grid-template-columns:repeat(2,1fr);

}

.codes-grid{

grid-template-columns:repeat(2,1fr);

}

}





@media(max-width:768px){

.downloads-hero{

padding:100px 20px 80px;

}

.downloads-hero h1{

font-size:42px;

}

.downloads-hero p{

font-size:17px;

}

.apps-grid,

.codes-grid{

grid-template-columns:1fr;

}

.app-image{

height:220px;

}

.app-content{

padding:28px;

}

.notice-card{

padding:30px 20px;

}

.notice-card h2{

font-size:34px;

}

.notice-item{

padding:22px;

}

.code-card{

padding:30px 20px;

}

.code-number{

font-size:28px;

padding:16px 25px;

}

.official-card{

padding:40px 25px;

}

.official-card h2{

font-size:34px;

}

}





@media(max-width:480px){

.downloads-hero{

padding:80px 15px 60px;

}

.hero-badge{

font-size:12px;

padding:10px 20px;

}

.downloads-hero h1{

font-size:32px;

}

.downloads-hero p{

font-size:15px;

line-height:1.8;

}

.app-image{

height:200px;

}

.app-content h3{

font-size:24px;

}

.notice-card h2{

font-size:28px;

}

.notice-item h3{

font-size:20px;

}

.notice-item p{

font-size:15px;

}

.code-card h3{

font-size:22px;

}

.code-number{

font-size:22px;

letter-spacing:1px;

}

.official-icon{

width:90px;

height:90px;

font-size:42px;

}

.official-card h2{

font-size:28px;

}

.official-card p{

font-size:15px;

}

}





/*==================================================
END DOWNLOADS PAGE
==================================================*/