/* ===========================
   RESET
=========================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --gold:#F52C2C;
    --gold2:#C21D1D;

    --red:#D62828;

    --bg:#070707;
    --bg2:#111111;

    --white:#ffffff;

    --text:#d7d7d7;

    --glass:rgba(255,255,255,.06);

    --border:rgba(255,255,255,.08);

    --radius:22px;

    --transition:.35s ease;

}

html{

scroll-behavior:smooth;

}

body{

font-family:Arial,Helvetica,sans-serif;

background:
linear-gradient(180deg,#050505,#0b0b0b,#101010);

color:#fff;

overflow-x:hidden;

line-height:1.7;

}

/* ===========================
   GLOW BACKGROUND
=========================== */

body::before{

content:"";

position:fixed;

width:700px;
height:700px;

background:#F52C2C;

filter:blur(180px);

opacity:.12;

top:-250px;
right:-250px;

z-index:-1;

animation:glow 8s infinite alternate;

}

body::after{

content:"";

position:fixed;

width:600px;
height:600px;

background:#d62828;

filter:blur(200px);

opacity:.08;

left:-250px;
bottom:-250px;

z-index:-1;

animation:glow2 10s infinite alternate;

}

@keyframes glow{

from{

transform:translateY(0);

}

to{

transform:translateY(80px);

}

}

@keyframes glow2{

from{

transform:translateX(0);

}

to{

transform:translateX(100px);

}

}

/* ===========================
 NAVBAR
=========================== */

header{

position:sticky;

top:0;

z-index:999;

backdrop-filter:blur(15px);

background:rgba(5,5,5,.75);

border-bottom:1px solid rgba(255,255,255,.05);

}

.navbar{

max-width:1280px;

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 25px;

}

.logo img{

height:58px;

display:block;

}

.navbar ul{

display:flex;

gap:35px;

list-style:none;

}

.navbar a{

text-decoration:none;

color:#fff;

transition:.3s;

font-size:15px;

}

.navbar a:hover{

color:var(--gold);

}

/* ===========================
 BUTTON
=========================== */

.btn-primary,
.btn-gold,
.btn-dark{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.3s;

cursor:pointer;

}

