*{
    box-sizing: border-box;
}
 
body {
    background-color: #3d070c;
    opacity: 1;
    background-image: linear-gradient(#65041c 1.8px, transparent 1.8px),
        linear-gradient(to right, #65041c 1.8px, #3d070c 1.8px);
    background-size: 36px 36px;
    font-family: "Alef", sans-serif;
    margin: auto;
    text-align: center;
    color: #ffd5e5;
    text-shadow:
        1px 1px 10px #ff007f,
        1px 1px 10px #ff007f;
    width: 100%;
    overflow-x: hidden;
}
/* Header */

header {
    margin: 0;
    padding: 0;
}

#banner {
    margin-bottom: 4px;
    width: 100%;
}

#headerbuttons a {
    padding-left: 10px;
    padding-right: 10px;
    margin: 15px;
    cursor: pointer;
    font-size: 20px;
}

.headerline {
    border:none;
    border-top:dashed;
    border-width: 2px;
    color: #ffd5e5;
    width: 100%;
}

/* Text */

h1 {
    font-size: 3rem;
    font-weight: normal;
}

h2 {
    font-weight: lighter;
    display: block;
    margin: 20px;
    font-size: 2rem;
}

dt {
    font-size: 1rem;
}
 
a {
    color: #ffffff; /*#2d0ae8f5*/
    text-decoration: none;
}

hr {
    border:none;
    border-top:dashed;
    border-width: 2px;
    color: #ffd5e5;
    width: 500px;
    box-shadow: 1px 1px 10px #ff007f, 1px 1px 10px #ff007f;
}

p {
    padding-left: 10px;
}

.kink {
    font-size: 1.3rem
}
 
dd {
    margin: 15px 2px;
    font-size: 1.1rem;
}
 
dt {
    font-size: 2rem;
    margin: 2px 30px;
}
.mistakes {
    margin-bottom: 3rem;
    text-align: center;
}

.addons p {
    text-align: left;
    font-size: 1.2rem;
}

.buttoncolumn {
    display: flex;
    flex-direction: column; /* empilha */
}

/* Carousel */
.carousel {
    margin: 10px auto;
    width: 90%;
    border: solid;
    border-width: 3px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px #ff007f, 1px 1px 10px #ff007f;
    display: flex;
    overflow-x: auto;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.group {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* antes era center */
    gap: 0.25em;                  /* diminuir espaço entre cards */
    animation: spin 15s infinite linear;
    padding-right: 0.25em;       /* menos padding */
}

.card {
    flex: 0 0 auto;     /* largura do conteúdo (não fixa) */
    padding: 0.25em;    /* padding menor */
    margin: 0;          /* garantir que não haja margem extra */
    border-radius: 0.2em;
    text-align: center;
    align-content: center;
}

.card img {
    height: 50vw;
    max-height: 300px;
}

@keyframes spin {
    from {
        translate: 0;
    }
    to {
        translate: -100%;
    }
}

 /* Images */

.sm-icons {
    display: flex;
    justify-content: center;
}


#artexamples {
    display: flex;
    justify-content: center;
}
 
/*Buttons*/

.sfwicons {
    margin: 15px;
    cursor: pointer;
    height: 20vw;
    max-height: 100px;
    transition-duration: 0.3s;
}

.ngicon {
    max-height: 150px;
}

.sfwicons:hover {
    transform: scale(1.2);
}

.button {
    margin: 1rem;
    justify-self: center;
    color: #ffd5e5;
    border: solid;
    box-shadow: 1px 1px 10px #ff007f, 1px 1px 10px #ff007f;
    font-size: 25px;
    padding: 5px;
    font-family: "Alef", sans-serif;
    border-radius: 10px;
    width: 250px;
    transition-duration: 0.3s;
    cursor:pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.button:hover, .yearbutton:hover {
    background-color: rgba(255, 0, 97, 0.35);
    border-color:#ffd5e5;
    box-shadow: 1px 1px 20px #ff007f, 1px 1px 20px #ff007f;
}

.yearbutton:hover {
    box-shadow: 1px 1px 20px #ff007f !important;
}


 /* Tabela */

table {
    text-align: center;
    border: solid;
    border-width: 3px;
    border-collapse: collapse;
    box-shadow: 1px 1px 10px #ff007f;
    margin: 0 auto;               /* centraliza a tabela dentro do container */
    width: auto;                  /* mantém largura natural, evita forçar largura 100% */
    max-width: 100%;              /* não exceder o container */
    table-layout: auto;
}

table td, th {
    padding: 5px;
    font-weight: normal;
}
 
th:nth-child(even),td:nth-child(even) {
  background-color: #2708086e;
}
 
tr {
    border-bottom: 1px solid;
}
 
.tabela {
    overflow-x: auto;
    width: 75%;
    margin: 0 auto; /* centraliza horizontalmente */
    font-size: 20px;
    display: block; /* permite margin auto funcionar */
    
}

::-webkit-scrollbar {
    height: 8px;
    width: 8px;
    
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(23, 0, 0); 
  border-radius: 10px;
  background: #5a000ef0;
    
}

::-webkit-scrollbar-thumb {
    background: #ffd5e5; 
    border-radius: 10px;
    box-shadow: 0 0 10px #ff007f, 0 0 10px #ff007f;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff; 
}

 /* Containers */

#containeraddons {
    /* display:grid;
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr)); */
 
    /* grid-template-columns: repeat(auto-fit, minmax(10rem, 20rem));
    justify-content: space-around; */
 
    /* gap: 20px;
    min-width: 430px;
    justify-self: center; */
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 95%;
    margin: auto;
    
}

