/* ===========================
   Cashnex Premium Theme
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#0f1117;
    color:#fff;
    line-height:1.7;
}

/* Container */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:rgba(15,17,23,.92);
    backdrop-filter:blur(12px);
    z-index:999;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    color:#fff;
    font-size:30px;
    text-decoration:none;
    font-weight:800;
}

.logo span{
    color:#00d46a;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#00d46a;
}

/* Buttons */

.btn{
    display:inline-block;
    background:#00d46a;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(0,212,106,.35);
}

.btn-outline{
    background:transparent;
    border:2px solid #00d46a;
}

/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    text-align:center;
    background:
    radial-gradient(circle at top,#16304d,#0f1117 60%);
}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:0 auto 40px;
    color:#cfcfcf;
    font-size:20px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    width:100%;
    margin:0 auto;
}


/* Features */

.features{
    padding:100px 0;
}

.features .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature{
    background:#171b24;
    padding:35px;
    border-radius:18px;
    transition:.3s;
    border:1px solid rgba(255,255,255,.05);
}

.feature:hover{
    transform:translateY(-8px);
    border-color:#00d46a;
}

.feature h3{
    margin-bottom:15px;
    color:#00d46a;
}

/* Angebote */

.offers{
    padding:100px 0;
}

.offers h2{
    text-align:center;
    margin-bottom:50px;
    font-size:42px;
}

.offer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:#171b24;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    margin-bottom:15px;
}

.card p{
    margin-bottom:25px;
    color:#bfbfbf;
}

/* CTA */

.cta{
    padding:120px 20px;
    text-align:center;
    background:#12161f;
}

.cta h2{
    font-size:46px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:35px;
    color:#c9c9c9;
}

/* Footer */

footer{
    background:#0a0c11;
    padding:40px 0;
    text-align:center;
}

footer a{
    color:#00d46a;
    margin:0 12px;
    text-decoration:none;
}

/* Responsive */

@media(max-width:900px){

.hero h1{
    font-size:42px;
}

.header .container{
    flex-direction:column;
    gap:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

}
.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.header-scroll{
    background:#0a0c11;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
}

#topButton{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:22px;
    background:#00d46a;
    color:#fff;
    opacity:0;
    pointer-events:none;
    transition:.3s;
}

#topButton.visible{
    opacity:1;
    pointer-events:auto;
}

#topButton:hover{
    transform:translateY(-5px);
}

.logo img{
    display:block;
    height:42px;
    width:auto;
}

/* Hero Premium */

.hero{

    padding-top:140px;
    text-align:center;

}

.hero-content{

    max-width:850px;
    margin:auto;

}

.badge{

    display:inline-block;

    margin-bottom:25px;

    padding:10px 18px;

    background:#171b24;

    border:1px solid rgba(255,255,255,.08);

    border-radius:50px;

    color:#00d46a;

    font-weight:bold;

}

.hero h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    color:#cfcfcf;

    margin-bottom:45px;

}

.hero{

    background:
    radial-gradient(circle at top,#1d3557,#0f1117 65%);
}

.hero-content{
    text-align:center;
}

.hero-buttons a{
    text-align:center;
}
.hero-buttons{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    width:100%;
    margin-left:auto;
    margin-right:auto;
}

.hero-content{
    width:100%;
    text-align:center;
}

.hero-buttons .btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
}

.hero .container{
    display:flex;
    justify-content:center;
}

.hero-content{
    width:100%;
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    width:100%;
    margin:40px auto 0;
}

.hero-buttons .btn{
    margin:0;
}
/* Cashback Karten */

.rating{
    color:#ffd700;
    font-size:20px;
    margin-bottom:15px;
}

.bonus{
    color:#00d46a;
    font-weight:bold;
    font-size:18px;
}

.cashback{
    background:#0f1117;
    padding:12px;
    border-radius:10px;
    margin:20px 0;
    font-size:18px;
}

.cashback strong{
    color:#00d46a;
}

/* Anbieter Logos */

.provider-logo{

    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;

}

.provider-logo img{

    max-height:70px;
    max-width:180px;
    object-fit:contain;

}
/* Filter */

.filters{

    display:flex;
    justify-content:center;
    gap:20px;
    margin:40px 0;
    flex-wrap:wrap;

}

.filters input,
.filters select{

    padding:15px 20px;
    border-radius:10px;
    border:none;
    background:#171b24;
    color:white;
    font-size:16px;

}

.filters input{

    width:300px;

}

.filters select{

    cursor:pointer;

}

.providers{
    padding:100px 0;
}

.provider-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.provider-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.provider-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.provider-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.provider-card p{
    color:#0ea5e9;
    font-weight:700;
    font-size:22px;
    margin-bottom:20px;
}

.provider-card ul{
    list-style:none;
    margin-bottom:30px;
}

.provider-card li{
    margin:12px 0;
}

.featured{
    border:2px solid #0ea5e9;
    position:relative;
}

.badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#0ea5e9;
    color:#fff;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
}