
@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(css/font-awesome.min.html);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.html);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/* ==========================================
   PDG11 PREMIUM UI
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* ===========================
        CUSTOM SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#edf2f7;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#6C2BD9,#2563eb);
    border-radius:20px;
}

/* ===========================
          NAVBAR
=========================== */

.custom-navbar{

    background:rgba(18,18,18,.25);

    backdrop-filter:blur(16px);

    transition:.35s;

    padding:18px 0;

    z-index:9999;
}

.navbar-scrolled{

    background:#121212;

    box-shadow:0 10px 35px rgba(0,0,0,.25);

}

.logo{

    width:55px;

}

.navbar-brand{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff!important;

    font-weight:700;

    font-size:28px;

}

.nav-link{

    color:#fff!important;

    margin-left:18px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#FFD700;

    transition:.35s;

}

.nav-link:hover::after{

    width:100%;

}

.download-btn{

    background:linear-gradient(135deg,#FFD54F,#FF9800);

    color:#111;

    padding:12px 26px;

    border-radius:40px;

    font-weight:600;

    box-shadow:0 12px 30px rgba(255,165,0,.35);

    transition:.35s;

}

.download-btn:hover{

    transform:translateY(-4px);

    color:#111;

}

/* ===========================
            HERO
=========================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#141E30,#243B55);

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,

    rgba(255,255,255,.12),

    transparent 40%),

    radial-gradient(circle at bottom left,

    rgba(255,215,0,.15),

    transparent 35%);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:25px;

    font-size:14px;

    backdrop-filter:blur(8px);

}

.hero h1{

    font-size:66px;

    color:#fff;

    font-weight:800;

    line-height:1.1;

}

.hero h1 span{

    color:#FFD54F;

}

.hero p{

    color:#d4d4d4;

    font-size:18px;

    line-height:34px;

    margin:30px 0;

}

/* ===========================
        HERO BUTTONS
=========================== */

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.btn-download{

    background:linear-gradient(135deg,#FFD54F,#FF9800);

    color:#111;

    padding:16px 34px;

    border-radius:60px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

    box-shadow:0 20px 40px rgba(255,165,0,.35);

    transition:.35s;

}

.btn-download:hover{

    transform:translateY(-5px);

    color:#111;

}

.btn-results{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    padding:16px 34px;

    border-radius:60px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.35s;

}

.btn-results:hover{

    background:#fff;

    color:#111;

}

/* ===========================
        HERO STATS
=========================== */

.hero-stats{

    display:flex;

    gap:35px;

    margin-top:55px;

}

.hero-stats div{

    color:#fff;

}

.hero-stats h2{

    color:#FFD54F;

    font-size:36px;

    font-weight:800;

    margin-bottom:8px;

}

.hero-stats span{

    color:#ddd;

    font-size:15px;

}

/* ===========================
        PHONE MOCKUP
=========================== */

.mobile-preview{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.mobile-preview img{

    width:240px;

    z-index:5;

    animation:float 4s ease-in-out infinite;

}

.glow-circle{

    position:absolute;

    width:360px;

    height:360px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(255,215,0,.55),

    transparent 70%);

    animation:pulse 3s infinite;

}

/* ===========================
        FEATURES
=========================== */

.features{

    margin-top:-70px;

    position:relative;

    z-index:5;

    padding-bottom:70px;

}

.feature-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-12px);

}

.feature-card i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    font-size:32px;

    color:#fff;

    background:linear-gradient(135deg,#6C2BD9,#2563EB);

    margin-bottom:25px;

}

.feature-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.feature-card p{

    color:#666;

    line-height:28px;

}

/* ===========================
        ANIMATIONS
=========================== */

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes pulse{

    0%{

        transform:scale(.9);

        opacity:.5;

    }

    50%{

        transform:scale(1);

        opacity:1;

    }

    100%{

        transform:scale(.9);

        opacity:.5;

    }

}
/* ==========================================
        RESULTS SECTION
========================================== */

.results-section{
    padding:90px 0;
    background:#f8f9fc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.section-title p{
    color:#6b7280;
    font-size:18px;
}

.results-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.results-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 35px;
    background:linear-gradient(135deg,#6C2BD9,#2563EB);
    color:#fff;
}

.results-header h3{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#fff;
}

