* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
	overflow-y: hidden;
    background-color: #70C7BA;
    color: white;
    width: 100%;
    max-width: 100vw;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

#logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 1001;
    pointer-events: none;
	    overflow: hidden;
}

#logo {
    width: 80%;
    max-width: 800px;
    transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.scrolled #logo-container {
    justify-content: flex-start;
    padding-left: 15%;
	overflow: hidden; 
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 1000;
    height: 60px;
}

.nav-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}

#navbar ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin-left: 60px;
}

#navbar ul li {
    margin-left: 2rem;
}

#navbar ul li a {
    text-decoration: none;
    color: #70C7BA;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

#navbar ul li a:hover {
    color: #4a8f86;
}

#hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

#hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #70C7BA;
    margin: 5px 0;
    transition: 0.4s;
}

main {
    padding-top: 0;
    overflow-x: hidden;
}

#hero {
    height: 100vh;
}

section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
    width: 100%;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.image-container, .text-container {
    flex: 1;
    padding: 1rem;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.text-container {
    text-align: left;
}

.text-container p, .text-container ul li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.text-container ul {
    list-style-type: none;
    padding-left: 0;
}

.text-container ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.text-container ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
}

/* Scroll effect animations */
.scroll-effect {
    opacity: 0;
    transition: all 1.6s ease-out;
}

.scroll-effect.visible {
    opacity: 1;
}

.fade-in {
    opacity: 0;
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    transform: translateY(50px);
}

.slide-up.visible {
    transform: translateY(0);
}

.slide-left {
    transform: translateX(-50px);
}

.slide-left.visible {
    transform: translateX(0);
}

.slide-right {
    transform: translateX(50px);
}

.slide-right.visible {
    transform: translateX(0);
}

.zoom-in {
    transform: scale(0.9);
}

.zoom-in.visible {
    transform: scale(1);
}

.rotate-in {
    transform: rotate(-10deg) scale(0.9);
}

.rotate-in.visible {
    transform: rotate(0) scale(1);
}

footer {
    padding: 1rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Updated styles for feature boxes */
.feature-box, .step, .highlight {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover, .step:hover, .highlight:hover {
    transform: translateY(-5px);
}

.feature-box h3, .step h3, .highlight h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-box i, .step i, .highlight i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tokenomics-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1rem;
}

.tokenomics-list li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.tokenomics-list li i {
    margin-right: 0.5rem;
    color: white;
}

.total-supply {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.total-supply i {
    margin-right: 0.5rem;
    color: white;
}

.total-supply span {
    font-weight: bold;
    color: white;
    margin-left: 0.5rem;
}

.buy-steps, .whitepaper-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

#roadmap {
    padding: 2rem 1rem;
    overflow: hidden;  
}

.roadmap-steps {
    display: flex;
    flex-wrap: wrap;   
    justify-content: space-between;
}

.image-container img {
    max-width: 100%;     
    height: auto;        
}


@media screen and (max-width: 768px) {
    #logo {
        width: 90%;
    }

    .scrolled #logo-container {
        padding-left: 15%;
    }

    #navbar ul {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 1rem;
    }

    #navbar ul.show {
        display: flex;
    }

    #navbar ul li {
        margin: 0.5rem 0;
    }

    #hamburger-menu {
        display: block;
    }

    h1 {
        font-size: 2.5rem;
    }

    .section-content, .section-content.reverse {
        flex-direction: column;
    }

    .image-container, .text-container {
        width: 100%;
    }

    .text-container {
        text-align: center;
    }

    .text-container p, .text-container ul li {
        font-size: 1.1rem;
    }

    .feature-box, .step, .highlight {
        padding: 1rem;
    }

    .feature-box h3, .step h3, .highlight h3 {
        font-size: 1.2rem;
    }

    .tokenomics-list li, .total-supply {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    #logo-container {
        justify-content: center;
    }

    .scrolled #logo-container {
        justify-content: flex-start;
        padding-left: 15%;
    }

    h1 {
        font-size: 2rem;
    }

    .text-container p, .text-container ul li {
        font-size: 1rem;
    }

    .feature-box h3, .step h3, .highlight h3 {
        font-size: 1.1rem;
    }

    .tokenomics-list li, .total-supply {
        font-size: 1rem;
    }
}