@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Italianno&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root
{
    --color-red:#F9E7FE;
    --color-blue:#DAFCFC;
    --color-main: #178991;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #2d2d2d;
    font-family: "Poppins", sans-serif;
}

body
{
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 400px calc(100% - 220px);
    grid-gap: 20px;
    background: linear-gradient(
        to bottom right, var(--color-red), var(--color-blue));

    padding: 2rem 2rem;
}


/* SIDEBAR */
.sidebar
{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

}
p.logo
{
    font-family: "Italianno", cursive;
    font-size: 3rem;
}

.sidebar > nav
{
    display: flex;
    flex-direction: column;
    width: 90%;
}
.sidebar > nav > a {
    height: 60px;
    line-height: 56px;
    margin: 1rem 0;
    text-decoration: none;
    width: 100%;
    border: 2px solid #ffffff00;
    padding: 0 20px;
    border-radius: 40px;
}
.sidebar > nav > a.located
{
    border: 2px solid #fff;
    background: #ffffff50;
}
.sidebar > nav > a:hover:not(.located)
{
    border: 2px solid #ffffff80;
    background: #ffffff25;
}


.social-media
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.social-media > p {color: #3d3d3d; font-weight: 300;}
.social-media > .bar
{
    height: 1px;
    background: #3d3d3d;
    opacity: .2;
    width: 120%;
    margin: .4rem 0 .8rem 0;
}

.social-media > .links{
    display: flex;
    gap: 5px;
}

.social-media > .links a {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1/1;
    border: 2px solid transparent;
    transition: .2s;
}
.social-media > .links a.bold{
    background: #fff;
}
.social-media > .links a:hover{
    border: 2px solid #fff;
    background: #ffffff40;
}
.social-media > .links a.bold:hover{
    border: 2px solid #fff;
    background: var(--color-blue);
}
/* END SIDEBAR */

main
{
    position: relative;
    width: calc(calc(100% - 220px));
    height: calc(100vh - 4rem);
    background: #fff;
    border-radius: 40px;
    padding:  4rem 6rem;
    overflow: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

main::-webkit-scrollbar {
  display: none;
}

main > #introduction
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
main > #introduction > label {color: var(--color-main); font-weight: 500; font-size: 1rem;}
main > #introduction > h1 {font-family: "Inria Serif", serif; font-weight: 700; font-size: 3rem; color:#1d1d1d;}
main > #introduction > h2 {font-family: "Inria Serif", serif; font-weight: 400; font-size: 2rem;}
main > #introduction > .bar { height: 1px; background: #000; width: 60%; opacity: .2; margin-top: 2rem;}

/* section general styles */
section:not(#introduction){
    margin-top: 6rem;
}

section:not(#introduction) > h2 
{
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 1rem;
    margin-bottom: 2rem;
    color: #1d1d1d;
}
section:not(#introduction) > h2::before
{
    position: absolute;
    content: '';
    left: 0;
    height: 90%;
    top:50%;
    transform: translateY(-50%);
    width: 5px;
    background: var(--color-main);
    border-radius: 2px;
}
section:not(#introduction) p {margin-bottom: 1rem;}
section:not(#introduction) p > b {color:var(--color-main); font-weight: 500;}

section:not(#introduction) > h3{
    margin: 3rem 0 .25rem 0;
    font-weight: 500;
    font-size: 1.2rem;
    color: #1d1d1d;
}

/* end section general styles */

.option_list
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 20px;
    margin: 4rem 0;
}
.option_list > .option 
{
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    border: 6px solid #fff;
    background: linear-gradient(
        to bottom left, var(--color-red), var(--color-blue));
    box-shadow: 0 0 6px #00000010;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.option_list:has(.option.active) > .option:not(.active)
{
    filter: grayscale(1);
}
.option_list > .option:hover,
.option_list:has(.option.active) > .option:not(.active):hover
{
    box-shadow: 0 3px 10px #00000016;
}
.option_list > .option > h3
{
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #ffffff40;
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
    border: 2px solid #fff;
    border-radius: 10px;
}
.option_list > .option > img { height: 100px; width: auto; margin-bottom: 1rem;}


.game_idea h3 { width: 100%; text-align: center; font-size: 3rem; font-weight: 300; margin-bottom: 4rem;}
.game_idea h4 { color: var(--color-main); margin-bottom: .75rem;}
.game_idea h4:not(:first-child){margin-top: 4rem;}
.game_idea h5 {font-size: 1.2rem; font-weight: 500; color: #1d1d1d; margin-bottom: .25rem;}
.game_idea h5{margin-top: 3rem;}
.game_idea h4 + h5{margin-top: unset;}

.game_idea ul {
    padding-left: 4rem;
}
.game_idea ul li
{
    list-style-type: "> ";
}
.game_idea ul li ul li
{   
    list-style: none; /* Quita el punto original */
    position: relative;
}
.game_idea ul li ul li::before{
    position: absolute;
    content: '>>';
    left: -5px;
    transform: translateX(-100%);
    letter-spacing: -2px;
}
section:not(#introduction) .game_idea ul li:not(:last-child) > p {margin-bottom: 0;}