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

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

body{
font-family:Arial, Helvetica, sans-serif;
background:#f4f7fb;
color:#0f1f3c;
line-height:1.6;
}

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

/* ============================= */
/* CONTAINER */
/* ============================= */

.container{
width:1100px;
max-width:95%;
margin:auto;
}

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

.hero{
position:relative;
background:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.85)),
url('../images/beach-volley.jpg');
background-size:cover;
background-position:center;
height:460px;
display:flex;
align-items:center;
justify-content:center;
border-bottom:4px solid #2f7ce8;
}

.hero-overlay{
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
}

.site-logo{
width:750px;
max-width:90%;
filter:drop-shadow(0 10px 30px rgba(0,0,0,0.7));
}

/* ============================= */
/* NAV */
/* ============================= */

.site-nav-wrap{
background:white;
border-bottom:1px solid #ddd;
position:sticky;
top:0;
z-index:10;
}

.site-nav{
display:flex;
justify-content:center;
gap:12px;
padding:12px;
}

.site-nav a{
padding:8px 14px;
border-radius:20px;
text-decoration:none;
color:#0f1f3c;
font-weight:600;
}

.site-nav a:hover{
background:#eef3ff;
}

.site-nav .active{
background:#2f7ce8;
color:white;
}

/* ============================= */
/* SCOREBOARD PRO */
/* ============================= */

.scoreboard{
background:#0f1f3c;
padding:25px 0;
color:white;
margin-bottom:25px;
}

/* GRID */
.score-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
text-align:center;
}

/* BOX */
.score-box{
background:linear-gradient(135deg,#1e3c72,#2a5298);
padding:20px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
transition:0.2s;
position:relative;
overflow:hidden;
}

/* LIGHT EFFECT */
.score-box::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(120deg,rgba(255,255,255,0.1),transparent);
opacity:0;
transition:0.3s;
}

.score-box:hover::before{
opacity:1;
}

/* HOVER */
.score-box:hover{
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(0,0,0,0.3);
}

/* TITEL */
.score-box h3{
font-size:14px;
opacity:0.85;
margin-bottom:5px;
}

/* NUMBER */
.score-box b{
font-size:34px;
display:block;
margin-top:5px;
font-weight:700;
}

