@import url(reusable.css);

.y {
    color: var(--secondary-300);
    
}

.b {
    color: var(--primary-300);
    text-wrap: none;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero img {
    width: var(--hero-img);
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.game {
    display: flex;
}

.game .b {
    margin-left: 20px;
}

.hero-text h1 {
    margin: 0;
    font-size: var(--hero-h1)
}

.hero-text button {
    font-weight: 600;
    border: none;
    background-color: var(--secondary-500);
    border-radius: 5px;
    color: var(--secondary-900);
    font-size: var(--hero-btn);
}

.hero-text button:hover {
    scale: 1.2;
    background-color: var(--primary-500);
    color: var(--primary-900);
    transition: ease-in 0.2s;
}

@media (min-width: 800px) {
    .hero {
        flex-direction: row;
        align-items: flex-start;
        margin-top: 20px;
    }

    .hero img {
        margin-left: auto;
    }

    .hero-text {
        text-align: left;
        align-items: flex-start;
        margin-top: 50px;
    }
}

/* slider styling */
.slider h1 {
    text-align: center;
}

.slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider img {
    height: 200px;
    max-height: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

/* Price list styling */
.price-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-list h1 {
    text-align: center;
}

table {
    border-collapse: collapse;
    border: solid 2px var(--light);
    background-image: var(--gradient);
    margin: 0px 20px 0px 20px;
    font-size: 1rem;
    font-size: clamp(1rem, 0.1562499999999999rem + 3.7500000000000004vw, 2.5rem);
}

th {
    color: var(--dark);
    padding: 4px 0px 4px 0px;
    background-color: var(--secondary-500);
}

tr {
    border-bottom: solid 2px;
}

th, td {
    text-align: left;
    text-wrap: none;
}

/* systems section */
.systems {
    width: 100%;
}

.systems h1 {
    text-align: center;
}

.systems .img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.systems .img {
    background-color: var(--dark);
    padding: 20px;
    margin: 0px 0px 40px 0px;
    border-radius: 20px;
}

.systems img {
    border-radius: 20px;
    min-width: 100px;
    max-width: 200px;
    aspect-ratio: 1 / 1;
}

@media (min-width: 800px) {
    .systems .img-container {
        flex-direction: row;
    }

    .systems .img:not(.last) {
        margin-right: 20px;
    }
}