body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    font-size: 20px;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 3rem;
    animation: fadeIn 2s ease-in-out;
}
video {
    width: 100%;
}
#hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.btn-primary {
    display: inline-block;
    background: url('../images/button-image.png') no-repeat center center/contain;
    width: 200px;
    height: 60px;
    border: none;
}
.btn-primary:hover {
    opacity: 0.8;
}
.section {
    padding: 80px 0;
    text-align: center;
}
.advantages {
    background: linear-gradient(to right, #ff6b6b, #ff4757);
    clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
}
.game-description {
    background: linear-gradient(to right, #1e90ff, #3742fa);
    clip-path: polygon(0% 0%, 100% 5%, 95% 100%, 5% 95%);
}
.gallery {
    background: linear-gradient(to right, #ffcc00, #ffaa00);
    clip-path: polygon(5% 5%, 95% 0%, 100% 100%, 0% 95%);
}
.reviews {
    background: linear-gradient(to right, #2ed573, #1eae98);
    clip-path: polygon(0% 5%, 100% 0%, 95% 100%, 5% 95%);
}
.faq {
    background: linear-gradient(to right, #5352ed, #3742fa);
    clip-path: polygon(5% 0%, 95% 5%, 100% 100%, 0% 95%);
}
.game-description .row, .gallery .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.game-description img, .gallery img {
    max-width: 100%;
    border-radius: 15px;
}
.gallery img {
    width: 100%;
    height: auto;
}
.advantages-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}
.advantages-icons div {
    text-align: center;
    max-width: 300px;
}
.advantages-icons i {
    font-size: 50px;
    margin-bottom: 15px;
}
.gallery {
    position: relative;
    background: linear-gradient(to right, #ffcc00, #ffaa00);
    padding: 80px 20px;
    clip-path: polygon(5% 5%, 95% 0%, 100% 100%, 0% 95%);
    overflow: visible;
}
.gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    clip-path: none;
    z-index: -1;
}
.gallery .row, .section .row {
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 20px;
}
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
}
.reviews {
    background: linear-gradient(to right, #2ed573, #1eae98);
    padding: 80px 20px;
    text-align: center;
    clip-path: polygon(5% 5%, 95% 0%, 100% 100%, 0% 95%);
}
.review-slider {
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}
.review-item {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}
.review-item.active {
    display: block;
}
.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.stars {
    color: #ffcc00;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}
.prev { left: 10px; }
.next { right: 10px; }
.faq {
    background: linear-gradient(to right, #5352ed, #3742fa);
    padding: 80px 20px;
    clip-path: polygon(5% 0%, 95% 5%, 100% 100%, 0% 95%);
}
.faq-content h3 {
    font-size: 2.8rem;
    color: #ffcc00;
    margin-bottom: 15px;
}
.faq-content p {
    font-size: 1.4rem;
}
.accordion-button {
    font-size: 1.8rem;
    font-weight: 800;
}
.footer-links a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 10px;
}
.newsletter-input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}
.cookie-banner button {
    background: #ffcc00;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
}
.navbar {
    background: rgba(0, 0, 0, 0.9);
}
.navbar-brand img {
    height: 50px;
}
.navbar-nav .nav-link {
    color: #ffcc00;
    font-size: 18px;
}