﻿/* ======================
   CARDS
====================== */

.news-card {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    border-radius: 0;
}

.news-card-body {
    padding: 15px;
}

/* ======================
   SECTION 1 - HERO
====================== */

.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-logo {
    max-width: 1000px;
}
.social-buttons a {
    margin: 0 10px 0;
}
.status {
    font-size: 2rem;
    margin-top: 20px;
}

/* ======================
   SECTION 2 - CLOSED BETA
====================== */

.cta-background {
    background: linear-gradient(90deg,rgba(0, 9, 38, 1) 0%, rgba(0, 20, 86, 1) 100%);
}
.cta-buttons a{
    margin: 0 10px 0;
}

/* ======================
   SECTION 3 - PACKS
====================== */

.packs-section-background {
    background-image: url('../img/bg/pack.jpg');
}

/* ======================
   SECTION 4 - TESTEMONIALS
====================== */

.testimonials-background {
    background: linear-gradient(90deg,rgba(12, 12, 12, 1) 0%, rgba(31, 31, 31, 1) 100%);
}
.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.swiper-slide.testimonial {
    width: 100%;
    max-width: none;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}
.testimonials-swiper {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}
.testimonial p {
    color: #e6d5b1;
    font-size: 1.4rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
}
.testimonial span {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================
   SECTION 5 - ABOUT
====================== */

.about-section-background {
    background-image: url('../img/bg/about.jpg');
}

/* ======================
   SECTION 6 - NEWS
====================== */

.news-background {
    background-image: url('../img/bg/news.png');
}

/* ======================
   SECTION 7 - AUTH
====================== */

.auth-section-background {
    background-image: url('../img/bg/auth.jpg');
}
