* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-family: Fredoka, serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    transition: 0.3s all ease-in-out;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
}
code {
    display: block;
    padding: 2px;
}
b {
    font-weight: 600;
}
.hidden {
    display: none;
}
.text-center {
    text-align: center;
}
button {
    display: inline-block;
    margin: 5px;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 20px;
    line-height: 1;
    outline: 0;
    border: 0;
    box-shadow: 0 0 5px #a99f9f;
    cursor: pointer;
}
.btn {
    background-color: #12c2e9;
    color: #fff;
}
.btn:hover {
    background-color: #098daa;
}
.btn-red {
    background-color: #d22a3c;
    color: #fff;
}
.btn-red:hover {
    background-color: #b42130;
}
.btn-green {
    background-color: #3bc45b;
    color: #fff;
}
.btn-green:hover {
    background-color: #2fa74b;
}
.txt-green {
    color: #2fa74b !important;
}
.txt-red {
    color: #b42130 !important;
}
.disabledbtn {
    background-color: #545454;
    text-decoration: line-through;
}
:root {
    --bg-color: white;
    --text-color: #333;
    --header-bg: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
    --footer-bg: #333;
    --link-color: white;
    --hover-link-color: #ffd700;
    --bg-green: #96ff9a;
    --primary-font: "Fredoka", serif;
    --secondary-font: "Arial", sans-serif;
}
[data-theme="dark"] {
    --bg-color: #333;
    --text-color: white;
    --header-bg: #222;
    --footer-bg: #111;
    --link-color: #ffd700;
    --hover-link-color: #fff;
    --bg-green: #2fa74b;
}
* {
    font-family: Fredoka, serif;
}
body {
    font-family: var(--primary-font);
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}
p {
    font-size: 1.2em;
    line-height: 1.7;
}
h1,
.h1 {
    font-size: 3.5em;
    font-weight: 600;
    margin-bottom: 0.5em;
}
h2,
.h2 {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 0.4em;
}
.font-PoetsenOne {
    font-family: Poetsen One, serif;
}
header {
    background: var(--header-bg);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-size: 2em;
    color: var(--link-color);
    font-weight: 700;
    text-decoration: none;
}
.logo img {
    width: 48px;
}
.logo * {
    vertical-align: middle;
}
nav {
    display: flex;
    overflow-y: auto;
}
nav a {
    color: var(--link-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: var(--secondary-font);
    line-height: 3;
}
nav a:hover {
    color: var(--hover-link-color);
    text-decoration: underline;
}
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    order: 0;
}
.theme-switch {
    font-size: 1.2em;
    cursor: pointer;
    color: var(--link-color);
    background: none;
    border: none;
    transition: color 0.3s ease;
}
.theme-switch:hover {
    color: var(--hover-link-color);
}
.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    z-index: 2;
}
.hero-slider {
    position: relative;
    height: 50vh;
    min-height: 400px;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}
