/*=========================================================
    OFFICIAL GIVEAWAY PLATFORM
    Premium Dark Theme
==========================================================*/

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

/*==============================
    ROOT VARIABLES
==============================*/

:root{

    --bg:#0B1220;
    --bg2:#111827;
    --card:#1B2433;

    --primary:#2563EB;
    --primary2:#1D4ED8;

    --gold:#FBBF24;

    --white:#FFFFFF;
    --text:#CBD5E1;

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

    --shadow:0 15px 40px rgba(0,0,0,.35);

    --radius:20px;

}

/*==============================
    RESET
==============================*/

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08101c;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold);

}

/*==============================
    LINKS
==============================*/

a{

    text-decoration:none;

    transition:.35s;

}

a:hover{

    text-decoration:none;

}

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

section{

    padding:90px 0;

}

.container{

    max-width:1200px;

}

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

.navbar{

    background:rgba(11,18,32,.92)!important;

    backdrop-filter:blur(15px);

    border-bottom:1px solid var(--border);

    padding:18px 0;

    transition:.35s;

}

.navbar-brand{

    font-size:1.5rem;

    font-weight:700;

    color:var(--white)!important;

}

.navbar-brand img{

    height:42px;

    margin-right:10px;

}

.nav-link{

    color:var(--text)!important;

    margin-left:18px;

    font-weight:500;

}

.nav-link:hover{

    color:var(--gold)!important;

}

.navbar .btn{

    border-radius:50px;

    padding:11px 28px;

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:

    radial-gradient(circle at top right,#1D4ED8 0%,transparent 30%),

    radial-gradient(circle at bottom left,#2563EB 0%,transparent 30%),

    linear-gradient(135deg,#0B1220,#111827);

}

.hero h1{

    font-size:4rem;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--gold);

}

.hero p{

    color:var(--text);

    font-size:1.1rem;

    margin-bottom:30px;

    max-width:600px;

}

.hero img{

    width:100%;

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

}

/* Floating Effect */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

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

.btn{

    transition:.35s;

    font-weight:600;

}

.btn-primary{

    background:var(--primary);

    border:none;

    border-radius:50px;

    padding:14px 38px;

}

.btn-primary:hover{

    background:var(--primary2);

    transform:translateY(-3px);

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

}

.btn-warning{

    background:var(--gold);

    color:#111;

    border:none;

    border-radius:50px;

    padding:14px 35px;

}

.btn-warning:hover{

    background:#FFD54A;

    color:#111;

    transform:translateY(-3px);

}

/*==============================
    SECTION HEADINGS
==============================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.8rem;

    font-weight:800;

    color:var(--white);

    margin-bottom:15px;

}

.section-title p{

    color:var(--text);

    max-width:650px;

    margin:auto;

}


/*=========================================================
    GIVEAWAY SECTION
==========================================================*/

#giveaways{
    background:var(--bg2);
}

.giveaway-card{
    position:relative;
    overflow:hidden;
    border-radius:var(--radius);
    background:var(--card);
    margin-bottom:45px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    transition:.4s ease;
}

.giveaway-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

/* Banner Image */

.giveaway-card img{
    width:100%;
    display:block;
    border-radius:18px;
    transition:transform .6s ease;
}

.giveaway-card:hover img{
    transform:scale(1.03);
}

/* Dark overlay */

.giveaway-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.05)
    );
    pointer-events:none;
}

/* Floating Apply Button */

.giveaway-card .apply-btn{

    position:absolute;

    right:25px;

    bottom:25px;

    z-index:5;

    background:var(--gold);

    color:#111;

    padding:14px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

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

}

.giveaway-card .apply-btn:hover{

    background:#FFD54A;

    transform:scale(1.06);

    color:#111;

}

/* Giveaway Badge */

.giveaway-badge{

    position:absolute;

    top:25px;

    left:25px;

    z-index:5;

    background:rgba(37,99,235,.95);

    color:#fff;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

}

/*=========================================================
    HOW IT WORKS
==========================================================*/

#how{

    background:var(--bg);

}

