@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap');

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

@font-face {
    font-family: 'Rajdhani';
    src: url('Rajdhani.ttf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('Poppins-Black.ttf') format('ttf');
}

body {
    background: linear-gradient(to bottom, #503a53, #4b2a47);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 15px;
    font-family: 'Poppins-Black', sans-serif;
    margin-left: 260px;
    min-height: 100vh;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 28px;
    color: black;
}

.logo img {
    width: 50px;
    height: auto;
}

.buton_menu {
    font-weight: bold;
    color: black;
    display: block;
    margin-top: 10px;
    margin-left: 25px;
}

.butonuse {
    font-weight: bold;
    color: black;
    display: flex;
    gap: 10px;
    margin-left: 10px;
    margin-top: 10px;
    padding: 5px 20px;
    border: 1px solid #c6421d;
    background-color: #d62727;
    border-radius: 40px;
    width: 130px;
    text-align: center;
}

.buton_connect {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
    color: white;
    padding: 10px 35px;
    border: 2px solid #c6421d;
    border-radius: 40px;
    background-color: #d62727;
    cursor: pointer;
    margin-bottom: 40px;
    margin-top: 60px;
    width: 150px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    padding: 20px;
    background: linear-gradient(to bottom, #FF9545, #FF753A);
    color: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.sidebar a {
    text-decoration: none;
}

.menu-top {
    margin-top: 30px;
}

.menu-botom {
    margin-top: 40px;
}

.menu-admin {
    margin-top: 40px;
    padding-top: 15px;
}

.main {
    margin-left: 45px;
    flex: 1;
    padding: 30px 36px;
    max-width: 1200px;
}

.main * {
    font-family: 'Rajdhani', sans-serif;
}

.page-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.games {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notif-card {
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid #ff0066;
    border-radius: 6px;
    padding: 16px 20px;
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.notif-icon {
    font-size: 18px;
    color: #ff0066;
}

.notif-sujet {
    font-size: 1.2em;
    color: #ff0066;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.notif-date {
    font-size: 0.8em;
    color: #7777aa;
    margin-top: 2px;
}

.notif-contenu {
    font-size: 1em;
    color: #ececf4;
    line-height: 1.7;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #7777aa;
}

.empty-cart i {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
}

.empty-cart p {
    font-size: 16px;
}