:root {
    --coxinha-orange: #FFA500;
    --coxinha-dark: #FF8C00;
    --coxinha-yellow: #FFD700;
    --coxinha-brown: #8B4513;
    --coxinha-cream: #FFF8DC;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* News Ticker */
.news-ticker {
    background-color: var(--coxinha-dark);
    color: white;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.news-ticker-content {
    display: inline-block;
    animation: ticker 60s linear infinite;
    padding-right: 50px;
    will-change: transform;
}

.news-ticker-content li {
    display: inline-block;
    padding: 0 20px;
    color: white;
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (min-width: 640px) {
    .news-ticker-content li {
        font-size: 1.1rem;
    }
}

.news-ticker-content li:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -3px;
    color: var(--coxinha-yellow);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* coxinha-Inspired Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--coxinha-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--coxinha-orange);
    border-radius: 10px;
    border: 3px solid var(--coxinha-cream);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--coxinha-dark);
}

/* Kawaii Elements */
.kawaii-shadow {
    filter: drop-shadow(0 8px 20px rgba(255, 165, 0, 0.4));
}

.kawaii-border {
    border: 3px solid white;
    border-radius: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.kawaii-bounce {
    animation: bounce 2s infinite;
}

.kawaii-wiggle:hover {
    animation: wiggle 1s ease-in-out;
}

.kawaii-pop:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.kawaii-float {
    animation: float 4s ease-in-out infinite;
}

.kawaii-spin {
    animation: spin 10s linear infinite;
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

/* coxinha-inspired 3D Button */
.coxinha-button {
    position: relative;
    background-color: var(--coxinha-yellow);
    color: white;
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    box-shadow: 0 8px 0 var(--coxinha-dark), 0 15px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}
.coxinha-button-small {
    padding: 5px 10px;
}

.coxinha-button-light {
    background-color: var(--coxinha-cream);
    color: var(--coxinha-brown);
    box-shadow: 0 8px 0 var(--coxinha-orange), 0 15px 20px rgba(0, 0, 0, 0.2);
}

.coxinha-button:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0 var(--coxinha-dark), 0 8px 10px rgba(0, 0, 0, 0.2);
}

.coxinha-button-light:hover {
    box-shadow: 0 4px 0 var(--coxinha-orange), 0 8px 10px rgba(0, 0, 0, 0.2);
}

.coxinha-button:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 var(--coxinha-dark), 0 0 0 rgba(0, 0, 0, 0.2);
}

.coxinha-button-light:active {
    box-shadow: 0 0 0 var(--coxinha-orange), 0 0 0 rgba(0, 0, 0, 0.2);
}

/* Background Colors */
.bg-coxinha-yellow {
    background-color: var(--coxinha-yellow);
}

.bg-coxinha-dark {
    background-color: var(--coxinha-dark);
}

.bg-coxinha-cream {
    background-color: var(--coxinha-cream);
}

.bg-coxinha-brown {
    background-color: var(--coxinha-brown);
}

/* Text Colors */
.text-coxinha-dark {
    color: var(--coxinha-dark);
}

.text-coxinha-brown {
    color: var(--coxinha-brown);
}

/* Border Colors */
.border-coxinha-dark {
    border-color: var(--coxinha-dark);
}

/* Hover States */
.hover\:bg-coxinha-dark:hover {
    background-color: var(--coxinha-dark);
}

/* Gradients */
.gradient-background {
    background: linear-gradient(135deg, var(--coxinha-yellow) 0%, var(--coxinha-orange) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-card {
    background: linear-gradient(135deg, var(--coxinha-yellow) 0%, var(--coxinha-orange) 100%);
    color: white;
}

/* Navigation - Inspired by coxinha Navbar */
.nav-container {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
    color: var(--coxinha-brown);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    background-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* Text Effects - Like coxinha's Typography */
.hero-text {
    text-shadow: 3px 3px 0px rgba(255, 140, 0, 0.5);
    letter-spacing: 1px;
    font-weight: 800;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 5px;
    border-radius: 3px;
    bottom: -10px;
    left: 25%;
    background: linear-gradient(90deg, var(--coxinha-yellow), var(--coxinha-orange));
}

/* Card Styles */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 24px !important;
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.3);
}

.wallet-toggle-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.wallet-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.wallet-toggle-btn:active {
    transform: translateY(0);
}

.wallet-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--coxinha-brown) 0%, var(--coxinha-dark) 100%);
    border-radius: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.wallet-info.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.wallet-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wallet-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.wallet-close-btn:active {
    transform: scale(0.95);
}