.btn-primary,
.btn-gold{

background:
linear-gradient(180deg,#FF1000,#F82525,#000000);

color:#222;

box-shadow:

0 10px 20px rgba(248,37,37,.35),

inset 0 2px 2px rgba(255,255,255,.5),

inset 0 -4px 8px rgba(0,0,0,.2);

}

.btn-primary:hover,
.btn-gold:hover{

transform:translateY(-4px);

box-shadow:

0 15px 35px rgba(248,37,37,.45);

}

.btn-dark{

background:#1a1a1a;

color:#fff;

border:1px solid rgba(255,255,255,.08);

}

.btn-dark:hover{

background:#252525;

}

/* ===========================
 HERO
=========================== */

.hero{

max-width:1280px;

margin:auto;

display:grid;

grid-template-columns:1.1fr .9fr;

align-items:center;

gap:50px;

padding:90px 25px;

}

.badge{

display:inline-block;

padding:10px 22px;

border-radius:40px;

background:rgba(248,37,37,.15);

border:1px solid rgba(248,37,37,.4);

color:#F52C2C;

margin-bottom:25px;

}

.hero h1{

font-size:58px;

font-weight:800;

line-height:1.15;

margin-bottom:25px;

}

.hero p{

font-size:18px;

color:#cfcfcf;

max-width:650px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-top:40px;

flex-wrap:wrap;

}

/* ===========================
 SEARCH
=========================== */

.search-box{

margin-top:40px;

display:flex;

background:#fff;

border-radius:60px;

padding:8px;

max-width:650px;

box-shadow:

0 15px 35px rgba(0,0,0,.35);

}

.search-box input{

flex:1;

border:none;

background:none;

outline:none;

padding:18px 24px;

font-size:17px;

}

.search-box button{

border:none;

padding:16px 34px;

border-radius:50px;

cursor:pointer;

font-weight:bold;

background:

linear-gradient(180deg,#FF1000,#F72626,#000000);

}

/* ===========================
 IMAGE
=========================== */

.hero-image{

display:flex;

justify-content:center;

align-items:center;

}

.hero-image img{

width:100%;

max-width:520px;

animation:floating 5s ease-in-out infinite;

filter:

drop-shadow(0 20px 50px rgba(248,37,37,.15));

}

@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/* ===========================
 FEATURE CARD
=========================== */

.features{

max-width:1280px;

margin:40px auto;

padding:0 25px;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.card{

background:var(--glass);

border:1px solid var(--border);

backdrop-filter:blur(18px);

border-radius:var(--radius);

padding:35px;

transition:.35s;

}

.card:hover{

transform:translateY(-8px);

border-color:rgba(248,37,37,.35);

box-shadow:

0 20px 40px rgba(248,37,37,.12);

}

.card h3{

margin-bottom:15px;

font-size:22px;

color:#F52C2C;

}

.card p{

color:#d0d0d0;

}

/* ===========================
   STATS
=========================== */

.stats{

    max-width:1280px;

    margin:80px auto;

    padding:0 25px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-item{

    background:linear-gradient(145deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02));

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:45px 20px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.stat-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(120deg,
    transparent,
    rgba(255,255,255,.08),
    transparent);

    transform:translateX(-100%);

    transition:.7s;

}

.stat-item:hover::before{

    transform:translateX(100%);

}

.stat-item:hover{

    transform:translateY(-8px);

    border-color:rgba(248,37,37,.35);

}

.stat-item h2{

    font-size:52px;

    color:var(--gold);

    margin-bottom:10px;

}

.stat-item p{

    color:#cfcfcf;

    font-size:17px;

}

/* ===========================
   SECTION TITLE
=========================== */

.latest-news{

    max-width:1280px;

    margin:90px auto;

    padding:0 25px;

}

.latest-news h2{

    font-size:42px;

    margin-bottom:45px;

    text-align:center;

    position:relative;

}

.latest-news h2::after{

    content:"";

    width:90px;

    height:4px;

    border-radius:20px;

    background:linear-gradient(to right,var(--gold),#fff);

    display:block;

    margin:18px auto 0;

}

/* ===========================
   NEWS GRID
=========================== */

.news-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.news-grid article{

    background:

    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    backdrop-filter:blur(15px);

}

.news-grid article:hover{

    transform:translateY(-10px);

    border-color:rgba(248,37,37,.35);

    box-shadow:

    0 25px 45px rgba(248,37,37,.10);

}

.news-grid img{

    width:100%;

    height:230px;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.news-grid article:hover img{

    transform:scale(1.06);

}

.news-grid h3{

    font-size:23px;

    padding:22px 25px 12px;

}

.news-grid p{

    color:#cfcfcf;

    padding:0 25px 30px;

    line-height:1.8;

}

/* ===========================
   CTA SECTION
=========================== */

.cta{

    max-width:1280px;

    margin:100px auto;

    padding:70px;

    border-radius:30px;

    background:

    linear-gradient(135deg,
    rgba(248,37,37,.12),
    rgba(255,255,255,.03));

    border:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

}

.cta h2{

    font-size:42px;

    margin-bottom:12px;

}

.cta p{

    color:#d6d6d6;

}

.cta-buttons{

    display:flex;

    gap:20px;

}

/* ===========================
   FOOTER
=========================== */

footer{

    margin-top:120px;

    background:#050505;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-content{

    max-width:1280px;

    margin:auto;

    padding:80px 25px;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-content h3{

    margin-bottom:20px;

    color:var(--gold);

}

.footer-content p{

    color:#bdbdbd;

    line-height:1.9;

}

.footer-content ul{

    list-style:none;

}

.footer-content li{

    margin-bottom:14px;

}

.footer-content a{

    text-decoration:none;

    color:#d2d2d2;

    transition:.3s;

}

.footer-content a:hover{

    color:var(--gold);

}

/* ===========================
 COPYRIGHT
=========================== */

.copyright{

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

    padding:25px;

    color:#9d9d9d;

    font-size:14px;

}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:9px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--gold),#ff9900);

    border-radius:20px;

}

/* ===========================
   SELECTION
=========================== */

::selection{

    background:var(--gold);

    color:#111;

}

/* ===========================
   IMAGE EFFECT
=========================== */

img{

    max-width:100%;

    display:block;

}

img:hover{

    filter:brightness(1.05);

}

/* ===========================
   LINK EFFECT
=========================== */

a{

    transition:.3s;

}

a:hover{

    text-decoration:none;

}

/* ===========================
UTILITY
=========================== */

.container{

    max-width:1280px;

    margin:auto;

    padding:0 25px;

}

.text-center{

    text-align:center;

}

.mt-60{

    margin-top:60px;

}

.mb-60{

    margin-bottom:60px;

}

.shadow{

    box-shadow:

    0 20px 50px rgba(0,0,0,.35);

}

/*=====================================
TABLET
=====================================*/

@media (max-width:1200px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-content{

order:2;

}

.hero-image{

order:1;

}

.hero p{

margin:auto;

}

.search-box{

margin:40px auto;

}

.hero-buttons{

justify-content:center;

}

.features{

grid-template-columns:repeat(2,1fr);

}

.stats{

grid-template-columns:repeat(2,1fr);

}

.news-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-content{

grid-template-columns:1fr 1fr;

}

}

/*=====================================
MOBILE MENU
=====================================*/

.mobile-toggle{

display:none;

width:48px;

height:48px;

cursor:pointer;

align-items:center;

justify-content:center;

border-radius:12px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

}

.mobile-toggle span{

display:block;

width:24px;

height:2px;

background:#fff;

position:relative;

}

.mobile-toggle span::before,
.mobile-toggle span::after{

content:"";

position:absolute;

left:0;

width:24px;

height:2px;

background:#fff;

}

.mobile-toggle span::before{

top:-8px;

}

.mobile-toggle span::after{

top:8px;

}

/*=====================================
MOBILE
=====================================*/

@media (max-width:768px){

.navbar{

padding:18px;

}

.navbar ul{

display:none;

}

.mobile-toggle{

display:flex;

}

.logo img{

height:48px;

}

.hero{

padding:70px 20px;

}

.hero h1{

font-size:36px;

line-height:1.25;

}

.hero p{

font-size:16px;

}

.badge{

font-size:13px;

}

.hero-image img{

max-width:320px;

}

.search-box{

flex-direction:column;

background:transparent;

box-shadow:none;

padding:0;

gap:12px;

}

.search-box input{

background:#fff;

border-radius:50px;

padding:16px 20px;

}

.search-box button{

width:100%;

padding:16px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.features{

grid-template-columns:1fr;

}

.stats{

grid-template-columns:1fr;

}

.news-grid{

grid-template-columns:1fr;

}

.card{

padding:28px;

}

.stat-item{

padding:35px;

}

.latest-news h2{

font-size:32px;

}

.news-grid h3{

font-size:20px;

}

.news-grid img{

height:210px;

}

.cta{

padding:35px 25px;

flex-direction:column;

text-align:center;

}

.cta h2{

font-size:30px;

}

.cta-buttons{

flex-direction:column;

width:100%;

}

.cta-buttons a{

width:100%;

}

.footer-content{

grid-template-columns:1fr;

gap:35px;

}

}

/*=====================================
SMALL MOBILE
=====================================*/

@media (max-width:480px){

.hero{

padding-top:60px;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:15px;

}

.btn-primary,
.btn-gold,
.btn-dark{

padding:15px 24px;

font-size:15px;

}

.stat-item h2{

font-size:40px;

}

.card h3{

font-size:20px;

}

}

/*=====================================
GLASS ANIMATION
=====================================*/

.card,
.stat-item,
.news-grid article{

animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

/*=====================================
HOVER PREMIUM
=====================================*/

.card::after,
.news-grid article::after{

content:"";

position:absolute;

inset:0;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.05),
transparent);

opacity:0;

transition:.5s;

pointer-events:none;

}

.card:hover::after,
.news-grid article:hover::after{

opacity:1;

animation:shine 1.2s;

}

@keyframes shine{

0%{

transform:translateX(-120%);

}

100%{

transform:translateX(120%);

}

}

/*=====================================
BUTTON RIPPLE
=====================================*/

.btn-primary,
.btn-gold,
.btn-dark{

position:relative;

overflow:hidden;

}

.btn-primary::before,
.btn-gold::before,
.btn-dark::before{

content:"";

position:absolute;

width:0;

height:100%;

left:0;

top:0;

background:rgba(255,255,255,.18);

transition:.4s;

}

.btn-primary:hover::before,
.btn-gold:hover::before,
.btn-dark:hover::before{

width:100%;

}

/*=====================================
IMAGE ZOOM
=====================================*/

.hero-image{

overflow:hidden;

}

.hero-image img{

transition:1s;

}

.hero-image:hover img{

transform:scale(1.04);

}

/*=====================================
PERFORMANCE
=====================================*/

img{

content-visibility:auto;

}

section{

content-visibility:auto;

contain-intrinsic-size:800px;

}

html{

text-rendering:optimizeLegibility;

-webkit-font-smoothing:antialiased;

}

/*=====================================
PRINT
=====================================*/

@media print{

header,
footer,
.hero-buttons{

display:none;

}

body{

background:#fff;

color:#000;

}

}

/*=====================================
END
=====================================*/