/* HERO */

.hero{
overflow:hidden;
min-height:500px;
align-items:center;
padding-left:20px;
padding-top:20px;
   background-size: cover;        /* couvre tout le div, recadrage possible */
   background-position:top right;   /* centre l’image pour que les zones importantes restent visibles */
   background-repeat: no-repeat;  /* pas de répétition */
   position: relative;
   border:none;
   
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.hero h1 {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255,255,255,0.4); }
    to { text-shadow: 0 0 25px rgba(255,50,90,0.9); }
}

/* CONTENT */

.hero-content{
	position: relative;
max-width:650px;
z-index: 2;
}

/* SEARCH */

.search-box{

display:flex;
align-items:center;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(12px);

border-radius:60px;
padding:5px;

margin-bottom:10px;

border:1px solid rgba(255,255,255,0.08);

}

.search-box input{

flex:1;
background:none;
border:none;
outline:none;
color:white;

padding:4px 8px;
font-size:16px;

}

.search-btn{

background:linear-gradient(135deg,#FF0000,#990000);
border:none;

width:70px;
height:40px;

border-radius:25px;
cursor:pointer;

font-size:18px;
color:white;

transition:0.2s;

}

.search-btn:hover{
transform:scale(1.1);
box-shadow:0 0 15px #FF0000;
}

/* FILTERS */

.filters{

display:flex;
flex-wrap:wrap;
gap:5px;

margin-bottom:20px;

}

.filter{
color:#FFF;
padding:8px 16px;
border-radius:20px;

background:rgba(255,255,255,0.08);

font-size:11px;

cursor:pointer;
transition:0.2s;

}

.filter:hover{

background:#FF0000;
}

/* TITLE */

.hero h1{
color:#FFF;
font-size:36px;
font-weight:800;
line-height:1.1;
text-shadow:0 0 15px rgba(255,255,255,0.6);
margin-bottom:10px;

}

.highlight{

color:#ff2d22;
font-size:38px;
text-shadow:0 0 15px rgba(255,50,90,0.6);

}

/* TEXT */

.hero p{

font-size:16px;
color:#FFF;
text-shadow:0 0 15px rgba(255,255,255,0.6);
margin-bottom:20px;

}

/* BUTTON */

.cta{

background:linear-gradient(135deg,#FF0000,#550000);
color:#FFFFFF;

padding:10px 22px;
text-shadow:0 0 15px rgba(255,50,90,0.6);
box-shadow:0 0 25px rgba(255,255,255,0.6);
font-size:18px;

border-radius:50px;

cursor:pointer;

transition:0.25s;

}

.cta:hover{

transform:translateX(3px);

box-shadow:0 0 45px rgba(255,255,255,0.6);

}

.hero-logo {
    position: relative;
    display: inline-block;
	left:-50px;
	width:450px;
}

.hero-logo img {
    display: block;
    width: 400px;
    height: auto;
}

.overlay-text {
    position: absolute;
    top: 55px;
    left: 92px;
	text-transform: uppercase;
    color: white;
    font-size: 12px;
    text-align: center;

    text-shadow: 0 0 15px rgba(100,0,0,0.9);
}

.top-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
	position:absolute;
	right:-15px;
	top:15px;
}

/* TOGGLE */
.toggle-btna {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 15px;

    background: linear-gradient(145deg, #2a2d3a, #1c1f2b);
    border-radius: 15px;

    color: #ccc;
    font-size: 18px;

    cursor: pointer;
    transition: 0.2s;
}

.toggle-btna:hover {
    transform: scale(1.05);
}

/* BASE BUTTON */
.btna {
    border: none;
    padding: 12px 22px;
    border-radius: 15px;

    color: white;
    font-weight: 600;
    font-size: 14px;

    cursor: pointer;
    transition: 0.25s;

    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* BLUE BUTTON */
.btna.blue {
    background: linear-gradient(135deg, #1e6bff, #0044cc);
}

.btna.blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30,107,255,0.5);
}

/* RED BUTTON */
.btna.red {
    background: linear-gradient(135deg, #ff2d2d, #cc0000);
}

.btna.red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,45,45,0.5);
}

#style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: none;
}

#style-2::-webkit-scrollbar
{
	width: 5px;
	background-color: none;
}

