/* Main styles for Trump Meme Coin website */
:root {
    --primary-color: #0A0B23; /* Dark navy blue */
    --secondary-color: #C41E3A; /* Red color for "OFFICIAL" text */
    --accent-color: #FFD700; /* Gold color for signature */
    --text-color: #ffffff;
    --button-red: #C41E3A;
    --button-gradient: linear-gradient(to right, #FFD700, #FFA500);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #ffffff;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 50px;
    padding: 1.5rem 2rem;
    height: 90px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    opacity: 0.8;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    color: white;
}

.mobile-menu-btn svg {
    width: 32px;
    height: 32px;
}

.claim-now-btn {
    background: linear-gradient(45deg, #C41E3A, #DC143C);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    font-size: 1.1rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    letter-spacing: 0.5px;
}

.claim-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    background: linear-gradient(45deg, #DC143C, #FF0000);
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .container {
        padding: 0 10px;
    }

    header {
        height: 70px;
        padding: 0 15px;
        margin: 10px;
        border-radius: 20px;
        width: calc(100% - 20px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .nav-container {
        padding: 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        padding: 8px;
        margin-left: auto;
    }

    /* Improved mobile navigation */
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: fixed;
        top: 90px;
        left: 10px;
        right: 10px;
        background: var(--primary-color);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        flex-direction: column;
        gap: 15px;
        animation: slideDown 0.3s ease-out;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 1.1rem;
        border-radius: 12px;
        transition: background-color 0.3s ease;
    }

    .nav-links a:not(.claim-now-btn):hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .claim-now-btn {
        margin: 10px 0;
        width: 100%;
        padding: 16px 30px;
        font-size: 1.1rem;
        height: auto;
        min-height: 55px;
        border-radius: 15px;
    }

    /* Main content adjustments */
    main {
        margin-top: 90px;
        padding: 0 10px;
    }

    .hero {
        margin: 10px;
        padding: 30px 20px;
        border-radius: 20px;
        width: calc(100% - 20px);
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-left {
        padding: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        margin: 0;
        padding: 16px 30px;
        font-size: 1.1rem;
        height: auto;
        min-height: 55px;
    }

    .contract-section {
        margin: 30px 10px;
        padding: 20px;
        border-radius: 20px;
    }

    .contract-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .contract-address {
        width: 100%;
        word-break: break-all;
        text-align: center;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .copy-btn {
        width: 100%;
        margin-top: 10px;
        height: 50px;
    }
}

/* Prevent content shift when scrollbar appears */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Prevent pull-to-refresh on mobile */
body {
    overscroll-behavior-y: none;
}

/* Smoother animations */
* {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    animation: fadeIn 0.8s ease-out;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex: 0 0 500px;
    position: relative;
    margin-top: -60px;
    margin-right: -60px;
}

.hero-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: left;
}

.hero h1 .official {
    color: var(--secondary-color);
}

.hero-text {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin: 40px 0;
    font-weight: 300;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    margin: 40px auto;
    justify-content: center;
    max-width: 800px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-btn {
    background-color: var(--button-red);
    color: white;
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    min-width: min(350px, 100%);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #b01b33;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px;
}

.btn-primary {
    background: var(--button-gradient);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Fight Facts Section */
.fight-facts {
    padding: 60px 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.fact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

/* Allocation Section */
.allocation {
    padding: 60px 0;
    text-align: center;
}

.allocation-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(16, 20, 54, 0.95), rgba(16, 20, 54, 0.95)), url('../assets/stars-bg.png');
    background-size: cover;
    background-position: center;
}

.allocation-section h2 {
    color: #C41E9C;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.allocation-section .description {
    color: white;
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.allocation-section img {
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
}

.allocation-section .disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 0 20px;
}

.allocation-section .disclaimer a {
    color: #FFD700;
    text-decoration: none;
}

.allocation-section .disclaimer a:hover {
    text-decoration: underline;
}

/* How to Buy Section */
.how-to-buy {
    padding: 60px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
}

/* Contract Address Section */
.contract-address-section {
    background: linear-gradient(180deg, #0B0B3B 0%, #000033 100%);
    padding: 80px 20px;
    text-align: center;
}

.contract-address-section h2 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.contract-address-container {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contract-address-container:hover {
    transform: translateY(-2px);
}

.address-label {
    background: #000;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.address-text {
    flex-grow: 1;
    text-align: left;
    font-family: monospace;
    font-size: 1.1rem;
    color: #333;
}

.copy-address-btn {
    background: #DC143C;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.copy-address-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: inherit;
    transition: transform 0.3s ease;
}

.copy-address-btn:active::after {
    transform: translate(-50%, -50%) scale(2);
}

.copy-address-btn:hover {
    background: #b01030;
}

.contract-address-section .disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 20px;
}

.contract-address-section .disclaimer a {
    color: #DC143C;
    text-decoration: none;
}

.contract-address-section .disclaimer a:hover {
    text-decoration: underline;
}

.contract-section {
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.contract-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.contract-container {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ca-label {
    background: black;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contract-address {
    color: #333;
    font-family: monospace;
    font-size: 1.1rem;
    flex-grow: 1;
}

.copy-btn {
    background-color: var(--button-red);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.disclaimer {
    margin-top: 30px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.disclaimer a {
    color: var(--accent-color);
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Crypto President Section */
.crypto-president {
    background-color: rgba(16, 20, 54, 0.95);
    padding: 60px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.crypto-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.crypto-left {
    width: 450px;
}

.crypto-left .card-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.crypto-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 20px;
}

.crypto-right h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.crypto-right h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #8B5CF6 0%, #EC4899 50%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.crypto-right .main-text {
    color: #B8B8C7;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.crypto-right .tradeable-text {
    font-size: 2.8rem;
    line-height: 1.2;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.crypto-right .additional-text {
    color: #B8B8C7;
    font-size: 1.2rem;
    line-height: 1.6;
}

.crypto-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.crypto-header img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.crypto-header .trump-text {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.crypto-header .fight-text {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Scrolling Banner */
.scrolling-banner {
    width: 100%;
    background-color: var(--primary-color);
    border-top: 2px solid #C41E3A;
    border-bottom: 2px solid #C41E3A;
    overflow: hidden;
    padding: 15px 0;
    margin: 20px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.banner-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.banner-item .text {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate the animation for seamless scrolling */
.banner-content-wrapper {
    display: flex;
}

/* Mission Section */
.mission-section {
    background: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.mission-left {
    flex: 1;
}

.mission-left h2 {
    color: #DC143C;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.mission-box {
    background: #0B0B3B;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.mission-box h3 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.mission-box p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.5;
}

.mission-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mission-right img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .mission-content {
        flex-direction: column-reverse;
    }
    
    .mission-left h2 {
        font-size: 3rem;
        text-align: center;
    }
}

/* Join Community Section */
.join-community {
    background: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.join-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.join-left {
    flex: 1;
}

.join-left h2 {
    color: #DC143C;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.join-box {
    background: #0B0B3B;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.join-box h3 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.join-box p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.5;
}

.join-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.join-right img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .join-content {
        flex-direction: column;
    }
    
    .join-left h2 {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .join-box {
        text-align: center;
    }
}

/* Footer */
footer {
    background: #000033;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 4rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
}

.footer-disclaimer a {
    color: #DC143C;
    text-decoration: none;
}

.footer-warning {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-align: center;
    margin: 20px auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-text {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 30px;
    }
    
    .hero-right img {
        max-width: 400px;
    }
    
    .crypto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .crypto-left {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-right {
        margin: 0;
        order: -1;
    }
    
    .hero-right img {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-btn {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 20px 15px;
    }
    
    .crypto-president, .allocation-section {
        padding: 40px 20px;
    }
    
    .contract-address-container {
        flex-direction: column;
        padding: 15px;
    }
    
    .address-text {
        font-size: 0.9rem;
        word-break: break-all;
    }
}

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

.hero-content, .crypto-content, .allocation-section {
    animation: fadeIn 0.8s ease-out;
}

/* Improved Accessibility */
:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Better Touch Targets */
button, .nav-links a, .hero-btn {
    min-height: 44px;
    min-width: 44px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading State */
.loading {
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Image Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Airdrop Section */
.airdrop-section {
    background-color: var(--primary-color);
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.airdrop-container {
    max-width: 1000px;
    margin: 0 auto;
}

.connect-wallet-btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: var(--button-gradient);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.airdrop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.airdrop-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-color), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.airdrop-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
    text-align: left;
}

.airdrop-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.eligibility-checker {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.eligibility-checker h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.checker-container {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.check-btn {
    width: 100%;
    padding: 15px 30px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(45deg, #C41E3A, #DC143C);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.eligibility-result {
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(39, 174, 96, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.result-icon {
    width: 40px;
    height: 40px;
}

.checkmark {
    width: 100%;
    height: 100%;
}

.checkmark-circle {
    stroke: #27AE60;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: #27AE60;
    stroke-width: 2;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.result-message h4 {
    color: #27AE60;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.result-message p {
    color: #fff;
    font-size: 1rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .airdrop-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .airdrop-text h2 {
        font-size: 2.5rem;
        text-align: center;
    }

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

    .airdrop-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .eligibility-checker {
        padding: 20px;
    }

    .eligibility-checker h3 {
        font-size: 1.8rem;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.check-btn.processing {
    background: linear-gradient(45deg, #8B0000, #B22222);
    cursor: not-allowed;
    opacity: 0.9;
}

.check-btn.processing:hover {
    transform: none;
    box-shadow: none;
}

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

.eligibility-result {
    animation: fadeIn 0.5s ease-out;
}
