main {
    max-width: 1400px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    color: var(--text-color);
}

.background-effect {
    position: absolute;
    top: 510px;
    left: 0;
    width: 100%;
    height: 250px;
    border-radius: 1500px;
    filter: blur(25px);
    background: radial-gradient(49.43% 48.43% at 51.71% 60.05%, #00FFF0 8%, rgba(129, 52, 255, 0.34) 69%, rgba(129, 52, 255, 0.09) 100%);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.how-works-container {
    width: 100%;
    margin-top: 30px;
    padding-bottom: 12px;
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
}

h2 {
    text-align: center;
    font-size: calc(1.0625rem + 0.9vw);
    width: 100%;
    color: white;
}

.how-works-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 12px;
    padding: 0;
    width: 100%;
}

.how-works-item {
    font-size: 1.25rem;
    padding: 15px;
    border: 2px solid var(--button-color);
    border-radius: 12px;
    background-color: var(--second-color);
    width: 25%;
    min-width: 300px;
}

.how-works-item div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 12px;
}

.how-works-item div span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--button-color);
    color: black;
    text-align: center;
    line-height: 40px;
    font-size: 1.25rem;
    font-weight: bold;
}

.how-works-item h3 {
    margin: 12px 0 0;
    font-size: 1.375rem;
    color: white;
}

.how-works-item p {
    font-size: 1.25rem;
    margin-top: 14px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.generation-instuctions-container {
    width: 100%;
}

.generation-instuctions-container h2 {
    margin-bottom: 20px;
    margin-top: 30px;
    font-size: calc(1.0625rem + 0.9vw);
}

.instruction-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    row-gap: 25px;
}

.instruction-item {
    border: 2px solid var(--base-border-color);
    border-radius: 12px;
    background-color: var(--second-color);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    padding: 5px;
}

.instruction-item h3 {
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
    color: white;
    margin-top: 10px;
}

.instruction-item img {
    aspect-ratio: 1 / 1 auto;
    width: 45%;
    border: 1px solid var(--base-border-color);
}

.instruction-text-container {
    width: 45%;
    font-size: 1.25rem;
    align-self: start;
}

.instruction-text-container a {
    text-decoration: none;
    color: var(--button-color);
}

.features-container {
    width: 100%;
    padding-bottom: 12px;
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 12px;
}

.features-container h2 {
    margin-bottom: 0;
    font-size: calc(1.0625rem + 0.9vw);
}

.feature {
    padding: 15px;
    border: 2px solid var(--base-border-color);
    border-radius: 12px;
    background-color: var(--second-color);
    width: 40%;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature h3 {
    margin: 10px 0 0;
    font-size: 1.375rem;
    color: white;
}

.feature img {
    height: 80px;
    margin-top: 10px;
    aspect-ratio: 1 / 1 auto;
}

.feature p {
    font-size: 1.25rem;
    margin-top: 12px;
    line-height: 1.3;
}

.table-container {
    width: 100%;
    margin: 30px auto 0;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 1.125rem;
    width: 70%;
}

th, td {
    border: 1px solid var(--button-color);
    padding: 8px;
    text-align: center;
}

thead th {
    border: none;
}

thead th:first-child {
    /*border-right: 1px solid var(--button-color);*/
}


tbody tr {
    border: 1px solid var(--button-color);
}

tbody td {
    background-color: var(- -second-color);
    padding: 12px 25px;
    min-width: 80px;
    max-width: 250px;
}

tbody th {
    padding: 12px 25px;
    min-width: 80px;
    max-width: 250px;
}

.faq-container {
    width: 85%;
    margin: 30px auto 0;
}

details {
	margin-bottom: 20px;
	background-color: var(--second-color);
    color: white;
    font-size: 1.25rem;
    border: 1px solid var(--base-border-color);
	border-radius: 15px;
	padding: 10px;
    transition: height 1s ease;
}

details[open]>p {
    animation-name: slideDown;
    animation-duration: 200ms;
    animation-timing-function: ease-in;
    overflow: hidden;
}

summary {
	cursor: pointer;
    padding: 10px;
}

summary::marker {
	content: none;
}

details p {
	padding-left: 15px;
    line-height: 1.3;
}

details p a {
    color: var(--button-color);
    text-decoration: none;
    border-bottom: 1px solid var(--button-color);
}

details[open] summary {
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	padding-bottom: 10px;
    position: relative;
}

details[open] summary:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(91.2deg, #2dffb5 8.77%, #00d1ff 54.81%, #ba8fff 92.52%);
}

@keyframes slideDown {
    0% {
        opacity: 0;
        height: 0;
    }
    100% {
        opacity: 1;
        height: 100px;
    }
}

@media (max-width: 1023px) {
    .instruction-item {
        width: 100%;
        max-width: 700px;
    }
    .instruction-item img, .instruction-text-container  {
        width: 98%;
    }
}

@media (max-width: 500px) {
    .feature {
        min-width: 310px;
    }
    .feature p, .how-works-item p, details, .instruction-text-container {
        font-size: 1.1875rem;
    }
    table {
        font-size: 1rem;
    }
    tbody td, tbody th {
        padding: 12px 8px;
    }
    .background-effect {
        top: 700px;
    }
}