#style-2::-webkit-scrollbar-thumb
{
	-webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0.3);
	background-color: #0F0;
}
#style-2 {
	scrollbar-width: thin;
    scrollbar-color: #666 #000;
}
html {
    overflow-y: scroll;
    scrollbar-width: thin;         /* taille fine */
    scrollbar-color: #666 #000; /* thumb / track */
	padding:0px;
}

.trending-card {
    max-width: 300px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(30,30,40,0.9), rgba(20,20,30,0.9));
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    color: #fff;
}

/* Title */
.title {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Item */
.trend-item {
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 5px 8px;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}

.trend-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 15px rgba(255,255,255,0.6);
	cursor: pointer;
}

/* Rank */
.rank {
    font-weight: 700;
    font-size: 16px;
    color: #ffcc00;
    width: 40px;
}

/* Thumbnail */
.thumb {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

/* CARD */
.game-card {
    position: relative;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* OVERLAY sombre */
.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    transition: 0.3s;
}

/* CONTENU GLASS */
.game-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: white;
}

/* TITRE */
.game-title {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 4px;
}

/* STATS */
.game-stats {
    font-size: 11px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* TREND NEON */
.trend {
    color: #00ff88;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0,255,136,0.7);
}

/* JOUEURS */
.players {
    color: #ccc;
}

/* BOUTON PLAY */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* BORDER RGB ANIMÉE */
.border-glow {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;

    z-index: 0;
    opacity: 0;
    transition: 0.3s;
}

.border-glow::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 18px;
    background: transparent;
}

/* HOVER 🔥 */
.game-card:hover {
    transform: scale(1.06);
}

.game-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
	background: radial-gradient(circle, rgba(0,191,255,0.6), transparent 70%);
}

.game-card:hover .game-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.4));
}

.game-card:hover .border-glow {
    opacity: 1;
}

/* Arrow */
.arrow {
    color: #00ff9c;
    font-size: 26px;
    transition: 0.2s;
}

.trend-item:hover .arrow {
    transform: translateX(4px);
}

.stats-bar {
    background: linear-gradient(180deg, rgba(30,30,40,0.9), rgba(20,20,30,0.9));
    border-radius: 18px;
    padding: 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

/* STAT ITEM */
.stat-item {
    color: #fff;
    min-width: 100px;
}

/* ICON */
.icon {
    width: 3.px;
    height: 3.px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* COLORS */
.icon.red {
    background: linear-gradient(135deg, #ff3b3b, #ff0000);
    box-shadow: 0 0 12px rgba(255,0,0,0.5);
}

.icon.green {
    background: linear-gradient(135deg, #00ff9c, #00c96b);
    box-shadow: 0 0 12px rgba(0,255,150,0.5);
}

.icon.orange {
    background: linear-gradient(135deg, #ffb347, #ff7b00);
    box-shadow: 0 0 12px rgba(255,150,0,0.5);
}

/* TEXT */
.value {
    font-size: 16px;
    font-weight: 700;
}

.label {
    font-size: 10px;
    color: #aaa;
    letter-spacing: 1px;
}

/* DIVIDER */
.divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    margin: 0 20px;
}

	  /* CARD */
.mini-card {
    position: relative;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.35s ease;
}

/* OVERLAY */
.mini-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.15));
    transition: 0.3s;
}

/* CONTENU */
.mini-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.3);
    color: #fff;
}

/* TITRE */
.mini-title {
    font-size: 13px;
    font-weight: 700;
}

/* SOUS TEXTE */
.mini-sub {
    font-size: 11px;
    color: #aaa;
}

/* BORDER GLOW */
.mini-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background-size: 200% 200%;
    opacity: 0;
    transition: 0.3s;
}

/* HOVER */
.mini-card:hover {
    transform: scale(1.05);
}

.mini-card:hover .mini-glow {
    opacity: 1;
}
/* PLAY BUTTON */
.mini-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* petit glow bleu */
.mini-play::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,191,255,0.6), transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

/* HOVER EFFECT */
.mini-card:hover .mini-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mini-card:hover .mini-play::before {
    opacity: 1;
}


.neon-divider-animated {
    position: relative;
    height: 1px;
    width: 100%;
    background: rgba(0,191,255,0.2);
    margin: 10px 0 25px 0;
    overflow: hidden;
}

/* ligne glow */
.neon-divider-animated::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00bfff, transparent);
    box-shadow: 
        0 0 10px #00bfff,
        0 0 20px #00bfff,
        0 0 40px #00bfff;
    animation: scan 2s linear infinite;
}