#containeraddons .addons:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center; /* garante que fique centralizado */
}
 
.addons {
    /* width: 100%; */
    max-width: 500px;
    /* width: min(80%, 800px); */
    border: solid;
    border-width: 3px;
    border-radius: 20px;
    /* position:relative; */
    justify-self: center;
    text-align: center;
    padding: 0 25px 50px;
    box-shadow: 1px 1px 10px #ff007f;
}
.addons.alts {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    gap: 10px; /* espaço pequeno entre as imagens */
    justify-items: center;
    text-align: center;
    padding: 20px;
}

/* A terceira imagem fica centralizada ocupando as duas colunas */


.addons.alts h3,
.addons.alts p {
    grid-column: 1 / -1; /* Texto ocupa toda a largura */
}

.addons.alts img {
    width: auto;
    max-width: 150px;
    height: auto;
    margin-top: auto;
}

.addons.alts .english,
.addons.alts .portuguese {
    grid-column: 1 / -1; /* ocupa as duas colunas */
    text-align: center;  /* centraliza o texto */
}

.addons img {
    margin-top: 20px;
    max-width: 250px;
    width: 100%
}
 
.dos-and-donts {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-width: 900px;
    margin: auto;
    text-align: left;
    font-size: 1.2rem;
}

.dos-and-donts h2 {
    text-align: center;
}

.dos, .donts {
    width: 50%;
    box-sizing: border-box;
}

.dos-and-donts ul {
    list-style:circle;
}

.dos-and-donts h2 {
    text-align: center;
}
.dos {
    border-right: dashed;
    padding-right: 24px;
}

.tandcbox {
    margin: 2px 80px;
    text-align: left;
    border: solid;
    border-width: 3px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px #ff007f, 1px 1px 10px #ff007f;
    background-color: #22000089;
    padding: 10px 40px;
}

.tandcbox h2 {
    font-size: 1.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    #containeraddons {
        grid-template-columns: 1fr;
        }
}
 
@media (max-width: 992px) {
    .tandcbox {
        width: 90%;
        margin: 20px;
        padding: 10px 20px;
        justify-self: center;
    }
    .tandcbox h2 {
        font-size: 30px;
    }
}

/* Footer */

.link {
    font-size: 10px;
    padding: 5px;
    margin: 5px;
    margin-top: 20px;
    cursor: default;
}
 
/* Lightbox*/
 
        .galleryItem {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .galleryItem img {
            cursor: pointer;
        }

        .lightBox {
            display: none;
            align-items: center;
            justify-content: center;
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            background: rgba(0, 0, 0, 0.9);
            width: 100%;
            flex-direction: column;
        }
        .lightBox>img {
            max-height: 600px;

        }
        .lightBox>.close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            cursor: pointer;
            font-size: 30px;
            font-family: lucida sans;
            font-weight: 100;
        }



#flex {
    display: flex;
}