/* VARIATIONER */
.score-box:nth-child(2){
background:linear-gradient(135deg,#ff7e5f,#feb47b);
}

.score-box:nth-child(3){
background:linear-gradient(135deg,#43e97b,#38f9d7);
color:#0f1f3c;
}

/* ============================= */
/* CARD */
/* ============================= */

.card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.2s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.card-dark{
background:#0f1f3c;
color:white;
}

.card-header{
margin-bottom:10px;
border-bottom:1px solid #eee;
padding-bottom:6px;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.btn{
display:inline-block;
margin-top:10px;
padding:10px 15px;
background:#2f7ce8;
color:white;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.btn:hover{
background:#1e63c5;
}

/* ============================= */
/* GRID */
/* ============================= */

.page-wrap{
padding:40px 0;
}

.home-grid-top,
.home-grid-middle{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-bottom:30px;
}

/* ============================= */
/* MATCHES */
/* ============================= */

.match-list{
display:flex;
flex-direction:column;
gap:10px;
}

.match-item{
display:flex;
justify-content:space-between;
background:#eef3ff;
padding:10px;
border-radius:8px;
}

/* ============================= */
/* TEAM */
/* ============================= */

.team-wrapper{
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.team-slider{
display:flex;
gap:12px;
overflow-x:auto;
width:100%;
}

.team-slider::-webkit-scrollbar{
display:none;
}

.player-card{
background:white;
padding:15px;
border-radius:12px;
text-align:center;
min-width:110px;
}

.player-card img{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
border:3px solid #2f7ce8;
margin:auto;
margin-bottom:8px;
}

.player-card p{
font-size:12px;
background:#2f7ce8;
color:white;
padding:2px 8px;
border-radius:20px;
display:inline-block;
}

.team-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#2f7ce8;
color:white;
border:none;
width:35px;
height:35px;
border-radius:50%;
cursor:pointer;
}

.team-arrow.left{ left:-20px; }
.team-arrow.right{ right:-20px; }

/* ============================= */
/* GALLERY */
/* ============================= */

.gallery-preview-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
}

.gallery-preview-grid img{
height:100px;
object-fit:cover;
border-radius:8px;
}

/* ============================= */
/* NEWS */
/* ============================= */

.news-featured{
position:relative;
margin-bottom:20px;
}

.news-featured img{
width:100%;
height:300px;
object-fit:cover;
border-radius:12px;
}

.featured-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
background:linear-gradient(transparent,rgba(0,0,0,0.8));
color:white;
border-radius:12px;
}

.news-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.news-card{
background:white;
padding:12px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.news-card img{
height:150px;
object-fit:cover;
border-radius:8px;
margin-bottom:8px;
}

/* ============================= */
/* LINEUP */
/* ============================= */

.lineup-court{
background:#d79a4a;
border-radius:16px;
padding:30px;
max-width:600px;
margin:auto;
}

.lineup-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
text-align:center;
}

.lineup-player img{
width:60px;
height:60px;
border-radius:50%;
border:3px solid white;
}

.lineup-net{
height:3px;
background:white;
margin:25px 0;
}

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

@media(max-width:900px){

.home-grid-top,
.home-grid-middle{
grid-template-columns:1fr;
}

.score-grid{
grid-template-columns:1fr;
}

}


/* ============================= */
/* TEAM PAGE 😈 */
/* ============================= */

.team-page .players-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
padding:30px 0;
}

/* CARD */

.player-card-new{
border-radius:20px;
padding:20px;
background:linear-gradient(145deg,#1e3c72,#2a5298);
position:relative;
overflow:hidden;
color:#fff;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
transition:0.3s;
}

.player-card-new:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

/* GOLD CARD */

.player-card-new.gold{
background:linear-gradient(145deg,#d4af37,#ffd700);
color:#000;
}

/* FRAME */

.player-card-new::before{
content:"";
position:absolute;
top:5px;
left:5px;
right:5px;
bottom:5px;
border:2px solid rgba(255,255,255,0.2);
border-radius:15px;
}

/* IMAGE */

.player-image{
width:110px;
height:110px;
margin:0 auto 10px;
border-radius:50%;
overflow:hidden;
border:3px solid rgba(255,255,255,0.4);
}

.player-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:50%;
}

.no-image{
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
}

/* INFO */

.card-info{
text-align:center;
margin-bottom:10px;
}

.card-info h3{
margin-bottom:5px;
}

.card-info span{
font-size:13px;
opacity:0.8;
}

/* OVERALL */

.overall{
position:absolute;
top:10px;
right:10px;
background:#000;
padding:6px 10px;
border-radius:10px;
font-weight:bold;
}

/* MVP */

.mvp-badge{
position:absolute;
top:10px;
left:10px;
background:#ff4757;
padding:6px 10px;
border-radius:20px;
font-size:12px;
}

/* STATS */

.stat-row{
margin-bottom:8px;
}

.stat-row span{
font-size:12px;
display:block;
margin-bottom:3px;
}

.bar{
height:8px;
background:rgba(255,255,255,0.2);
border-radius:10px;
overflow:hidden;
}

.bar div{
height:100%;
background:#00ffcc;
}

/* BIO */

.player-bio{
margin-top:12px;
font-size:13px;
background:rgba(0,0,0,0.3);
padding:12px;
border-radius:12px;
font-style:italic;
}

/* TITLE */

.page-title{
text-align:center;
margin:40px 0;
font-size:32px;
}


/* ============================= */
/* TEAM HERO FIX 🔥 */
/* ============================= */

.team-page .hero{
height:280px; /* mindre hero */
display:flex;
align-items:center;
justify-content:center;
}

/* flytta upp loggan */

.team-page .hero-overlay{
align-items:flex-end;
padding-bottom:30px;
}

/* logo size */

.team-page .site-logo{
width:550px;
max-width:90%;
}

/* ta bort extra luft */

.team-page .hero-inner{
margin-top:-20px;
}


/* ============================= */
/* TEAM PRO MAX 😈 */
/* ============================= */

/* GRID */
.team-page .players-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
padding:30px 0;
}

/* CARD BASE */
.player-card-new{
border-radius:20px;
padding:20px;
position:relative;
overflow:hidden;
color:#fff;
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* COLORS */

.player-card-new.blue{
background:linear-gradient(145deg,#1e3c72,#2a5298);
}

.player-card-new.purple{
background:linear-gradient(145deg,#5f2c82,#49a09d);
}

.player-card-new.gold{
background:linear-gradient(145deg,#d4af37,#ffd700);
color:#000;
}

/* HOVER */

.player-card-new:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

/* RANK */

.rank{
position:absolute;
top:10px;
left:10px;
background:rgba(0,0,0,0.6);
padding:5px 10px;
border-radius:10px;
font-size:12px;
}

/* MVP */

.mvp-badge{
position:absolute;
top:10px;
right:10px;
background:#ff4757;
padding:5px 10px;
border-radius:20px;
font-size:12px;
}

/* OVERALL */

.overall{
position:absolute;
bottom:10px;
right:10px;
background:#000;
padding:6px 10px;
border-radius:10px;
font-weight:bold;
}

/* IMAGE */

.player-image{
width:110px;
height:110px;
margin:10px auto;
border-radius:50%;
overflow:hidden;
border:3px solid rgba(255,255,255,0.4);
}

.player-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* INFO */

.card-info{
text-align:center;
}

.position{
font-size:13px;
opacity:0.8;
}

/* STATS */

.stat-row{
margin-bottom:8px;
}

.stat-row span{
font-size:12px;
}

.bar{
height:8px;
background:rgba(255,255,255,0.2);
border-radius:10px;
overflow:hidden;
}

.bar div{
height:100%;
background:#00ffcc;
}

/* BIO */

.player-bio{
margin-top:12px;
font-size:13px;
background:rgba(0,0,0,0.25);
padding:10px;
border-radius:10px;
}


.site-nav .logo img{
height:40px;
width:auto;
object-fit:contain;
}



_______________________________________

/* ============================= */
/* ADMIN / DASHBOARD 😈 */
/* ============================= */

.dashboard-page{
padding:30px 0;
}

/* LAYOUT */

.admin-layout{
display:grid;
grid-template-columns:240px 1fr;
gap:25px;
}

/* SIDEBAR */

.admin-sidebar{
background:#0f1f3c;
color:white;
padding:20px;
border-radius:14px;
display:flex;
flex-direction:column;
gap:8px;
height:fit-content;
}

.admin-sidebar h3{
margin-bottom:10px;
}

.admin-sidebar a{
color:white;
text-decoration:none;
padding:10px 12px;
border-radius:8px;
font-weight:500;
transition:0.2s;
}

.admin-sidebar a:hover{
background:#2f7ce8;
}

.admin-sidebar .active{
background:#2f7ce8;
}

/* CONTENT */

.admin-content{
background:white;
padding:25px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
min-height:500px;
}

/* DASHBOARD GRID */

.dashboard-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-bottom:25px;
}

/* CARD */

.dashboard-card{
background:#f4f7fb;
padding:20px;
border-radius:14px;
transition:0.3s;
}

.dashboard-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.dashboard-card h3{
margin-bottom:8px;
font-size:15px;
}

.dashboard-value{
font-size:28px;
font-weight:700;
color:#2f7ce8;
}

/* TOP PLAYERS */

.top-player{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid #eee;
}

.top-player:last-child{
border-bottom:none;
}

/* MOBILE */

@media(max-width:900px){
.admin-layout{
grid-template-columns:1fr;
}
}


/* ============================= */
/* DASHBOARD ULTRA 😈 */
/* ============================= */

.dashboard-actions{
display:flex;
gap:10px;
margin:20px 0;
flex-wrap:wrap;
}

/* BOX */

.dashboard-box{
background:white;
padding:20px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
margin-bottom:20px;
}

/* ICON */

.dashboard-card .icon{
font-size:22px;
margin-bottom:5px;
}

/* HOVER */

.dashboard-card:hover{
background:#eef3ff;
}

/* CHART */

canvas{
margin-top:15px;
}

/* TOP LIST */

.top-player{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid #eee;
font-size:14px;
}


---------------------------------------------


/* =============================
PLAYERS PRO UI 😈
============================= */

.players-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.add-player-btn{
font-size:14px;
}

/* MODAL */

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
z-index:999;
}

.modal-content{
background:white;
padding:25px;
border-radius:14px;
width:400px;
box-shadow:0 20px 60px rgba(0,0,0,0.3);
animation:fadeIn .3s ease;
}

.modal-content h3{
margin-bottom:15px;
}

.modal-content input,
.modal-content textarea{
width:100%;
padding:10px;
margin-bottom:10px;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
}

.modal-content textarea{
height:80px;
resize:none;
}

.close{
position:absolute;
right:20px;
top:15px;
font-size:22px;
cursor:pointer;
}

/* PLAYER CARDS UPGRADE */

.player-card-new{
transition:.3s;
}

.player-card-new:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

/* MVP GLOW 😈 */

.player-card-new.gold{
box-shadow:0 0 20px rgba(255,215,0,0.5);
}

/* animation */

@keyframes fadeIn{
from{opacity:0; transform:scale(0.9);}
to{opacity:1; transform:scale(1);}
}
_____________________________________________


/* =============================
MODAL PRO 😈
============================= */

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:9999;
}

.modal-content{
background:white;
padding:30px;
border-radius:16px;
width:400px;
max-width:90%;
box-shadow:0 20px 50px rgba(0,0,0,0.3);
position:relative;
animation:fadeIn 0.3s ease;
}

.modal-content input{
width:100%;
padding:10px;
margin-bottom:10px;
border-radius:8px;
border:1px solid #ccc;
}

.close{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}

@keyframes fadeIn{
from{transform:scale(0.9);opacity:0;}
to{transform:scale(1);opacity:1;}
}



_____________________________________________


.player-card-new {
    position: relative;
}

.player-actions {
    position: relative;
    z-index: 20;
}

.card-top,
.stats {
    pointer-events: none;
}

__________________________________________________



/* =============================
PLAYER ACTION BUTTONS PRO 😈
============================= */

.player-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BASE */
.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

/* EDIT (BLUE GLOW) */
.btn-icon.edit:hover {
    background: #2f7ce8;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(47,124,232,0.6);
}

/* DELETE (RED GLOW 😈) */
.btn-icon.delete:hover {
    background: #ff3b3b;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255,59,59,0.6);
}

/* CLICK EFFECT */
.btn-icon:active {
    transform: scale(0.92);
}

/* ICON SMOOTH */
.btn-icon i {
    transition: transform 0.2s ease;
}

/* ICON SPIN HOVER 😏 */
.btn-icon.edit:hover i {
    transform: rotate(-10deg);
}

.btn-icon.delete:hover i {
    transform: rotate(10deg);
}

________________________________________________________

/* =============================
LOGIN PAGE PRO 😈
============================= */

.login-page {
display: flex;
justify-content: center;
align-items: center;
min-height: 70vh;
}

/* CARD */
.login-card {
width: 380px;
max-width: 95%;
background: #fff;
padding: 30px;
border-radius: 16px;
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
text-align: center;
animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
from {opacity: 0; transform: translateY(15px);}
to {opacity: 1; transform: translateY(0);}
}

.login-card h2 {
margin-bottom: 20px;
}

/* INPUTS */
.login-form input {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border-radius: 10px;
border: 1px solid #ddd;
font-size: 14px;
transition: all 0.2s;
}

.login-form input:focus {
border-color: #2f7ce8;
outline: none;
box-shadow: 0 0 8px rgba(47,124,232,0.3);
}

/* BUTTON */
.login-form .btn {
width: 100%;
padding: 12px;
border-radius: 10px;
background: #2f7ce8;
color: #fff;
font-weight: bold;
border: none;
cursor: pointer;
transition: all 0.25s;
}

.login-form .btn:hover {
background: #1f5fd1;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(47,124,232,0.4);
}

/* ERROR */
.error-message {
background: #ffe5e5;
color: #c20000;
padding: 10px;
border-radius: 8px;
margin-bottom: 15px;
font-size: 14px;
}

/* REGISTER */
.login-register {
margin-top: 15px;
font-size: 14px;
}

.login-register a {
color: #2f7ce8;
font-weight: bold;
text-decoration: none;
}

.login-register a:hover {
text-decoration: underline;
}



_______________________________________


/* =============================
LOGIN V9 ULTRA 😈
============================= */

.login-body{
margin:0;
font-family:Arial, sans-serif;
background: linear-gradient(135deg, #0f1f3c, #2f7ce8);
height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

/* CENTER WRAPPER */
.login-wrapper{
width:100%;
display:flex;
justify-content:center;
align-items:center;
}

/* CARD */
.login-card{
width:380px;
max-width:90%;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(10px);
padding:35px;
border-radius:18px;
box-shadow:0 20px 60px rgba(0,0,0,0.3);
text-align:center;
animation:fadeIn 0.5s ease;
}

/* LOGO */
.login-logo{
width:110px;
margin-bottom:15px;
}

/* TITLE */
.login-card h2{
margin-bottom:20px;
}

/* INPUTS */
.login-form input{
width:100%;
padding:13px;
margin-bottom:15px;
border-radius:10px;
border:1px solid #ddd;
font-size:14px;
transition:0.2s;
}

.login-form input:focus{
border-color:#2f7ce8;
outline:none;
box-shadow:0 0 10px rgba(47,124,232,0.3);
}

/* PASSWORD ICON */
.password-group{
position:relative;
}

.toggle-password{
position:absolute;
right:10px;
top:50%;
transform:translateY(-50%);
cursor:pointer;
font-size:14px;
}

/* BUTTON */
.login-btn{
width:100%;
padding:13px;
border:none;
border-radius:12px;
background:#2f7ce8;
color:#fff;
font-weight:bold;
cursor:pointer;
transition:0.25s;
}

.login-btn:hover{
background:#1f5fd1;
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(47,124,232,0.5);
}

/* ERROR */
.error-message{
background:#ffe5e5;
color:#c20000;
padding:10px;
border-radius:8px;
margin-bottom:15px;
font-size:14px;
}

/* ANIMATION */
@keyframes fadeIn{
from{opacity:0; transform:translateY(20px);}
to{opacity:1; transform:translateY(0);}
}



_____________________________________________

/* =============================
ULTIMATE LOGIN 😈🔥
============================= */

.login-body{
margin:0;
font-family:Arial;
height:100vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
background:#0f1f3c;
}

/* 🔥 ANIMATED BACKGROUND */
.bg-animated{
position:absolute;
width:100%;
height:100%;
background:radial-gradient(circle at 20% 20%, #2f7ce8, transparent 40%),
radial-gradient(circle at 80% 80%, #1f5fd1, transparent 40%);
animation:moveBg 10s infinite alternate;
z-index:0;
}

@keyframes moveBg{
0%{transform:translate(0,0);}
100%{transform:translate(-30px,-30px);}
}

/* CENTER */
.login-wrapper{
position:relative;
z-index:2;
}

/* 💎 GLASS CARD */
.login-card{
width:380px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(20px);
padding:35px;
border-radius:20px;
box-shadow:0 25px 70px rgba(0,0,0,0.6);
text-align:center;
color:#fff;
animation:fadeIn 0.5s ease;
border:1px solid rgba(255,255,255,0.15);
}

/* LOGO */
.login-logo{
width:100px;
margin-bottom:10px;
filter:drop-shadow(0 5px 20px rgba(0,0,0,0.4));
}

/* INPUTS */
.login-form input{
width:100%;
padding:13px;
margin-bottom:15px;
border-radius:12px;
border:none;
background:rgba(255,255,255,0.15);
color:#fff;
font-size:14px;
}

.login-form input::placeholder{
color:#ddd;
}

.login-form input:focus{
outline:none;
box-shadow:0 0 10px rgba(47,124,232,0.6);
}

/* PASSWORD */
.password-group{
position:relative;
}

.toggle-password{
position:absolute;
right:10px;
top:50%;
transform:translateY(-50%);
cursor:pointer;
}

/* 🔥 BUTTON */
.login-btn{
width:100%;
padding:14px;
border:none;
border-radius:14px;
background:linear-gradient(45deg,#2f7ce8,#1f5fd1);
color:#fff;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.login-btn:hover{
transform:translateY(-3px) scale(1.02);
box-shadow:0 15px 35px rgba(47,124,232,0.7);
}

/* ERROR */
.error-message{
background:rgba(255,0,0,0.2);
padding:10px;
border-radius:10px;
margin-bottom:10px;
}

/* ANIMATION */
@keyframes fadeIn{
from{opacity:0; transform:translateY(20px);}
to{opacity:1; transform:translateY(0);}
}


__________________________________________________


/* =============================
DASHBOARD ULTRA 😈
============================= */

/* STATS */
.dashboard-stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
margin:20px 0;
}

.stat-card{
background:#fff;
padding:15px;
border-radius:14px;
display:flex;
align-items:center;
gap:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.2s;
}

.stat-card:hover{
transform:translateY(-5px);
}

.stat-icon{
font-size:24px;
}

/* ACTIONS */
.dashboard-actions{
margin-bottom:20px;
display:flex;
gap:10px;
flex-wrap:wrap;
}

.action-btn{
background:#2f7ce8;
color:#fff;
padding:10px 15px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
transition:0.2s;
}

.action-btn:hover{
background:#1f5fd1;
transform:translateY(-2px);
}

/* MAIN GRID */
.dashboard-main{
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
}

/* BOX */
.dashboard-box{
background:#fff;
padding:20px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
margin-bottom:20px;
}

/* LIST ITEMS */
.list-item{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid #eee;
}

/* MOBILE */
@media(max-width:900px){
.dashboard-main{
grid-template-columns:1fr;
}
}


/* =============================
MATCHES ULTRA 😈
============================= */

.match-form-card{
background:#fff;
padding:20px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
margin-bottom:20px;
}

/* GRID FORM */
.form-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:10px;
margin-bottom:10px;
}

.match-form input{
width:100%;
padding:10px;
border-radius:10px;
border:1px solid #ddd;
}

.match-form textarea{
width:100%;
padding:10px;
border-radius:10px;
border:1px solid #ddd;
margin-bottom:10px;
}

/* MATCH GRID */
.matches-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:15px;
}

/* CARD */
.match-card{
background:#fff;
padding:18px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.2s;
position:relative;
}

.match-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

/* HEADER */
.match-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.match-score{
background:#2f7ce8;
color:#fff;
padding:5px 10px;
border-radius:8px;
font-weight:bold;
}

/* INFO */
.match-info{
font-size:14px;
color:#444;
display:flex;
flex-direction:column;
gap:4px;
}

/* ACTIONS */
.match-actions{
margin-top:10px;
display:flex;
gap:10px;
}


_____________________________________________


/* PLAYER BIO 😈 */
.player-bio{
margin-top:10px;
padding:10px;
background:rgba(255,255,255,0.08);
border-radius:10px;
font-size:13px;
color:#ddd;
line-height:1.4;
}





/* =============================
TEAM FIX FINAL 😈🔥
============================= */

/* CARD CLEAN */
.player-card-new{
background:linear-gradient(145deg,#1e3c72,#2a5298);
border-radius:18px;
padding:20px;
color:#fff;
position:relative;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,0.3);
transition:0.25s;
text-align:center;
}

.player-card-new:hover{
transform:translateY(-6px);
box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

/* REMOVE WEIRD OVERLAY */
.player-card-new::before{
display:none;
}

/* IMAGE */
.player-image{
width:110px;
height:110px;
margin:10px auto;
border-radius:50%;
overflow:hidden;

/* ❌ TA BORT border */
border:none;

/* ✅ EN snygg glow istället */
box-shadow:0 0 0 3px rgba(255,255,255,0.25),
           0 8px 20px rgba(0,0,0,0.3);
}

.player-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:50%;
}

/* NAME */
.card-info h3{
margin:10px 0 5px;
font-size:18px;
}

/* POSITION */
.position{
font-size:13px;
opacity:0.8;
}

/* STATS */
.stat-row{
margin:8px 0;
text-align:left;
}

.bar{
background:rgba(255,255,255,0.2);
border-radius:10px;
height:6px;
overflow:hidden;
}

.bar div{
height:100%;
border-radius:10px;
}

/* COLORS */
.stat-row:nth-child(1) .bar div{background:#ff4d4d;}
.stat-row:nth-child(2) .bar div{background:#4da6ff;}
.stat-row:nth-child(3) .bar div{background:#ffaa00;}
.stat-row:nth-child(4) .bar div{background:#00ffc8;}

/* FIX OVERALL (NO MORE BLACK BAR 😈) */
.overall{
top:10px;
right:10px;
bottom:auto;
background:rgba(0,0,0,0.6);
padding:6px 10px;
border-radius:10px;
}

/* RANK */
.rank{
background:rgba(0,0,0,0.5);
padding:5px 8px;
border-radius:8px;
font-size:12px;
}

/* BIO CLEAN */
.player-bio{
margin-top:12px;
background:rgba(0,0,0,0.25);
padding:10px;
border-radius:10px;
font-size:13px;
font-style:italic;
}

/* GRID FIX */
.team-page .players-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

_____________________________________________________
detta funkar med innan linjen
_____________________________________________________

/* =============================
MATCH FULL UI 😈
============================= */

.match-card-hero{
background:linear-gradient(135deg,#1f3c88,#2f7ce8);
color:#fff;
padding:25px;
border-radius:18px;
text-align:center;
margin-bottom:20px;
}

.score.big{
font-size:22px;
padding:8px 16px;
}

.match-card-box{
background:#fff;
padding:20px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
margin-bottom:20px;
}

.matches-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.match-card-public{
background:#fff;
padding:20px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:0.25s;
}

.match-card-public:hover{
transform:translateY(-5px);
}

.match-score-row{
display:flex;
justify-content:space-between;
align-items:center;
font-weight:bold;
margin-bottom:10px;
}

.score{
background:#2f7ce8;
color:#fff;
padding:6px 12px;
border-radius:10px;
}

.match-meta{
font-size:14px;
color:#555;
display:flex;
flex-direction:column;
gap:4px;
}

.player-row{
display:flex;
justify-content:space-between;
padding:8px 0;
border-bottom:1px solid #eee;
}

.player-row:last-child{
border-bottom:none;
}

.countdown{
margin:10px 0;
font-weight:bold;
}

________________________________________

/* =============================
MAIN MATCH CARD 😈🔥
============================= */

.match-main-wrapper{
display:flex;
justify-content:center;
margin:30px 0;
}

.match-main-card{
width:100%;
max-width:700px;
background:linear-gradient(135deg,#1e3c72,#2a5298);
color:#fff;
padding:35px;
border-radius:22px;
text-align:center;
box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

.match-teams{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.team{
font-size:20px;
font-weight:bold;
width:40%;
}

.vs{
background:#fff;
color:#2f7ce8;
padding:10px 18px;
border-radius:14px;
font-weight:bold;
box-shadow:0 0 20px rgba(255,255,255,0.6);
}

.match-info-row{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
font-size:14px;
margin-bottom:15px;
opacity:0.9;
}

.countdown{
font-size:18px;
font-weight:bold;
color:#00ffcc;
text-shadow:0 0 10px rgba(0,255,200,0.7);
margin-bottom:15px;
}

____________________________________________________________

/* NEWS PRO 😈 */

.news-pro-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.news-pro-card{
position:relative;
border-radius:12px;
overflow:hidden;
cursor:pointer;
}

.news-pro-card img{
width:100%;
height:160px;
object-fit:cover;
}

.news-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:15px;
background:linear-gradient(transparent,rgba(0,0,0,0.8));
color:#fff;
}

.top-player-card{
display:flex;
justify-content:space-between;
padding:10px;
margin-bottom:8px;
background:#eef3ff;
border-radius:10px;
font-weight:600;
}

_________________________________________________________________________________

/* =============================
HIGHLIGHT ROW
============================= */

.highlight-row{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
margin:30px 0;
}

.highlight-card{
background:#fff;
padding:20px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
text-align:center;
}

/* =============================
NEWS PRO 😈
============================= */

.news-pro-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.news-pro-card{
position:relative;
border-radius:12px;
overflow:hidden;
display:block;
text-decoration:none;
color:inherit;
transition:0.3s;
}

.news-pro-card:hover{
transform:scale(1.03);
box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.news-pro-card img{
width:100%;
height:160px;
object-fit:cover;
}

.news-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:15px;
background:linear-gradient(transparent,rgba(0,0,0,0.9));
color:#fff;
}

/* FEATURED */

.news-featured-pro{
position:relative;
border-radius:16px;
overflow:hidden;
margin-bottom:30px;
box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

.news-featured-pro img{
width:100%;
height:350px;
object-fit:cover;
}

.featured-overlay-pro{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:30px;
background:linear-gradient(transparent,rgba(0,0,0,0.9));
color:#fff;
}

/* TOP PLAYERS */

.top-player-card{
display:flex;
justify-content:space-between;
padding:10px;
margin-bottom:8px;
background:#eef3ff;
border-radius:10px;
font-weight:600;
}

____________________________________________________________


/* ============================= */
/* NEXT MATCH HERO FINAL FIX */
/* ============================= */

.next-match-hero{
display:block;
text-decoration:none;
cursor:pointer;

background:linear-gradient(135deg,#2a5298,#1e3c72);
color:#fff;
padding:25px;
border-radius:18px;
text-align:center;
margin:15px 0;

box-shadow:0 10px 25px rgba(0,0,0,0.2);
transition:0.25s;
position:relative;
overflow:hidden;
}

/* HOVER */
.next-match-hero:hover{
transform:translateY(-4px);
box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

/* LIGHT EFFECT */
.next-match-hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(120deg,rgba(255,255,255,0.15),transparent);
opacity:0;
transition:0.3s;
}

.next-match-hero:hover::before{
opacity:1;
}

/* TEAMS */
.next-match-hero .teams{
display:flex;
justify-content:center;
align-items:center;
gap:25px;
font-size:22px;
font-weight:700;
margin-bottom:10px;
flex-wrap:wrap;
}

/* VS */
.next-match-hero .vs{
background:#fff;
color:#2a5298;
padding:6px 14px;
border-radius:12px;
font-size:14px;
font-weight:700;
}

/* META */
.next-match-hero .meta{
margin-top:10px;
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
font-size:13px;
}

.next-match-hero .meta span{
background:rgba(255,255,255,0.15);
padding:6px 10px;
border-radius:8px;
}

/* BUTTON FIX */
.next-match-hero .btn{
margin-top:15px;
background:#ffffff;
color:#2a5298;
font-weight:600;
border-radius:10px;
padding:10px 18px;
display:inline-block;

/* VIKTIG FIX */
pointer-events:none;
}

/* BUTTON LOOK */
.next-match-hero:hover .btn{
background:#eaf1ff;
}
_________________________________________________________

/* NEWS */
.news-pro-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.news-pro-card{
position:relative;
border-radius:12px;
overflow:hidden;
display:block;
text-decoration:none;
color:inherit;
transition:0.3s;
}

.news-pro-card:hover{
transform:scale(1.03);
box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.news-pro-card img{
width:100%;
height:160px;
object-fit:cover;
}

.news-overlay{
position:absolute;
bottom:0;
width:100%;
padding:15px;
background:linear-gradient(transparent,rgba(0,0,0,0.9));
color:#fff;
}

/* FEATURED */
.news-featured-pro{
position:relative;
border-radius:16px;
overflow:hidden;
margin-bottom:30px;
box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

.news-featured-pro img{
width:100%;
height:350px;
object-fit:cover;
}

.featured-overlay-pro{
position:absolute;
bottom:0;
padding:30px;
background:linear-gradient(transparent,rgba(0,0,0,0.9));
color:#fff;
}

/* GRID CARDS */
.card-hover:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* PLAYERS */
.top-player-row{
display:flex;
justify-content:space-between;
padding:10px;
background:#eef3ff;
border-radius:10px;
margin-bottom:8px;
}

/* ACTIVITY */
.activity-item{
padding:10px;
background:#f4f7fb;
border-radius:10px;
margin-bottom:8px;
}
_____________________________________________

/* =============================
NEWS PAGE PRO 😈
============================= */

.news-hero{
position:relative;
border-radius:16px;
overflow:hidden;
margin-bottom:30px;
}

.news-hero img{
width:100%;
height:350px;
object-fit:cover;
}

.news-hero-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:30px;
background:linear-gradient(transparent,rgba(0,0,0,0.9));
color:#fff;
}

/* LAYOUT */
.news-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
}

/* CONTENT */
.news-content{
background:#fff;
padding:25px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.news-intro{
font-size:18px;
font-weight:600;
margin-bottom:20px;
}

.news-text{
line-height:1.7;
font-size:15px;
}

/* SIDEBAR */
.news-sidebar{
background:#fff;
padding:20px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
height:fit-content;
}

.sidebar-item{
display:block;
padding:10px;
border-radius:8px;
margin-bottom:8px;
text-decoration:none;
color:#0f1f3c;
background:#f4f7fb;
transition:0.2s;
}

.sidebar-item:hover{
background:#2f7ce8;
color:#fff;
}

/* MOBILE */
@media(max-width:900px){
.news-layout{
grid-template-columns:1fr;
}
}


/* =============================
NEWS CLEAN PRO 😈🔥
============================= */

/* HERO */
.news-hero{
position:relative;
border-radius:16px;
overflow:hidden;
margin-bottom:30px;
}

.news-hero img{
width:100%;
height:360px;
object-fit:cover;
}

.news-hero-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:30px;
background:linear-gradient(transparent,rgba(0,0,0,0.85));
color:#fff;
}

/* GRID */
.news-layout{
display:grid;
grid-template-columns:2.2fr 1fr;
gap:30px;
}

/* CONTENT */
.news-content{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.news-lead{
font-size:20px;
font-weight:600;
margin-bottom:20px;
color:#2f7ce8;
}

.news-text{
font-size:15px;
line-height:1.8;
}

/* SIDEBAR */
.news-sidebar{
background:#fff;
padding:20px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
height:fit-content;
}

.sidebar-link{
display:block;
padding:10px;
margin-bottom:8px;
background:#f4f7fb;
border-radius:8px;
text-decoration:none;
color:#0f1f3c;
transition:0.2s;
}

.sidebar-link:hover{
background:#2f7ce8;
color:#fff;
}

/* RELATED */
.related-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:20px;
}

.related-card{
display:block;
background:#fff;
border-radius:14px;
overflow:hidden;
text-decoration:none;
color:#000;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.2s;
}

.related-card:hover{
transform:translateY(-5px);
}

.related-card img{
width:100%;
height:160px;
object-fit:cover;
}

.related-content{
padding:15px;
}

/* MOBILE */
@media(max-width:900px){
.news-layout{
grid-template-columns:1fr;
}
}



/* =============================
NEWS GOD MODE V2 😈🔥
============================= */

/* HERO */
.news-hero{
position:relative;
border-radius:18px;
overflow:hidden;
margin-bottom:30px;
}

.news-hero img{
width:100%;
height:380px;
object-fit:cover;
}

.news-hero-overlay{
position:absolute;
bottom:0;
width:100%;
padding:30px;
background:linear-gradient(transparent,rgba(0,0,0,0.9));
color:#fff;
}

.news-meta{
margin-top:10px;
font-size:14px;
opacity:0.9;
}

/* LAYOUT */
.news-layout{
display:grid;
grid-template-columns:2.2fr 1fr;
gap:30px;
}

/* CONTENT */
.news-content{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.news-lead{
font-size:20px;
font-weight:600;
margin-bottom:20px;
color:#2f7ce8;
}

.news-text{
line-height:1.8;
font-size:15px;
}

/* ACTIONS */
.news-actions{
margin-top:20px;
}

.like-btn{
background:#ff4757;
color:#fff;
padding:10px 15px;
border-radius:10px;
text-decoration:none;
display:inline-block;
}

/* COMMENTS */
.comments{
margin-top:30px;
}

.comment-form input,
.comment-form textarea{
width:100%;
padding:10px;
margin-bottom:10px;
border-radius:10px;
border:1px solid #ddd;
}

.comment{
background:#f4f7fb;
padding:10px;
border-radius:10px;
margin-bottom:10px;
}

/* SIDEBAR */
.news-sidebar{
display:flex;
flex-direction:column;
gap:10px;
}

.sidebar-card{
display:block;
background:#fff;
border-radius:12px;
overflow:hidden;
text-decoration:none;
color:#000;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
transition:0.2s;
}

.sidebar-card:hover{
transform:translateY(-3px);
}

.sidebar-card img{
width:100%;
height:120px;
object-fit:cover;
}

.sidebar-card span{
display:block;
padding:10px;
font-size:14px;
}

/* MOBILE */
@media(max-width:900px){
.news-layout{
grid-template-columns:1fr;
}
}


_____________________________________________________

.news-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:25px;
}

.news-card{
background:#fff;
padding:20px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
margin-bottom:20px;
}

.news-hero{
width:100%;
border-radius:12px;
margin:10px 0;
}

.news-content{
line-height:1.6;
margin-top:10px;
}

.like-btn{
background:#ff4757;
color:#fff;
border:none;
padding:10px 15px;
border-radius:10px;
cursor:pointer;
margin-top:10px;
}

.comment-form input,
.comment-form textarea{
width:100%;
padding:10px;
margin-bottom:10px;
border-radius:8px;
border:1px solid #ddd;
}

.comment{
background:#f4f7fb;
padding:10px;
border-radius:10px;
margin-top:10px;
}

.news-link{
display:block;
padding:8px 0;
text-decoration:none;
color:#2f7ce8;
font-weight:500;
}

.news-link:hover{
text-decoration:underline;
}

____________________________________________________________

/* =============================
NEWS GOD MODE V3 😈🔥
============================= */

.news-page{
padding-top:50px;
}

.news-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
align-items:start;
}

/* CARD */
.news-card{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.12);
margin-bottom:20px;
}

/* TITLE */
.section-title-news{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
}

/* IMAGE */
.news-hero{
width:100%;
border-radius:14px;
margin:15px 0;
}

/* CONTENT */
.news-content{
margin-top:15px;
padding:15px;
background:#f4f7fb;
border-radius:12px;
line-height:1.7;
}

/* LIKE */
.like-btn{
background:linear-gradient(45deg,#ff4757,#ff6b6b);
color:#fff;
border:none;
padding:10px 18px;
border-radius:12px;
cursor:pointer;
margin-top:15px;
transition:0.3s;
}

.like-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(255,71,87,0.5);
}

/* COMMENTS */
.comment-form input,
.comment-form textarea{
width:100%;
padding:10px;
margin-bottom:10px;
border-radius:8px;
border:1px solid #ddd;
}

.comment{
background:#f4f7fb;
padding:12px;
border-radius:10px;
margin-top:12px;
}

/* SIDEBAR */
.news-sidebar{
position:sticky;
top:90px;
}

.news-link{
display:block;
padding:10px;
border-radius:10px;
background:#f4f7fb;
margin-bottom:8px;
text-decoration:none;
color:#0f1f3c;
transition:0.2s;
}

.news-link:hover{
background:#2f7ce8;
color:#fff;
}

/* MOBILE */
@media(max-width:900px){
.news-layout{
grid-template-columns:1fr;
}
.news-sidebar{
position:static;
}
}


_________________________________________________________________________________

/* =============================
NAVBAR FIX 😈🔥
============================= */

.site-nav-wrap{
background:white;
border-bottom:1px solid #ddd;
position:sticky;
top:0;
z-index:10;
padding:6px 0; /* mindre höjd */
}

.site-nav{
display:flex;
justify-content:center;
gap:12px;
padding:8px 12px; /* mindre padding */
}

.site-nav a{
padding:6px 12px;
border-radius:20px;
text-decoration:none;
color:#0f1f3c;
font-weight:600;
}

.site-nav a:hover{
background:#eef3ff;
}

.site-nav .active{
background:#2f7ce8;
color:white;
}


/* =============================
SPACING FIX (VIKTIGASTE)
============================= */

.container.news-page{
margin-top:40px; /* luft från navbar */
}


/* =============================
NEWS GOD MODE V3 😈🔥
============================= */

.news-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
align-items:start;
}

/* MAIN CARD */
.news-card{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.12);
margin-bottom:20px;
}

/* TITLE */
.section-title-news{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
}

/* IMAGE */
.news-hero{
width:100%;
border-radius:14px;
margin:15px 0;
}

/* CONTENT BOX */
.news-content{
margin-top:15px;
padding:15px;
background:#f4f7fb;
border-radius:12px;
line-height:1.7;
}

/* LIKE BUTTON */
.like-btn{
background:linear-gradient(45deg,#ff4757,#ff6b6b);
color:#fff;
border:none;
padding:10px 18px;
border-radius:12px;
cursor:pointer;
margin-top:15px;
transition:0.3s;
}

.like-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(255,71,87,0.5);
}

/* COMMENTS FORM */
.comment-form input,
.comment-form textarea{
width:100%;
padding:10px;
margin-bottom:10px;
border-radius:8px;
border:1px solid #ddd;
}

/* COMMENT */
.comment{
background:#f4f7fb;
padding:12px;
border-radius:10px;
margin-top:12px;
}

/* SIDEBAR */
.news-sidebar{
position:sticky;
top:90px;
}

/* LINKS */
.news-link{
display:block;
padding:10px;
border-radius:10px;
background:#f4f7fb;
margin-bottom:8px;
text-decoration:none;
color:#0f1f3c;
transition:0.2s;
}

.news-link:hover{
background:#2f7ce8;
color:#fff;
}


/* =============================
EXTRA CLEAN LOOK 😏
============================= */

.news-card:first-child{
margin-top:10px;
}


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

@media(max-width:900px){

.news-layout{
grid-template-columns:1fr;
}

.news-sidebar{
position:static;
}

.container.news-page{
margin-top:20px;
}

}