/* animation scan */
@keyframes scan {
    0% { left: -50%; }
    100% { left: 100%; }
}
.hero-bg {
    position: relative;
    overflow: hidden;
	min-height:600px;
	padding-left:30px;
padding-top:20px;
border-radius:20px;
margin-left:-15px;
}

/* BACKGROUND ANIMÉ (indépendant) */
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('/img/hero-roblox12.png');
    background-size: cover;
    background-position: top right;

    z-index: 0;

    animation: heroPulse 8s ease-in-out infinite;
}

/* CONTENU AU DESSUS */
.hero-bg > * {
    position: relative;
    z-index: 1;
}
@keyframes heroPulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.008);
        filter: brightness(1.3);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

/* ===== BACKGROUND GLOBAL ===== */
.global-bg {
    position: fixed;
    inset: 0;
    z-index: -1;

    /* base + lumières */
    background: 
        radial-gradient(circle at 25% 30%, rgba(0,191,255,0.10), transparent 45%),
        radial-gradient(circle at 75% 70%, rgba(255,0,80,0.08), transparent 50%),
        #0b0f1a;

    overflow: hidden;
}

/* ===== LUMIÈRE DYNAMIQUE (très subtile) ===== */
.global-bg::before {
    content: "";
    position: absolute;
    inset: -10%;

    background: 
        radial-gradient(circle at 30% 40%, rgba(0,191,255,0.15), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255,0,100,0.12), transparent 60%);
    filter: blur(60px);
    opacity: 0.6;
    animation: bgFloat 6s ease-in-out infinite;
}

/* ===== GRAIN  ===== */
.global-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/img/asfalt-light.png");
    opacity: 0.2;
    pointer-events: none;
}

/* ===== ANIMATION ===== */
@keyframes bgFloat {
    0%,100% {
        transform: translate(0,0) scale(1);
    }
    50% {
        transform: translate(-140px, 130px) scale(3);
    }
}

/* ===== FIX BOOTSTRAP ===== */
body,
.container,
.container-fluid,
.row {
    background: transparent !important;
}

/* ===== CARTES (pour contraste propre) ===== */
.card {
    background: rgba(20, 20, 30, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.05);
}
.site-footer {
    margin-top: 50px;
    padding: 30px 15px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 24px;
    background: rgba(10, 10, 18, 0.75);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 25px rgba(255,255,255,0.04),
        0 0 50px rgba(255,0,80,0.05);
    backdrop-filter: blur(10px);
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.footer-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.015);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-stat-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 18px rgba(255,255,255,0.05),
        0 0 30px rgba(255,0,80,0.08);
}

.footer-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 0 18px rgba(255,255,255,0.08);
}

.footer-stat-text {
    min-width: 0;
}

.footer-stat-value {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 12px rgba(255,255,255,0.10);
}

.footer-stat-label {
    margin-top: 4px;
    color: rgba(255,255,255,0.68);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 14px;
}

.footer-links a {
    color: #b8bfd3;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.25);
}

.footer-disclaimer {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255,255,255,0.50);
    font-size: 11px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991.98px) {
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding: 20px 10px 30px;
    }

    .footer-inner {
        padding: 18px;
        border-radius: 18px;
    }

    .footer-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-stat-card {
        padding: 15px;
        border-radius: 16px;
    }

    .footer-stat-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .footer-stat-value {
        font-size: 18px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-disclaimer {
        font-size: 10px;
    }
}
.lang-switch {
    position: relative;
}

.lang-switch select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    backdrop-filter: blur(6px);
    transition: all 0.2s ease;
}

.lang-switch select:hover {
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.lang-switch select option {
    color: #000;
}

.top-notification-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.top-notification-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background: #1f2937;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
}

.top-notification-btn:hover {
    background: #273449;
}

.top-notification-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: #dc2626;
    color: #ffffff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    padding: 0 6px;
    box-sizing: border-box;
}

.top-notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 380px;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.30);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

.top-notification-dropdown.open {
    display: block;
}

.top-notification-dropdown-header {
    padding: 16px 18px;
    border-bottom: 1px solid #1f2937;
    background: #0f172a;
}

.top-notification-dropdown-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 4px;
}

.top-notification-dropdown-subtitle {
    font-size: 13px;
    color: #94a3b8;
}