.slide:nth-child(1) {
    background: #12c2e9;
}
.slide:nth-child(2) {
    background: #c471ed;
}
.slide:nth-child(3) {
    background: #f64f59;
}
.slide-content {
    text-align: center;
    text-shadow: 0px 0px 4px #000;
}
.slide:nth-child(1) {
    opacity: 1;
    z-index: 1;
}
.section-wave {
    position: relative;
    overflow: hidden;
}
.section-wave:before,
.section-wave:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    background: white;
    z-index: 1;
}
.section-wave:before {
    bottom: 100%;
    left: 0;
    border-radius: 50% 50% 0 0;
    transform: scale(2, 0.5);
    box-shadow: 0 -5px 10px #0000001a;
}
.section-wave:after {
    top: 100%;
    left: 0;
    border-radius: 0 0 50% 50%;
    transform: scale(2, 0.5);
    box-shadow: 0 5px 10px #0000001a;
}
.section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-color);
    color: var(--text-color);
    transform: translateZ(-1px) scale(1.01);
    transition: transform 0.3s ease;
}
.section:hover {
    transform: translateZ(0) scale(1);
}
#tokenomics {
    background: #ce6bff;
    color: #fff;
}
.tokenomics-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.tokenomics-item {
    background: rgba(0, 0, 0, 0.05);
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: 0.3s all ease-in-out;
    font-size: 1em;
}
.tokenomics-item:hover {
    transform: scale(1.1);
}
.tokenomics-item p {
    font-size: 1.4rem;
}
footer {
    background: var(--footer-bg);
    color: #fff;
    text-align: center;
    padding: 20px 0 50px;
    font-size: 0.9em;
}
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        padding: 50px 0 0;
        transform: translate(-100%);
        transition: transform 0.3s ease;
    }
    nav.active {
        display: flex;
        transform: translate(0);
    }
    .hamburger {
        display: block;
    }
    header {
        flex-direction: row;
        justify-content: space-between;
    }
    nav a {
        margin: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .close-btn {
        display: block;
    }
    .hero-slider {
        height: 30vh;
    }
}
.burnix1 {
    position: absolute;
    z-index: -1;
    right: 3%;
    bottom: -30%;
    width: 200px;
    max-width: 35%;
    transform: translatey(0);
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translatey(0);
    }
    50% {
        transform: translatey(-20px);
    }
    to {
        transform: translatey(0);
    }
}
.burnix2 {
    /* position: absolute; */
    left: 3%;
    top: 10%;
    width: 200px;
    max-width: 35%;
    z-index: -1;
    transform: translatey(0);
    animation: float 8s ease-in-out infinite;
    margin-top: 25px;
}
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: 15px;
    box-shadow: 0 4px 12px #0000004d;
    text-align: center;
    display: inline-block;
    flex-direction: column;
    align-items: center;
}
.container .button,
.container .input,
.container .label {
    margin-bottom: 15px;
    width: 100%;
}
.container .button {
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: #007bff;
    color: #fff;
    transition: background-color 0.3s ease;
    width: auto;
}
.container .button:hover {
    background-color: #0056b3;
}
.container .input {
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}
.container .input:focus {
    border-color: #007bff;
    outline: none;
}
.container .label {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
    max-width: 300px;
}
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    .container .input,
    .container .button {
        max-width: 100%;
    }
}
#status {
    text-align: center;
    font-size: 1rem;
    padding: 15px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    transition: background-color 0.3s ease, color 0.3s ease;
    word-break: break-all;
}
.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.note {
    display: block;
    margin: 15px 0;
    line-height: 1.5;
    font-size: 16px;
    font-family: sans-serif;
}
#root {
    display: inline-block;
    max-width: 450px;
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 8px #101010;
    margin: 50px 0 0;
}
#root .h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin: 0 0 15px;
}
#ConDiv,
#ConDivbtn {
    padding-bottom: 10px;
}
#ConDiv button {
    font-size: 16px;
    padding: 10px 15px;
    width: 190px;
    max-width: 45%;
}
#DisConDiv {
    padding-bottom: 10px;
}
#DisConDiv .mintform {
    display: inline-block;
    width: 100%;
    position: relative;
}
@media (max-width: 640px) {
    #ConDiv button {
        display: block;
        margin: 10px auto;
    }
}
#minterBox {
    padding: 15px 0 0;
}
#connectinfo {
    display: inline-block;
    background-color: var(--bg-green);
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
}
.mintform input {
    display: block;
    margin: 0 auto;
    padding: 5px;
    min-width: 50%;
}
.mintform span {
    display: block;
    margin: 5px auto;
    color: #212121;
}
#mintresult {
    background-color: #dcefff;
    padding: 10px 0;
}
#connectinfowrap {
    background-color: #d9d9d9;
}
#root {
    margin: 0;
}
.ca {
    display: inline-block;
    width: 85%;
    font-size: 20px;
    line-height: 1.5;
    text-decoration: underline;
}
.ca,
.ca a {
    color: var(--text-color);
    word-break: break-all;
}
.ca a {
    text-decoration: none;
    font-weight: 500;
}
#earnwith {
    text-align: left;
}
#earnwith ol {
    padding-left: 20px;
}
#earnwith ol li {
    padding: 6px 0;
    line-height: 1.5;
    font-size: 18px;
}
.litepaperlink {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 20px;
    margin: 20px 0;
    text-decoration: none;
}
#showbal {
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-color);
    background-color: #86c194;
    width: auto;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
}
#custommemoval {
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    background-color: #dcefff;
    padding: 10px 0;
}
#broadcastbtn {
    padding: 10px 25px;
    font-size: 22px;
}
#mint_success_share {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 10px solid #ccc;
    background-color: #fff;
    padding: 5%;
    transition: 0.3s all ease-in-out;
}
#mint_success_share h3 {
    font-size: 22px;
    line-height: 1.5;
}
#mint_success_share p {
    font-size: 20px;
    padding: 20px 0;
    color: #4caf50;
}
#mint_success_share .tweetbtn {
    display: inline-block;
    padding: 10px 25px;
    margin: 10px 0;
    background-color: #14c0e9;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.2;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}
#mint_success_share .mintagainbtn {
    display: inline-block;
    padding: 10px 25px;
    margin: 10px 0;
    background-color: #4caf50;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.2;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}
.mint_success_share {
    display: none;
}
.mint_success_share_show {
    display: inline-block;
}
