/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}


/* Header styles */
header {
    background-color: white;
    color: black;
    padding: 5px 10px;
    font-family: 'Courier New', Courier, monospace;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 10px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    padding-left: 10px;
}

.navigation {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.navigation li {
    margin: 0 10px;
    position: relative;
}

.navigation li a {
    color: black;
    text-decoration: none;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 15px;
    font-family: 'Courier New', Courier, monospace;
    border: none;
    background: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    vertical-align: middle;
}

.navigation select {
    color: black; 
    text-decoration: none;
    padding: 8px 16px;
    font-weight: bold; 
    font-size: 15px; 
    font-family: 'Courier New', Courier, monospace; 
    border: none; 
    background: none; 
    cursor: pointer; 
    appearance: none; 
    -webkit-appearance: none; 
    vertical-align: middle; 
}

.navigation li a.active {
    background-color: #014CEC;
    color: white;
    border-radius: 4px;
}

.navigation li a:hover {
    color: black; 
}

/* Other styles remain the same */

/* Dropdown styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 160px;
    list-style: none; /* Remove list markers */
    padding: 0; /* Remove left padding */
    margin: 0; /* Remove left margin */
}

.dropdown-content li {
    padding: 8px 16px; /* Adjust padding as needed */
}

.dropdown-content li a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 8px 16px;
    white-space: nowrap; /* Prevent text wrapping */
}

.dropdown-content li a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}



.search-bar {
    padding: 5px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    padding: 5px;
    font-size: 15px;
    padding-right: 10px;
}

.search-button i {
    font-size: 15px;
}

/* Crypto prices styles */
.crypto-prices {
    padding: 10px;
    background-color: white;
    /* Add styles for the scrolling effect */
}

/* Featured airdrops styles */
.featured-airdrops {
    padding: 15px;
    background-color: white;
    position: relative;
}

.scrolling-wrapper {
    display: flex;
    gap: 10px;
    will-change: transform; /* Optimize performance */
    animation: scroll-right 15s linear infinite;
    white-space: nowrap;
    scroll-behavior: smooth;
}


.featured-airdrop {
    min-width: 200px;
    max-width: 200px;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* Prevent shrinking */
}

.featured-airdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.scrolling-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Scroll half the length to create the loop */
    }
}

/* Pause scrolling on hover */
.scrolling-wrapper:hover {
    animation-play-state: paused;
}



/* Main content styles */
.main-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px;
    box-sizing: border-box;
    flex: 1;
}

.airdrop-category {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.airdrop-list {
    margin-top: 20px;
}

.airdrop {
    background-color: rgb(117, 197, 224);
    border-radius: 5px;
    padding: 10px;  
    margin-bottom: 10px;  
    display: flex;
    align-items: center;
    gap: 10px; 
    display: flex; 
    justify-content: space-between; 
}

.airdrop-details {
    flex-grow: 1; /* Details to take up available space */
}


.airdrop img {
    width: 60px; 
    height: 60px;  
    border-radius: 50%;
}


.airdrop h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1rem;  
}

.airdrop p {
    margin: 2px 0;  
    font-size: 0.875rem;  
}

.claim-button {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-end; 
    align-self: center;
}

.claim-button:hover {
    background-color: #ffdb4d;
}

.ca-claim-button {
    background-color: green;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.ca-claim-button:hover {
    background-color: rgb(22, 185, 22);
}

.oa-claim-button {
    background-color: #014CEC;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.oa-claim-button:hover {
    background-color: rgb(77, 77, 248);
}

/* Footer styles */
footer {
    background-color: white;
    color: black;
    padding: 5px 0;
    font-family: 'Courier New', Courier, monospace;
    flex-shrink: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 0 20px;
    margin: 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.about {
    max-width: 300px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.social-media a {
    color: black;
    margin-right: 10px;
    font-size: 20px;
}

.social-media a:hover {
    color: #0052FE;
}

.footer-bottom {
    text-align: center;
    padding: 10px 20px;
    background-color: white;
    font-size: 16px;
    color: #0052FE;
    margin-top: 10px;
    font-weight: bold;
}

.footer-bottom p {
    margin: 0;
}
