@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');
* {
    text-decoration: none;
    color: white;
    font-family: 'Funnel Display', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(../images/background.jpg);
}

header {
    width: 100%;
}

#headerContainer {
    position: relative;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    padding: 15px;
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
#headerContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url(../images/header/NicePng_star-wars-png_146094.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}
#headerLogo {
    max-width: 600px;
}
#headerPoints {
    display: flex;
    gap: 10px;
}
#selectedPoint {
  color: rgb(255,165,0);
}
#headerPoints a {
    transition: all 0.3s ease;
}
#headerPoints a:hover {
    color: rgb(255,205,0);
    transform: scale(1.03);
}

/* homeMain */
#homeSection {
    width: 100%;
    margin-top: 15px;
}
#homeContainer {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
#homeLeftContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    padding: 5px;
    width: 20%;
    text-align: center;
    border-radius: 0px 15px;
}
#homeLeftContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.leftImage {
    width: 100%;
    border-radius: 0px 15px;
}
#venomImage {
    border-radius: 15px;
    margin-bottom: 15px;
}
#ENDSEXImage {
    border-radius: 15px;
    margin-bottom: 15px;
}
#leftButtonsContainer {
    margin-top: 15px;
    margin-bottom: 15px;
}
#homeMainContainer {
    position: relative;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    padding: 15px;
    width: 80%;
    border-radius: 15px 0px;
}
#homeMainContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
#homeMainContainer h1 {
    color: rgb(255,205,0);
    text-align: center;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
#mainOakwood {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    margin-top: 15px;
    gap: 15px;
}
@keyframes oakwood {
    from {
        transform: rotate(3deg);
    }
    50% {
        transform: rotate(-3deg);
    }
    to {
        transform: rotate(3deg);
    }
}
#mainOakwood img {
    border-radius: 15px;
    animation-name: oakwood;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease;
}
#mainOakwood img:hover {
    box-shadow: 4px 4px 0px rgb(255,205,0);
}
#mainPoints {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#mainPoints a {
    width: 100%;
    transition: all 0.3s ease;
}
.mainPoint {
    text-align: center;
    padding: 10px 0px;
    transition: all 0.3s ease;
    border-radius: 15px;
}
.mainPoint:hover {
    padding: 30px 0px;
    border: 1px solid white;
}


/* CHANGELOG */
#changelogSection {
  width: 100%;
  margin-top: 15px;
}
#changelogContainer {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#changelogMainContainer {
  position: relative;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  padding: 15px;
  width: 80%;
  border-radius: 15px 0px;
}
#changelogMainContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
#changelogHeader {
  color: rgb(255,205,0);
  text-align: center;
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.changelogPoint {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.changelogPoint h2 {
  color: rgb(255,205,0);
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
}
hr {
  margin-top: 25px;
  margin-bottom: 25px;
}


/* ABOUT PAGE */
#aboutSection {
  width: 100%;
  margin-top: 15px;
}
#aboutContainer {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
#aboutMainContainer {
    position: relative;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    padding: 15px;
    width: 80%;
    border-radius: 15px 0px;
}
#aboutMainContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
#aboutHeader {
    color: rgb(255,205,0);
    text-align: center;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
#aboutInfo {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  gap: 30px;
}
#aboutInfoText ul {
  list-style-position: inside;
  font-size: 24px;
}
#aboutInfo img {
  max-width: 400px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
#aboutImages {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}
#aboutBottomImages {
  display: flex;
  gap: 15px;
}
#lain1 {
  width: 100%;
}
#lain2 {
  max-width: 400px;
  border-bottom-left-radius: 15px;
}
#lain3 {
  max-width: 600px;
  border-bottom-right-radius: 15px;
}


/* GAMES PAGE */
#gamesSection {
  width: 100%;
  margin-top: 15px;
}
#gamesContainer {
  width: 70%;
  margin: 0 auto;
  position: relative;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  padding: 15px;
  border-radius: 15px 0px;
}
#gamesContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
#gamesHeader {
    color: rgb(255,205,0);
    text-align: center;
    font-size: 48px;
    text-transform: uppercase;
}
#gamesSubHeader {
  color: rgb(255,165,0);
  text-align: center;
  margin-bottom: 15px;
}
.tableContainer {
  overflow-x: auto;
  padding: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  min-width: 800px;
}
thead tr {
  background-color: rgb(255,135,0);
  color: white;
  text-align: left;
}
th, td {
  padding: 16px 20px;
  text-align: left;
}
tbody tr:last-of-type {
  border-bottom: 2px solid rgb(255,135,0);
}
.gameTitle {
  font-weight: bold;
  color: rgb(255,165,0);
}
.platform {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
}
.platformPc {
  background-color: #3498db;
}
.platformPlaystation {
  background-color: #003791;
}
.platformNES {
  background-color: #dd2020;
}
.genre {
  font-style: italic;
  color: #7f8c8d;
}
.rating {
  color: #f39c12;
  font-weight: bold;
}
.comment {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
tbody tr:hover .comment {
  white-space: normal;
  overflow: visible;
}