
:root {
  --primary-color: #1c6769;
  --color-primary-bg: #264857;
  --color-border: #ffffff2f;
  --color-text-light: #ededed;
  --color-text-light1: #ededed;
  --icons: #16695f;
  --color-text-subtle: rgb(12, 12, 15);
}


/* -----------------------rules---------------------------- */
.container-rules {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    background: radial-gradient(ellipse at left, #212324 0%, #000000 70%);
    border-radius: 16px;
    box-shadow: 0 4px 24px #0002;
}

.container-rules>div {
    position: relative;
    /* width: 800px; */
    /* max-width: 95vw; */
    /* height: 0px; */
    background: radial-gradient(ellipse at left, #212324 0%, #000000 70%);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 24px #0002;
}

.container-rules h2 {
    text-align: center;
    color: #f6f0e6;
    font-family: 'Chakra Petch', sans-serif;
    margin-bottom: 8px;
    font-size: 2.2em;
}

.container-rules p {
    text-align: center;
    color: #9c9c9c;
    font-size: 1em;
    margin-bottom: 32px;
}

.box-rules-button {
    width: 1400px;
    height: 780px;
    max-width: 95vw;
    background: #14141400;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00c3ff00 transparent;
}

.box-rules-button h1{
    text-align: center;
    color: #f6f0e6;
    font-family: 'Chakra Petch', sans-serif;
    margin-bottom: 8px;
    font-size: 2.2em;
}

.box-rules-button p {
    text-align: center;
    color: #c1c1c2;
    font-size: 1em;
    margin-bottom: 32px;
}


.accordion-btn {
    width: 100%;
    background: #121213;
    color: #f6f0e6;
    border: none;
    outline: none;
    text-align: right;
    padding: 18px 24px;
    font-size: 1.15em;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 2px 8px #0002;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.accordion-btn .plus {
    font-size: 1.2em;
    margin-left: 10px;
    color: #f6f0e6;
    font-weight: bold;
}

.accordion-btn .dot {
    width: 16px;
    height: 16px;
    background: #dbdbdb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    border: 2px solid #cfcfcf;
}

.accordion-btn:hover,
.accordion-btn.active {
    background: rgb(21, 29, 36);
    border: #ffffff18 solid 1px;
}

.accordion-content {
    display: none;
    background: #233d42;
    color: #e6e6e6;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 1em;
    box-shadow: 0 2px 8px #0002;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------products---------------------------- */
.container-products {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    overflow: hidden;
    z-index: 999;
    background: radial-gradient(ellipse at left, #212324 0%, #000000 70%);
}

.products-header {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.products-header h2 {
    font-size: 2.5vw;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 0 8px #15626999;
}



.products-tabs a {
    display: inline-block; 
}




.tab-btn {
    background: #1e212431;
    border: solid 1px rgba(255, 255, 255, 0.11);
    border-radius: 0.2vw;
    color: #dbebe9;
    font-size: 1vw;
    padding: 0.5vw 1.5vw;
    margin: 0 0.5vw;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.tab-btn:hover {
    background: #1e2a32;
    color: #ffffff;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #135c65;
      color: #ffffff;
    box-shadow: 0 0 10px #003f48;
}

.products-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    position: relative;
    width: 90vw;
    height: 30vw;
    top: 10%;
    max-width: 1200px;
    margin: 3vw auto;
    gap: 2vw;
    background: #1e2a3200;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00495f46 transparent;
}

.product-card {
    position: relative;
    top: 10%;
    width: 30%;
    min-width: 250px;
    height: 20vw;
    background: radial-gradient(circle farthest-corner at center center, #242323bd 0%, #1b1b1b80 100%);
    border-radius: 0.5vw;
    overflow: hidden;
    box-shadow: #000000 0 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 100%;
    scale: 80%;
    height: 80%;
    object-fit: cover;
}

.product-card img {
    position: absolute;
    top: -1.5vw;
    left: 36%;
    transform: translateX(-50%);
    width: 32vw;
    height: 15vw;
    object-fit: cover;
    box-shadow: 0 0 10px #00000000;
}

.product-title {
    position: absolute;
    left: 63%;
    transform: translateX(-50%);
    top: 12.3vw;
    font-size: 1.2vw;
    width: 12vw;
    font-weight: 600;
    color: #ffffff;
    margin: 0.5vw 0;
    text-align: right;
}

.product-price {
    position: absolute;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    left: 80%;
    transform: translateX(-50%);
    top: 0.2vw;
    font-size: 1vw;
    font-weight: 600;
    color: #ffffff;
    background: #18181894;
    border: solid 1px rgba(255, 255, 255, 0.11);
    width: 5vw;
    padding: 0.7vw 0.5vw;
    margin: 0.5vw 0;
    border-radius: 0.3vw;
    text-align: center;
}

.product-desc {
    position: absolute;
    background-color: #00000000;
    left: 62%;
    width: 12vw;
    transform: translateX(-50%);
    top: 14.5vw;
    font-size: 0.9vw;
    color: #dbebe9;
    margin: 0 0.5vw 1vw;
    text-align: right;
}

.buy-btn {
    position: absolute;
    left: 20%;
    transform: translateX(-50%);
    top: 17vw;
    background: #006876;
    border: none;
    border-radius: 0.2vw;
    color: #ffffff;
    font-size: 1vw;
    padding: 0.5vw 1.5vw;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin: 0 auto 1vw;
    display: block;
}

.buy-btn:hover {
    background: #015d6b;
}

/* --------------------------------------------------- */
.container-terms {
    position: absolute;
      width: 100vw;
    height: 100vh;
    flex-direction: column;
  display: flex;
   top: 0;
    left: 0;
    background: radial-gradient(ellipse at left, #212324 0%, #000000 70%);
    padding-top: 60px;
    z-index: 999;
        overflow-y: auto;
    scrollbar-width: auto;
    scrollbar-color: #00c3ff00 transparent;
}

.terms-header {
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
}
.terms-header h2 {
    color: #fff;
    font-size: 2.5em;
    font-family: 'Chakra Petch', sans-serif;
    margin-bottom: 18px;
    letter-spacing: 2px;
}
.terms-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
    width: 90vw;
    max-width: 1200px;
        left: 50%;
    transform: translateX(-50%);
}
.term-card {
    background: rgb(12, 12, 15);
    border-radius: 8px;
    box-shadow: 0 4px 24px #0002;
    padding: 24px 24px 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    min-height: 120px;
}
.term-card:hover {
    transform: translateY(-8px) ;
    box-shadow: 0 8px 32px #0f788244;
    border: solid 1px #0d5e6522;
}

.term-icon {
    font-size: 1.5rem;
    
    border-radius: 10px;
    display: flex;
    color: var(--icons);
}
.term-title {
    color: #086972;
    font-size: 1.2em;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: right;
    width: 100%;
}
.term-desc {
    color: #bdb6d6;
    font-size: 1em;
    text-align: right;
    width: 100%;
}