@font-face {
    font-family: 'EightOne';
    src: url('../fonts/EightOne.ttf') format('truetype');
}

.nullborn-title {
    font-family: 'EightOne', sans-serif;
    font-size: clamp(60px, 10vw, 180px);
    color: black;
}

.monde-title {
    font-family: 'EightOne', sans-serif;
    font-size: clamp(60px, 10vw, 180px);
    color: white;
}

*{
    margin: 0;
    padding: 0;
    font-family: Papyrus, Fantasy;
    
}

section::selection{
    background-color: #FFFFFF;
}

.navbar-nav a:hover{
    text-decoration: line-through;
}

#hero-bg{
    height: 100vh;
}
.about{
    height: 70vh;
    background-image: url(../images/background/body-bg-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.characters{
    background-image: url(../images/background/hero-1.jpeg);
    background-position: center;
    background-size: cover;
}

.characters img {
    transition: transform 0.4s ease;
}

.characters img:hover {
    transform: scale(1.1);
}

.timer{
    background-image: url(../images/background/bg-3.jpg);
}

.timer h4 {
    font-size: 40px;
    letter-spacing: 2px;
}

.playstation a:hover {
    background-color: white;
    color: black !important;
}

.playstation i {
    font-size: 20px;
}

.playstation{
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/background/hero-1.jpeg);
    background-position: center;
}
.preorder{
    display: flex;
    align-items: center;
}

.preorder a:hover {
    background-color: white;
    color: black !important;
}

.pics-grid{
    overflow: hidden;
}
.pics img {
    transition: transform 0.4s ease;
}

.pics img:hover{
    transform: scale(1.1);
}

.footer input:focus {
    outline: 0;
    border: 0;
}

/* Base bouton */
.platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform: scale(1);
}

/* Icônes */
.platform-btn i {
    font-size: 22px;
}

/* Hover global */
.platform-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* PC (Steam style) */
.platform-btn.pc {
    background: #171a21;
}

.platform-btn.pc:hover {
    background: #1b2838;
}

/* Xbox */
.platform-btn.xbox {
    background: #107c10;
}

.platform-btn.xbox:hover {
    background: #16a016;
    box-shadow: 0 0 20px rgba(16,124,16,0.8);
}

/* PlayStation */
.platform-btn.ps {
    background: #003791;
}

.platform-btn.ps:hover {
    background: #0050d4;
    box-shadow: 0 0 20px rgba(0,55,145,0.8);
}

/* Nintendo */
.platform-btn.nintendo {
    background: #e60012;
}

.platform-btn.nintendo:hover {
    background: #ff1a2d;
    box-shadow: 0 0 20px rgba(230,0,18,0.8);
}

.platform-btn {
    position: relative;
    overflow: hidden;
}

.platform-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    top: 0;
    left: -100%;
    transition: 0.4s;
}

.platform-btn:hover::before {
    left: 0;
}

.platform-icon {
    height: 22px;
    fill: white;
}

.platform-btn {
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
}

.presskit-link {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

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