.top-notification-dropdown-list {
    max-height: 360px;
    overflow-y: auto;
}

.top-notification-item {
    display: block;
    text-decoration: none;
    padding: 14px 18px;
    border-bottom: 1px solid #1f2937;
    transition: background 0.2s ease;
    color: #ffffff;
}

.top-notification-item:hover {
    background: #172033;
}

.top-notification-item.unread {
    background: rgba(37,99,235,0.08);
}

.top-notification-item.unread:hover {
    background: rgba(37,99,235,0.14);
}

.top-notification-item-title {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.top-notification-item-content {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 6px;
}

.top-notification-item-date {
    font-size: 12px;
    color: #64748b;
}

.top-notification-empty {
    padding: 18px;
    color: #94a3b8;
    font-size: 14px;
}

.top-notification-dropdown-footer {
    padding: 14px 18px;
    background: #0f172a;
    border-top: 1px solid #1f2937;
}

.top-notification-dropdown-footer a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: #2563eb;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: bold;
    transition: background 0.2s ease;
}

.top-notification-dropdown-footer a:hover {
    background: #1d4ed8;
}

@media (max-width: 600px) {
    .top-notification-dropdown {
        width: 320px;
        right: -20px;
    }
}

.googlox-top-btn {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #334155;
    background: #1f2937;
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
    margin-left: 10px;
}

.googlox-top-btn:hover {
    background: #273449;
    color: #ffffff;
}

.googlox-login-modal {
    background: linear-gradient(135deg, #111827, #0f172a);
    border: 1px solid #1f2937;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.googlox-login-modal-header {
    border-bottom: 1px solid #1f2937;
    background: #0f172a;
    padding: 18px 20px;
}

.googlox-login-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.googlox-login-modal-body {
    padding: 22px 20px 24px 20px;
}

.googlox-login-subtitle {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.googlox-login-group {
    margin-bottom: 16px;
}

.googlox-login-label {
    display: block;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.googlox-login-input {
    width: 100%;
    box-sizing: border-box;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 14px;
    color: #ffffff;
    font-size: 15px;
    padding: 14px 15px;
    outline: none;
}

.googlox-login-input:focus {
    border-color: #3b82f6;
}

.googlox-login-submit {
    width: 100%;
    box-sizing: border-box;
    border: none;
    background: #2563eb;
    color: #ffffff;
    border-radius: 14px;
    padding: 15px 18px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.googlox-login-submit:hover {
    background: #1d4ed8;
}

.googlox-login-footer {
    margin-top: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.googlox-login-footer a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: bold;
}

.googlox-login-alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 14px;
}

.googlox-login-alert.error {
    background: rgba(239,68,68,0.10);
    border: 1px solid rgba(239,68,68,0.35);
    color: #fca5a5;
}

.googlox-login-alert.success {
    background: rgba(34,197,94,0.10);
    border: 1px solid rgba(34,197,94,0.35);
    color: #86efac;
}

#page-loader {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(11, 18, 32, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
	//backdrop-filter: blur(6px);
    transition: opacity 0.4s ease;
}


.loader-logo {
    width: 90px;
    height: 90px;
	filter: drop-shadow(0 0 20px rgba(59,130,246,0.7));
	border-radius: 50%;
    background: url('/img/loader1.png') no-repeat center;
    background-size: contain;
	animation: spin 1.2s linear infinite, glow 2s ease-in-out infinite;
    opacity: 0.9;
}

@keyframes spin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
@keyframes glow {
    0% { filter: drop-shadow(0 0 10px rgba(59,130,246,0.4)); }
    50% { filter: drop-shadow(0 0 25px rgba(59,130,246,0.9)); }
    100% { filter: drop-shadow(0 0 10px rgba(59,130,246,0.4)); }
}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.cookie-box {
    background: linear-gradient(180deg, rgba(14,24,41,0.98), rgba(9,17,30,0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px 25px;
    color: #eaf4ff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 500px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    border: 0;
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-btn.accept {
    background: linear-gradient(90deg, #00cfff, #7b2cff);
    color: white;
}

.cookie-btn.decline {
    background: rgba(255,255,255,0.08);
    color: #ccc;
}
/* RESPONSIVE */

@media(max-width:900px){


}
@media(max-width:1000px){
.top-buttons{
display:none;	
}
#btn_hid{
	
}
}
