* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #efe4af;
    font-family: 'Chelsea Market', cursive;
    overflow-x: hidden;
}

/* Font Classes */
.font-gluten {
    font-family: 'Gluten', cursive;
}

.font-chelsea {
    font-family: 'Chelsea Market', cursive;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-bolt {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

/* Utility Classes */
.w-full {
    width: 100%;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-20 {
    gap: 5rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.justify-items-center {
    justify-items: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.leading-relaxed {
    line-height: 1.75;
}

.items-start {
    align-items: flex-start;
}

.justify-start {
    justify-content: flex-start;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-md {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-normal {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-\[24px\] {
    font-size: 24px;
}

.text-\[31px\] {
    font-size: 31px;
}

.text-\[50px\] {
    font-size: 50px;
}

.text-\[80px\] {
    font-size: 80px;
}

.leading-6 {
    line-height: 1.5rem;
}

.max-w-\[500px\] {
    max-width: 500px;
}

.w-20 {
    width: 5rem;
}

.w-\[300px\] {
    width: 300px;
}

.w-\[500px\] {
    width: 500px;
}

.w-1\/2 {
    width: 50%;
}

.w-1\/3 {
    width: 33.333333%;
}

.w-4\/5 {
    width: 80%;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-md {
    border-radius: 0.375rem;
}

.border {
    border-width: 1px;
}

.border-black {
    border-color: #000;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-white {
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-pink-500 {
    --tw-gradient-to: #ec4899;
}

.bg-\[#f3e9c0\] {
    background-color: #f3e9c0;
}

.bg-\[#efe4af\] {
    background-color: #efe4af;
}

.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.break-all {
    word-break: break-all;
}

.underline {
    text-decoration: underline;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transform-gpu {
    transform: translateZ(0);
}

.hover\:translate-y-\[-4px\]:hover {
    transform: translateY(-4px);
}

.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus-visible\:ring-1:focus-visible {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.focus-visible\:ring-ring:focus-visible {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.inline-flex {
    display: inline-flex;
}

.min-w-32 {
    min-width: 8rem;
}

.max-h-10 {
    max-height: 2.5rem;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
    text-align: left;
}

li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.tokenomics-list {
    width: 100%;
    text-align: left;
}

/* Floating Animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Bottom to Top Animation */
@keyframes bottomToTop {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-bottom-to-top {
    animation: bottomToTop 1s ease-out forwards;
}

/* Right to Left Animation */
@keyframes rightToLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-right-to-left {
    animation: rightToLeft 1s ease-out forwards;
}

/* Responsive Design - Media Queries */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:gap-0 {
        gap: 0;
    }
}

@media (min-width: 768px) {
    .md\:w-1\/2 {
        width: 50%;
    }
    
    .md\:w-1\/3 {
        width: 33.333333%;
    }
    
    .md\:w-4\/5 {
        width: 80%;
    }
    
    .md\:w-\[500px\] {
        width: 500px;
    }
    
    .md\:px-20 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    
    .md\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:flex-col-reverse {
        flex-direction: column-reverse;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
    
    .md\:grid-cols-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
    
    .md\:text-\[100px\] {
        font-size: 100px;
    }
    
    .md\:text-\[31px\] {
        font-size: 31px;
    }
    
    .md\:mx-auto {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .lg\:gap-12 {
        gap: 3rem;
    }
    
    .lg\:w-1\/2 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .text-\[80px\] {
        font-size: 60px;
    }
    
    .text-\[50px\] {
        font-size: 40px;
    }
    
    .text-\[31px\] {
        font-size: 24px;
    }
    
    .text-\[24px\] {
        font-size: 20px;
    }
    
    .px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .gap-20 {
        gap: 2rem;
    }
}

/* Scroll Animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