.step-card{

    background:var(--card);

    border-radius:20px;

    padding:35px;

    text-align:center;

    border:1px solid var(--border);

    transition:.35s;

    height:100%;

}

.step-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:var(--shadow);

}

.step-card i{

    font-size:55px;

    color:var(--gold);

    margin-bottom:20px;

}

.step-card h4{

    color:#fff;

    margin-bottom:15px;

    font-weight:700;

}

.step-card p{

    color:var(--text);

}

/*=========================================================
    FAQ
==========================================================*/

#faq{

    background:var(--bg2);

}

.accordion-item{

    background:var(--card);

    border:1px solid var(--border);

    margin-bottom:18px;

    border-radius:16px !important;

    overflow:hidden;

}

.accordion-button{

    background:var(--card);

    color:#fff;

    font-weight:600;

    padding:22px;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    background:var(--card);

    color:var(--text);

    line-height:1.8;

    padding:25px;

}

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

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.zoom{

    overflow:hidden;

}

.zoom img{

    transition:.6s;

}

.zoom:hover img{

    transform:scale(1.05);

}





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

footer{
    background:#050B18;
    border-top:1px solid var(--border);
    padding:70px 0 25px;
}

footer h4,
footer h5{
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

footer p{
    color:var(--text);
    line-height:1.9;
}

footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    color:var(--text);
    transition:.3s;
}

footer ul li a:hover{
    color:var(--gold);
    padding-left:8px;
}

footer hr{
    border-color:rgba(255,255,255,.08);
    margin:40px 0 20px;
}

footer .copyright{
    text-align:center;
    color:#94A3B8;
    font-size:15px;
}

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

#topBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:none;

    z-index:999;

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

    transition:.35s;

}

#topBtn:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-6px);

}

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

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

body{

animation:fadeIn .8s ease;

}

@keyframes slideUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.hero,
.giveaway-card,
.step-card{

animation:slideUp .8s ease both;

}

/*=========================================================
    IMAGE SETTINGS
==========================================================*/

img{

    max-width:100%;

    height:auto;

    display:block;

}

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

@media (max-width:992px){

.hero{

min-height:auto;

padding:100px 0 70px;

text-align:center;

}

.hero h1{

font-size:3rem;

}

.hero p{

margin:auto auto 30px;

}

.hero img{

margin-top:50px;

max-width:80%;

}

.navbar-nav{

margin-top:20px;

text-align:center;

}

.navbar .btn{

margin-top:15px;

}

.apply-btn{

right:18px !important;

bottom:18px !important;

padding:12px 24px !important;

font-size:15px;

}

}

/* Mobile */

@media (max-width:768px){

section{

padding:70px 0;

}

.hero h1{

font-size:2.3rem;

}

.hero p{

font-size:15px;

}

.section-title h2{

font-size:2rem;

}

.giveaway-card{

margin-bottom:30px;

}

.step-card{

padding:25px;

margin-bottom:25px;

}

.step-card i{

font-size:45px;

}

.apply-btn{

width:auto;

font-size:14px;

padding:10px 20px !important;

right:15px !important;

bottom:15px !important;

}

.giveaway-badge{

font-size:12px;

padding:8px 14px;

top:15px;

left:15px;

}

footer{

text-align:center;

}

footer .col-lg-4{

margin-bottom:40px;

}

}

/* Small Phones */

@media (max-width:576px){

.hero{

padding:90px 0 60px;

}

.hero h1{

font-size:1.9rem;

}

.hero p{

font-size:14px;

}

.navbar-brand{

font-size:1.2rem;

}

.navbar-brand img{

height:36px;

}

#topBtn{

width:48px;

height:48px;

right:18px;

bottom:18px;

}

}

/*=========================================================
    UTILITIES
==========================================================*/

.text-gold{
    color:var(--gold);
}

.bg-dark-card{
    background:var(--card);
}

.shadow-lg-custom{
    box-shadow:var(--shadow);
}

.rounded-xl{
    border-radius:var(--radius);
}

.border-custom{
    border:1px solid var(--border);
}

.transition{
    transition:.35s ease;
}