/* Remove backdrop styles */
.wallet-overlay-backdrop {
    display: none;
}

.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar > div {
    position: relative;
    transition: width 1s ease;
}

.progress-bar > div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

/* Update tokenomics card for better wallet info display */
.tokenomics-card {
    background: linear-gradient(135deg, var(--coxinha-yellow) 0%, var(--coxinha-orange) 100%);
    padding: 1.5rem;
    border-radius: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: visible;
    border: 4px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.tokenomics-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tokenomics-card:hover {
    z-index: 10;
}

.tokenomics-card:hover::before {
    opacity: 1;
}

.tokenomics-card svg {
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.tokenomics-card:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.benefits-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.15);
    border: 3px dashed var(--coxinha-yellow);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.benefits-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--coxinha-yellow) 0%, rgba(255, 215, 0, 0) 70%);
    top: -100px;
    right: -100px;
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.team-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.15);
    text-align: center;
    position: relative;
    border: 4px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--coxinha-yellow), var(--coxinha-orange));
}

.team-card img {
    border: 6px solid var(--coxinha-yellow);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
    transition: all 0.4s ease;
}

.team-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}

.team-card h3 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    color: var(--coxinha-brown);
}

.team-card p {
    color: var(--coxinha-dark);
    font-weight: 500;
}

/* Social Icons - coxinha-inspired */
.social-link {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    top: -50%;
    left: -50%;
    transition: all 0.5s ease;
}

.social-link:hover::before {
    top: 0;
    left: 0;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2);
}

/* Form Elements */
.form-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    border: 3px solid var(--coxinha-yellow);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    color: var(--coxinha-brown);
    font-family: 'Poppins', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--coxinha-orange);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
    transform: translateY(-3px);
}

.submit-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: var(--coxinha-yellow);
    color: white;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    top: 0;
    left: -100%;
    transition: all 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background-color: var(--coxinha-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.4);
}

/* Mobile Menu */
.mobile-menu {
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
}

.mobile-menu a {
    font-size: 1.1rem;
}

/* Ensure content doesn't overflow on small screens */
@media (max-width: 640px) {
    .nav-container {
        background-color: white;
    }
    
    .mobile-menu {
        margin: 0;
        border-radius: 0;
    }
    
    .mobile-menu .rounded-lg {
        border-radius: 0;
    }
}

/* coxinha-inspired Grid Pattern */
.pattern-bg {
    position: relative;
    overflow: hidden;
}

.pattern-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--coxinha-yellow) 1px, transparent 1px), 
        radial-gradient(circle, var(--coxinha-yellow) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.1;
    z-index: 0;
}

/* coxinha-inspired Features */
.feature-box {
    padding: 2rem;
    border-radius: 24px;
    background-color: white;
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--coxinha-yellow);
    height: 100%;
}

.feature-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--coxinha-yellow) 0%, rgba(255, 215, 0, 0) 70%);
    top: -75px;
    right: -75px;
    opacity: 0.1;
    border-radius: 50%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--coxinha-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
}

.feature-box .flex {
    display: flex;
    align-items: center;
}

.feature-box .feature-title {
    margin-left: 10px;
    line-height: 1.2;
    font-weight: bold;

}

/* Footer */
.footer {
    background-color: var(--coxinha-brown);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23FFA500'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23FFA500'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23FFA500'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.footer-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.footer-link {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Additional Utility Classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* Custom SVG Elements */
.kawaii-element {
    animation: float 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu.open {
        display: block;
    }
    
    .hero-text {
        font-size: 2.5rem !important;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-box {
        margin-bottom: 1.5rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .footer .flex-col {
        gap: 1.5rem;
    }

    .footer img {
        height: 2.5rem;
    }

    .footer h2 {
        font-size: 1.25rem;
    }

    .footer p {
        font-size: 0.875rem;
    }

    .footer .space-x-6 > * {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }

    .footer .space-x-6 > :first-child {
        margin-left: 0;
    }

    .footer .space-x-6 > :last-child {
        margin-right: 0;
    }

    .wallet-toggle-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .wallet-info {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: scale(0.95);
        max-height: none;
        overflow-y: auto;
    }

    .wallet-info.show {
        transform: scale(1);
    }
}

/* coxinha-inspired Decorative Elements */
.floating-circle {
    position: absolute;
    background: radial-gradient(circle, var(--coxinha-yellow) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    opacity: 0.1;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    opacity: 0.15;
    animation-delay: 2s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: -125px;
    opacity: 0.07;
    animation-delay: 4s;
} 