.results-header span{
    font-size:14px;
    opacity:.9;
}

.live-badge{
    display:flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
}

.live-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff7b;
    animation:blink 1s infinite;
}

@keyframes blink{

    0%{opacity:1;}

    50%{opacity:.3;}

    100%{opacity:1;}

}

/* ==========================================
            MODERN TABLE
========================================== */

.modern-table{
    margin:0;
}

.modern-table thead{
    background:#eef3ff;
}

.modern-table thead th{
    border:none;
    padding:20px;
    font-size:15px;
    font-weight:700;
    color:#374151;
}

.modern-table tbody td{
    padding:20px;
    border-top:1px solid #eef2f7;
    vertical-align:middle;
    font-size:15px;
}

.modern-table tbody tr{

    transition:.3s;

}

.modern-table tbody tr:hover{

    background:#f7faff;

    transform:scale(1.01);

}

.game-name{

    font-weight:700;

    color:#111827;

}

.result-box{

    display:inline-block;

    padding:10px 18px;

    background:linear-gradient(135deg,#ff9800,#ff5722);

    color:#fff;

    border-radius:12px;

    font-size:18px;

    font-weight:700;

    letter-spacing:2px;

    min-width:80px;

    text-align:center;

}

.time-box{

    display:inline-block;

    background:#eef4ff;

    color:#2563eb;

    padding:8px 16px;

    border-radius:12px;

    font-weight:600;

}

/* ==========================================
        DOWNLOAD SECTION
========================================== */

.download-section{

    padding:90px 0;

}

.download-card{

    background:linear-gradient(135deg,#111827,#1e3a8a);

    border-radius:30px;

    padding:60px;

    color:#fff;

    overflow:hidden;

    position:relative;

}

.download-card::before{

    content:"";

    position:absolute;

    right:-120px;

    top:-120px;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.download-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:18px;

}

.download-card h2{

    color:#fff;

    font-size:44px;

    font-weight:800;

    margin-bottom:20px;

}

.download-card p{

    color:#d6d6d6;

    line-height:32px;

    margin-bottom:30px;

}

.download-list{

    padding:0;

    margin:0;

}

.download-list li{

    list-style:none;

    margin-bottom:18px;

    font-size:17px;

}

.download-list i{

    color:#FFD54F;

    margin-right:10px;

}

.download-big-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:linear-gradient(135deg,#FFD54F,#FF9800);

    color:#111;

    font-weight:700;

    padding:18px 40px;

    border-radius:60px;

    box-shadow:0 20px 40px rgba(255,165,0,.35);

    transition:.35s;

}

.download-big-btn:hover{

    transform:translateY(-6px);

    color:#111;

}

/* ==========================================
            COUNTERS
========================================== */

.counter-section{

    padding:80px 0;

    background:#fff;

}

.counter-box{

    text-align:center;

    padding:40px 25px;

    border-radius:24px;

    background:#fff;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.counter-box:hover{

    transform:translateY(-10px);

}

.counter-box i{

    font-size:46px;

    color:#2563eb;

    margin-bottom:20px;

}

.counter-box h3{

    font-size:42px;

    font-weight:800;

    color:#111827;

    margin-bottom:10px;

}

.counter-box p{

    margin:0;

    color:#6b7280;

    font-size:17px;

}
/* ==========================================
                FOOTER
========================================== */

.footer{

    background:#0f172a;

    color:#fff;

    padding:90px 0 30px;

    position:relative;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#6C2BD9,#2563EB,#FFD54F);

}

.footer-logo{

    width:80px;

    margin-bottom:20px;

}

.footer h3{

    color:#fff;

    font-weight:700;

    margin-bottom:20px;

}

.footer h4{

    color:#FFD54F;

    margin-bottom:25px;

    font-weight:700;

}

.footer p{

    color:#CBD5E1;

    line-height:30px;

    margin:0;

}

.footer-links{

    padding:0;

    margin:0;

}

.footer-links li{

    list-style:none;

    margin-bottom:18px;

}

.footer-links li a{

    color:#CBD5E1;

    transition:.3s;

}

.footer-links li a:hover{

    color:#FFD54F;

    padding-left:8px;

}

.footer-feature{

    margin-bottom:18px;

    color:#CBD5E1;

}

.footer-feature i{

    color:#22C55E;

    margin-right:10px;

}

.footer-divider{

    border-color:rgba(255,255,255,.08);

    margin:45px 0 30px;

}

.copyright{

    color:#CBD5E1;

    margin:0;

}

.social-links{

    display:flex;

    justify-content:flex-end;

    gap:14px;

}

.social-links a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

    font-size:18px;

}

.social-links a:hover{

    background:#FFD54F;

    color:#111;

    transform:translateY(-5px);

}

/* ==========================================
          FLOATING DOWNLOAD BUTTON
========================================== */

.floating-download{

    position:fixed;

    right:25px;

    bottom:90px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:linear-gradient(135deg,#FFD54F,#FF9800);

    color:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    box-shadow:0 20px 40px rgba(255,165,0,.35);

    z-index:999;

    animation:floatButton 3s infinite;

}

.floating-download:hover{

    color:#111;

    transform:scale(1.08);

}

@keyframes floatButton{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ==========================================
          SCROLL TO TOP
========================================== */

#scrollTop{

    position:fixed;

    right:25px;

    bottom:20px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:none;

    cursor:pointer;

    z-index:999;

    box-shadow:0 15px 30px rgba(37,99,235,.35);

    transition:.35s;

}

#scrollTop:hover{

    background:#1D4ED8;

    transform:translateY(-4px);

}

/* ==========================================
          WAVE FIX
========================================== */

.wave{

    position:absolute;

    bottom:-2px;

    left:0;

    width:100%;

}

.wave svg{

    display:block;

}

/* ==========================================
         RESPONSIVE DESIGN
========================================== */

@media(max-width:1199px){

.hero h1{

font-size:52px;

}

.download-card{

padding:45px;

}

}

@media(max-width:991px){

.custom-navbar{

padding:15px;

background:#111827;

}

.navbar-collapse{

background:#111827;

padding:20px;

margin-top:15px;

border-radius:15px;

}

.nav-link{

margin:12px 0;

}

.hero{

padding:140px 0 100px;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

flex-wrap:wrap;

}

.mobile-preview{

margin-top:60px;

}

.download-card{

text-align:center;

}

.social-links{

justify-content:center;

margin-top:20px;

}

.footer{

text-align:center;

}

}

@media(max-width:767px){

.hero h1{

font-size:38px;

line-height:1.2;

}

.hero p{

font-size:16px;

line-height:30px;

}

.hero-buttons{

flex-direction:column;

}

.btn-download,

.btn-results{

width:100%;

justify-content:center;

}

.hero-stats{

gap:25px;

}

.hero-stats h2{

font-size:28px;

}

.mobile-preview img{

width:180px;

}

.section-title h2{

font-size:34px;

}

.results-header{

padding:20px;

flex-direction:column;

gap:15px;

text-align:center;

}

.download-card{

padding:30px;

}

.download-card h2{

font-size:32px;

}

.download-big-btn{

width:100%;

justify-content:center;

margin-top:30px;

}

.counter-box{

margin-bottom:25px;

}

.floating-download{

width:58px;

height:58px;

font-size:22px;

right:15px;

bottom:85px;

}

#scrollTop{

width:50px;

height:50px;

right:15px;

}

}

@media(max-width:576px){

.logo{

width:42px;

}

.navbar-brand{

font-size:22px;

}

.hero-badge{

font-size:12px;

}

.hero h1{

font-size:32px;

}

.hero p{

font-size:15px;

}

.feature-card{

padding:28px;

margin-bottom:25px;

}

.feature-card i{

width:65px;

height:65px;

line-height:65px;

font-size:26px;

}

.result-box{

padding:8px 14px;

font-size:15px;

min-width:65px;

}

.time-box{

font-size:13px;

}

.modern-table thead th,

.modern-table tbody td{

padding:15px;

font-size:13px;

}

.footer{

padding:70px 0 25px;

}

.footer-logo{

width:65px;

}

}

/* ==========================================
         EXTRA SMOOTH EFFECTS
========================================== */

.feature-card,
.counter-box,
.results-card,
.download-card{

transition:all .35s ease;

}

.feature-card:hover,
.counter-box:hover{

box-shadow:0 25px 60px rgba(37,99,235,.18);

}

::selection{

background:#2563EB;

color:#fff;

}