/* ===========================
   CASH BONANZA v2
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#17120d;
    background-image:
    radial-gradient(circle at top,#5b3b1d 0%,#2d1c12 40%,#17120d 100%);

    color:#f7edd2;

    font-family:'Crimson Text',serif;

}

/* ===========================
   HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:60px 20px;

    position:relative;

}

.logo{

    width:min(1000px,92vw);

    filter:
        drop-shadow(0 0 30px rgba(255,210,90,.15));

    margin-bottom:45px;

    transition:.4s;

}

.logo:hover{

    transform:scale(1.02);

    filter:
        drop-shadow(0 0 45px rgba(255,215,100,.35));

}

.hero-overlay{

    max-width:900px;

    margin:auto;

}

.tagline{

    color:#d8b56b;

    letter-spacing:8px;

    font-size:15px;

    margin-bottom:25px;

    font-family:'Cinzel';

    text-transform:uppercase;

}

.hero h1{

    font-size:72px;

    color:#f7d47b;

    font-family:'Cinzel';

    margin-bottom:18px;

}

.subtitle{

    font-size:26px;

    line-height:1.8;

    max-width:800px;

    margin:auto;

    margin-bottom:45px;

    color:#f3e5bf;

}

/* ===========================
   BUTTON
=========================== */

.hero-button{

display:inline-block;

padding:20px 55px;

background:#ba8b2f;

color:white;

text-decoration:none;

border-radius:15px;

border:3px solid #f8d57a;

font-size:22px;

font-family:'Cinzel';

transition:.35s;

}

.hero-button:hover{

background:#dca43a;

transform:translateY(-6px);

box-shadow:0 0 35px rgba(255,210,90,.4);

}

/* ===========================
   DIVIDER
=========================== */

.divider{

width:100%;

height:2px;

background:linear-gradient(to right,
transparent,
#d6b05a,
transparent);

margin-bottom:70px;

}

/* ===========================
   SECTIONS
=========================== */

section{

width:min(1200px,92%);

margin:auto;

margin-bottom:90px;

}

section h2{

text-align:center;

font-family:'Cinzel';

font-size:42px;

margin-bottom:35px;

color:#ffd76c;

}

.welcome p{

max-width:850px;

margin:auto;

font-size:24px;

line-height:1.8;

text-align:center;

}

/* ===========================
   CARDS
=========================== */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:30px;

}

.card{

background:#2b2017;

border:3px solid #b98b36;

border-radius:18px;

padding:35px;

text-align:center;

transition:.35s;

}

.card:hover{

transform:translateY(-8px);

box-shadow:0 0 35px rgba(255,215,90,.25);

}

.card h3{

font-size:52px;

margin-bottom:18px;

}

.card h4{

font-family:'Cinzel';

font-size:28px;

color:#ffd76c;

margin-bottom:18px;

}

.card p{

font-size:20px;

line-height:1.6;

}

/* ===========================
   PLATFORMS
=========================== */

.platform-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

gap:25px;

}

.platform{

background:#241b14;

border:3px solid #b98b36;

border-radius:18px;

padding:30px;

text-decoration:none;

display:flex;

flex-direction:column;

align-items:center;

transition:.3s;

}

.platform:hover{

transform:translateY(-8px);

background:#332418;

}

.platform i{

font-size:65px;

color:#ffd76c;

margin-bottom:20px;

}

.platform span{

font-family:'Cinzel';

font-size:22px;

color:white;

}

/* ===========================
   FOOTER
=========================== */

footer{

padding:50px;

border-top:2px solid #a67b30;

text-align:center;

margin-top:80px;

}

/* ===========================
   ANIMATION
=========================== */

@keyframes fade{

from{

opacity:0;

transform:translateY(-20px);

}

to{

opacity:1;

transform:none;

}

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.hero h1{

font-size:42px;

}

.subtitle{

font-size:22px;

}

section h2{

font-size:34px;

}

}