/*Responsivo*/
@media only screen and (max-width: 800px) {
    
    .aesbutton {
        display:inline-flex;
        width: 70vw;
        max-width: 250px;
    }
    
    #FAbutton {
        background-size: 250px;
    }
    
    #Vaporwavebutton {
        background-size: 150px;
        background-position: center 70%;
        font-size:15px;
    }
    
    #flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    aside {
        width: 100%;
        height: fit-content;
        margin: 10px;
    }
    
    aside img {
    width: 100%;
    }

    #headerbuttons {
        display: flex;
        justify-content: center;
        
    }
    
    #headerbuttons a {
        font-size: 4vw;
        margin: 5px 20px;
        padding: 5px;
        border: groove;
        border-radius: 6px;
        box-shadow: 1px 1px 10px #ff007f;
        border-width: 3px;
    }
    
    .speciesbuttons {
        justify-content: center;
        display: block;
    }
    
    .buttoncolumn {
        justify-content: center;
        display: block;
    }
    
    .speciesbox {
        justify-self: center;
        width: 80vw;
        height: fit-content;
    }

    /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
    #main {
        order: 1;
    }

    #esquerda {
        order: 2;
        height: fit-content;
    }

    #direita {
        order: 3;
        height: fit-content;
    }
    
        
    .nsfwicons {
        max-height: 20vw;
    }
    
    
}

/*SM List*/



#SocialMediaList {
    text-align: left;
}

#SocialMediaList a {
    display: inline-block;
    transition: all .2s ease;
}

#SocialMediaList a:hover {
    transform: scale(1.2);
    margin-left: 10px;
    
}

#SocialMediaList>dt {
    font-size: 15px;
    margin: 5px;
    margin-top: 15px;
}

#SocialMediaList>dd {
    font-size: 10px;
    margin: 5px;
    margin-left: 15px;
}

/*Countries*/

.countries {
    margin-top: 30px;
    display: flex;
    justify-self: center;
    border: solid;
    border-width: 3px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px #ff007f, 1px 1px 10px #ff007f;
    background-color: #22000089;
}

.countries p {
    font-size: 20px;
    margin: 5px;
}

.countriestest img {
    max-width: 130px;
    width: 30vw;
    margin: auto 20px;
}


/*Art gallery*/

.description {
    text-align: left;
    margin: 20px;
    margin-bottom: 50px;
    border: solid;
    border-width: 3px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px #ff007f;
    background-color: #22000089;
    padding: 20px;
}

.description li {
    margin: 20px 20px auto auto;
}

.description p {
    margin: 40px auto;
}

.description dl {
    margin: 20px;
}

.description dt {
    margin: 20px auto 5px 15px;
}

.description dd {
    margin: 2px;
}

.buymyart {
    display: flex;
    align-items: center;       /* alinha verticalmente o texto e o botão */
    justify-content: space-between; /* deixa o texto à esquerda e o botão à direita */
    gap: 20px;  
}

.buymyart p {
    margin: 1px;
}

@media only screen and (max-width: 600px) {
    .buymyart {
        display:block;
    }
    
    .dos-and-donts {
        flex-direction: column;  /* empilha um em cima do outro */
        align-items: center;     /* centraliza os blocos */
        text-align: center;      /* centraliza textos */
        gap: 20px;               /* espaço entre os blocos */
        padding-right: 0;        /* remove o recuo lateral */
    }
    
    .dos, .donts {
    width: 100%;
}

    .dos {
        border-right: none;      /* remove a linha lateral */
        border-bottom: dashed;   /* linha abaixo para separar */
        padding-right: 0;
        padding-bottom: 20px;
    }
}

.description .button {
    text-align: center;
    margin: 10px 30px;
    font-size: 20px;
    width: 200px;
}

.yearbutton {
    display: flex;
    justify-content: center;
    margin: 10px 50px;
    cursor: pointer;
    border: solid;
    padding: 5px;
    border-radius: 10px;
    width: 100px;
    font-size: 15px;
    box-shadow: 1px 1px 10px #ff007f;
    transition-duration: 0.3s;
}

.arts {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border: solid;
    border-width: 3px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px #ff007f;
    background-color: #22000089;
    margin: 20px;
    padding: 20px;
}

.artitem img {
    width: auto;
    height: 150px;
    object-fit: contain;
    display: block;
    transition: transform .2s;
    cursor:pointer;
}

.arts img:hover {
    transform: scale(1.06);
}

.artitem {
    margin: 5px;
}

#arts2025 {
    display: flex;
}

#arts2024, #arts2023 {
    display: none;
}

.lightBoxConArts {
    height: 90%;
}

@media only screen and (max-width: 800px) {
    .artitem img {
        height: 40vw;
        max-height: 150px;
    }
    
    .lightBoxConArts {
    width: 90vw;
        height: auto;
}
    
    .ngicon {
        max-height: 200px;
        height: 30vw;
    }
}
/*
.arts img {
    width: 150px;
    margin: 5px;
    transition: transform .2s;
}



@media only screen and (max-width: 800px) {
    .arts img {
        width: 30%;
        max-width: 150px;
    }
}*/