* {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Archivo Black';
    background-image: url(images/background.png);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    color: #f5f5f5;
}

/* Enhanced bounce animation */
@keyframes customBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.2); }
    40%, 60% { transform: rotate(-20deg) scale(1.2); }
    50% { transform: rotate(20deg) scale(1.2); }
    70% { transform: rotate(0deg) scale(1.2); }
    85% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.about-logos {
    animation: customBounce 1.5s infinite;
    filter: drop-shadow(0 0 8px rgba(250, 135, 3, 0.3));
}

/* Enhanced button hover */
.w-full button {
    transition: all 0.3s ease-out;
}

.w-full button:hover {
    transform: translateY(-2px);
}

.w-full button:hover .svgg path {
    fill: black;
    transition: fill 0.3s ease;
}

.home {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0,0,0,0.6), rgba(0,0,0,0.3)), url(images/logo.png);
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Enhanced text styles */
span {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
    color: #f5f5f5;
    transition: color 0.3s ease;
}

span:hover {
    color: rgb(250, 135, 3);
}

h1 {
    font-family: "Ga Maamli", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    color: #ffffff;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(250, 135, 3);
    transition: width 0.3s ease;
}

h1:hover::after {
    width: 100%;
}

/* Enhanced marquee */
marquee {
    color: #ffffff;
    background: linear-gradient(45deg, rgb(250, 135, 3), rgb(255, 183, 74));
    text-decoration: aqua;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(250, 135, 3, 0.2);
}

.font-vid {
    font-size: 80px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.ca {
    font-size: 80%;
    size: 3cm;
    color: #f5f5f5;
    transition: all 0.3s ease;
}

.ca:hover {
    color: rgb(250, 135, 3);
    letter-spacing: 0.5px;
}

/* Enhanced image effects */
.imglogo {
    animation: float 6s ease-in-out infinite;
    transition: filter 0.3s ease;
}

.imglogo:hover {
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(250, 135, 3, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Token card enhancements */
.token1, .token2, .token3 {
    color: #f5f5f5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.token1:hover, .token2:hover, .token3:hover {
    transform: translateY(-5px);
    border-color: rgb(250, 135, 3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Social media icons enhancement */
.social img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.social img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(250, 135, 3, 0.3));
}

/* Navigation enhancement */
#navbar-default {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#navbar-default:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nav-main button {
    background: transparent;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.nav-main button:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

#navbar-default ul {
    border: none;
    background: transparent;
}

#navbar-default li:last-child {
    margin-bottom: 0;
}

#enter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#enter-button {
    padding: 20px 40px;
    font-size: 2rem;
    background: transparent;
    border: 2px solid rgb(250, 135, 3);
    color: rgb(250, 135, 3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Permanent Marker', cursive;
}

#enter-button:hover {
    background: rgb(250, 135, 3);
    color: black;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #navbar-default {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(8px);
        border-radius: 0;
    }

    #navbar-default ul {
        gap: 1rem;
    }

    #navbar-default button {
        width: 100%;
        margin: 0;
    }
}

/* Section styles */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h1, 
.section h2, 
.section h3 {
    color: #ffffff;
}

p {
    color: #f5f5f5;
}

/* Override classes */
.text-black,
.text-gray-900 {
    color: #f5f5f5 !important;
}

/* Custom selection color */
::selection {
    background: rgba(250, 135, 3, 0.3);
    color: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .token1, .token2, .token3 {
        margin-bottom: 1.5rem;
    }
    
    .imglogo {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .font-vid {
        font-size: 40px;
    }
}