/*Airdrop page css*/
body {
    font-family: Inter, Arial, sans-serif !important;
    background: #f5f7fb !important;
    color: #1e293b !important;
    line-height: 1.6 !important;
}

/* ======================================
   HERO
====================================== */

.airdrop-hero{

    max-width:1280px;

    margin:10px auto;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:24px;

    padding:25px;

    box-shadow:0 15px 40px rgba(15,23,42,.06);

}

/* ======================================
TOP BAR
====================================== */

.hero-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:10px;

    flex-wrap:wrap;

}

.hero-badges{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.badge{

    padding:9px 16px;

    border-radius:6px;

    font-size:14px;

    font-weight:600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}

.badge-trending{

    background:#fff7ed;

    color:#ea580c;
    

}

.badge-confirmed{

    background:#ecfdf5;

    color:#16a34a;
    

}

.badge-active{

    background:#eff6ff;

    color:#2563eb;
    

}

.badge-new {
    background: #eeffda;
    color: #000000;
    font-weight: 600;
    text-shadow: 0px 5px 7px rgba(0, 0, 0, 0.56);
}

.badge-waitlist {
    background: #fff4df;
    
}

.badge-claim {
    background: #feffe5;
    
}

.badge-distributed {
    background: #f1faff;
    
}

.badge-shutdown {
    background: #fdf0ff;
    
}

.badge-ended {
    background: #e9fffc;
}

.hero-updated strong{

    color:#0f172a;

}

.hero-updated{

    font-size:13px;

    color:#64748b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        padding: 7px 7px;
        border-radius: 6px;

}

/*====================================
SEARCH
====================================*/

/*====================================
SEARCH
====================================*/

.hero-search {
    flex: 1;
    max-width: 420px;
}

.desktop-search {
    position: relative;
    width: 100%;
}


/*====================================
DESKTOP SEARCH INPUT
====================================*/

.search-input-wrap {
    position: relative;
    width: 100%;
}

.search-input-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #94a3b8;

    pointer-events: none;

    z-index: 2;
}

.search-input-wrap input {
    width: 100%;
    height: 37px;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    background: #f8fafc;

    padding: 0 18px 0 45px;

    outline: none;

    box-shadow: 0 1px 2px rgb(0 0 0 / 18%);

    font-size: 15px;

    box-sizing: border-box;
}


/*====================================
MOBILE BUTTON
====================================*/

.mobile-search-btn {
    display: none;
}

.mobile-search-close {
    display: none;
}


/*====================================
SEARCH SUGGESTIONS
====================================*/

.search-box {
    position: absolute;

    top: calc(100% + 7px);
    left: 0;

    width: 100%;

    z-index: 9999;
}


/*====================================
MOBILE
====================================*/

@media (max-width: 768px) {

    .hero-top {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 8px;
    }

    .hero-badges {
        order: 1;
        flex: 0 0 auto;
    }

    .hero-updated {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
        white-space: nowrap;
        font-size: 12px;
    }

    .hero-search {
        order: 3;
        flex: 0 0 40px;
        width: 40px;
        max-width: 40px;
    }

    .desktop-search {
        position: relative;
        width: 40px;
    }


    /* Normal Search Button */

    .mobile-search-btn {
        display: flex;

        width: 40px;
        height: 37px;

        align-items: center;
        justify-content: center;

        padding: 0;

        border: 1px solid #e5e7eb;
        border-radius: 12px;

        background: #f8fafc;

        color: #475569;

        cursor: pointer;

        box-shadow: 0 1px 2px rgb(0 0 0 / 18%);
    }


    /* Search input normally hidden */

    .search-input-wrap {
        display: none;
    }


    /* =================================
       SEARCH OPEN
       ================================= */

    .hero-search:has(.mobile-search-open) {
        flex: 1 1 auto;
        width: auto;
        max-width: none;
    }

    .desktop-search.mobile-search-open {
        width: 100%;
    }

    .desktop-search.mobile-search-open .search-input-wrap {
        display: block;
        position: relative;
        width: 100%;
        z-index: 10;
    }


    /* Hide button after opening */

    .desktop-search.mobile-search-open .mobile-search-btn {
        display: none;
    }


    /* Input */

    .search-input-wrap input {
        width: 100%;
        height: 40px;

        padding: 0 42px 0 38px;

        border-radius: 12px;

        font-size: 14px;

        box-sizing: border-box;
    }


    .search-input-icon {
        left: 13px;
    }


    /* Close button */

    .mobile-search-close {
        display: none;

        position: absolute;

        right: 7px;
        top: 50%;

        transform: translateY(-50%);

        width: 30px;
        height: 30px;

        align-items: center;
        justify-content: center;

        padding: 0;

        border: none;

        background: transparent;

        color: #64748b;

        cursor: pointer;
    }

    .desktop-search.mobile-search-open
    .mobile-search-close {
        display: flex;
    }


    /* Suggestions */

    .search-box {
        position: absolute;

        top: calc(100% + 7px);
        left: 0;

        width: 100%;

        z-index: 100;
    }

}


/* ======================================
BODY
====================================== */

.hero-body{

    display:grid;

    grid-template-columns:2fr 340px;

    gap:40px;

    align-items:center;

}

/* ======================================
LEFT
====================================== */

.hero-left{

    display:flex;

    gap:28px;

    align-items:flex-start;

}

.project-logo img{

    width:110px;



    border-radius:10px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}

/*.project-logo img{

    width:70px;

    height:70px;

    object-fit:contain;

}*/

.project-content h1{

    font-size:40px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:15px;

}

.project-content p{

    color:#64748b;

    font-size:16px;

    max-width:700px;

    margin-bottom:28px;

}

/* ======================================
BUTTONS
====================================== */

.hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 28px;

    border-radius:14px;

    font-weight:600;

    transition:.30s;

}

.btn-primary{

    background:#16a34a;

    color:#fff;
    border-color: #16a34a;

}

.btn-primary:hover{

    background:#15803d;

    transform:translateY(-3px);

}

.btn-light{

    background:#fff;

    color:#0f172a;

    border:1px solid #d1d5db;

}

.btn-light:hover{

    background:#f8fafc;

    transform:translateY(-3px);

}

/* ======================================
RIGHT CARD
====================================== */

.hero-right{

    background:#f8fafc;

    border:1px solid #e2e8f0;

    border-radius:22px;

    padding:28px;

}

.info-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:1px solid #e5e7eb;

}

.info-item:last-child{

    border-bottom:none;

}

.info-item span{

    color:#64748b;

    font-size:15px;

}

.info-item strong{

    color:#0f172a;

    font-size:16px;

}

.active-text{

    color:#16a34a !important;

}

/* ======================================
HOVER
====================================== */

.airdrop-hero{

    transition:.35s;

}

.airdrop-hero:hover{

    box-shadow:0 20px 50px rgba(15,23,42,.08);

}

/* ======================================
TABLET
====================================== */

@media(max-width:991px){

.hero-body{

grid-template-columns:1fr;

}

.hero-right{

margin-top:10px;

}

.project-content h1{

font-size:34px;

}

/*.project-logo img {*/

/*    width: 150px;*/
/*    height: 150px;*/
/*}*/

}

/* ======================================
MOBILE
====================================== */

@media(max-width:768px){

.airdrop-hero{

padding:8px;

margin:8px;

}

.hero-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:10px;

}


.hero-left{

flex-direction:column;

align-items:center;

text-align:center;
    gap: 5px;

}

.project-content h1{

font-size:30px;

}

.project-content p{

font-size:15px;

}

.hero-buttons{

justify-content:center;

width:100%;

}

.btn{

width:100%;

}

.hero-right{

padding:22px;

}

}

/* ======================================
SMALL MOBILE
====================================== */

@media(max-width:480px){



.project-logo img{

width:125px;


}

.project-content h1{

font-size:26px;

}



.hero-updated{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:13px;

    white-space:nowrap;
    

}

.hero-updated strong{

    margin:0;

}

}

/*=========================================
PAGE CONTENT
=========================================*/

.page-content{

    max-width:1280px;

    margin:40px auto;

    padding:0 20px;

    display:grid;

    grid-template-columns:280px 1fr;

    gap:35px;

    align-items:start;

}

/*=========================================
SIDEBAR
=========================================*/

.toc-sidebar{

    position:sticky;

    top:100px;

    background:#ffffff;

    border:1px solid #e8edf3;

    border-radius:20px;

    padding:24px;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.toc-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.toc-header h3{

    font-size:20px;

    color:#0f172a;

    font-weight:700;

}

.toc-close{

    display:none;

    width:38px;

    height:38px;

    border:none;

    border-radius:10px;

    background:#f1f5f9;

    cursor:pointer;

    transition:.3s;

}

.toc-close:hover{

    background:#e2e8f0;

}

.toc-nav{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.toc-link{

    display:flex;

    align-items:center;

    padding:13px 16px;

    border-radius:12px;

    color:#475569;

    font-size:15px;

    font-weight:500;

    transition:.25s;

}

.toc-link:hover{

    background:#f8fafc;

    color:#16a34a;

    padding-left:22px;

}

.toc-link.active{

    background:#ecfdf5;

    color:#16a34a;

    font-weight:600;

    border-left:4px solid #16a34a;

}

/*=========================================
CONTENT
=========================================*/

.content-area{

    min-width:0;

}

.content-card{

    background:#ffffff;

    border:1px solid #e8edf3;

    border-radius:22px;

    padding:20px;

    margin-bottom:30px;

    box-shadow:0 10px 25px rgba(15,23,42,.04);

}

.content-card h2{

    font-size:28px;

    color:#0f172a;

    margin-bottom:18px;

}

.content-card p{

    color:#64748b;

    font-size:16px;

    line-height:1.9;

    margin-bottom:5px;

}

.content-card:last-child{

    margin-bottom:0;

}

/*=========================================
MOBILE TOGGLE
=========================================*/

.toc-toggle{

    display:none;

    align-items:center;

    gap:10px;

    border:none;

    background:#16a34a;

    color:#ffffff;

    padding:14px 18px;

    border-radius:14px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

    transition:.3s;

}

.toc-toggle:hover{

    background:#15803d;

}

/*=========================================
SECTION OFFSET
=========================================*/

.content-card{

    scroll-margin-top:110px;

}
/*=========================================
TABLET RESPONSIVE
=========================================*/

@media(max-width:1024px){

    .page-content{

        grid-template-columns:240px 1fr;

        gap:25px;

    }


    .content-card{

        padding:28px;

    }


    .content-card h2{

        font-size:25px;

    }

}


/*=========================================
MOBILE RESPONSIVE
=========================================*/

@media(max-width:768px){


    .page-content{

        display:block;

        padding:0 15px;

        margin-top:30px;

    }


    /* MOBILE TOGGLE SHOW */

    .toc-toggle{

        display:flex;

    }


    /* SIDEBAR DRAWER */

    .toc-sidebar{

        position:fixed;

        top:0;

        right:-100%;

        width:320px;

        height:100vh;

        z-index:9999;

        border-radius:0;

        padding:25px;

        overflow-y:auto;

        transition:.35s ease;

        box-shadow:-15px 0 40px rgba(15,23,42,.15);

    }


    .toc-sidebar.open{

        right:0;

    }


    /* CLOSE BUTTON */

    .toc-close{

        display:flex;

        justify-content:center;

        align-items:center;

    }


    .toc-link{

        padding:15px 14px;

        font-size:16px;

    }


    .toc-link:hover{

        padding-left:18px;

    }


    /* CONTENT */

    .content-card{

        padding:25px;

        border-radius:18px;

    }


    .content-card h2{

        font-size:24px;

    }

    main {
    padding: 0px;
}


}

main {
    padding: 0px !important;
}
/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px){


    .toc-sidebar{

        width:290px;

    }


    .content-card{

        padding:20px;

    }


    .content-card h2{

        font-size:22px;

    }


    .content-card p{

        font-size:15px;

    }


}
/* ======================================
   MOBILE OVERLAY
====================================== */

.toc-overlay{

    position:fixed;

    inset:0;

    background:rgba(15,23,42,.35);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;

}


.toc-overlay.active{

    opacity:1;

    visibility:visible;

}


/*=========================================
STEP BY STEP GUIDE
=========================================*/

.guide-section{
    margin:30px 0;
}

.section-heading{
    margin-bottom:10px;
}

.section-label{
    display:inline-flex;
    align-items:center;
    padding:7px 14px;
    background:#ecfdf5;
    color:#16a34a;
    border:1px solid #bbf7d0;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:2px;
}

.section-heading h2{
    font-size:30px;
    color:#0f172a;
    margin-bottom:12px;
    font-weight:700;
}

.section-heading p{
    max-width:650px;
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

/*=========================================
TIMELINE
=========================================*/

.guide-timeline{
    position:relative;
    padding-left:35px;
}

.guide-timeline::before{
    content:"";
    position:absolute;
    left:18px;
    top:0;
    bottom:0;
    width:2px;
    background:#d1fae5;
}

/*=========================================
STEP
=========================================*/

.guide-step{
    position:relative;
    margin-bottom:10px;
}

.guide-step:last-child{
    margin-bottom:0;
}

/* Number */

.step-marker{
    position:absolute;
    left:-35px;
    top:20px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    font-size:14px;
    border:2px solid #fff;
    box-shadow:0 5px 15px rgba(22,163,74,.25);
    z-index:2;
}

/* Card */

.step-card{
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:5px;
    padding:10px;
    padding-left: 20px;
    box-shadow:0 10px 25px rgba(15,23,42,.04);
    transition:.25s;
}

.step-card:hover{
    transform:translateY(-3px);
    border-color:#16a34a;
    box-shadow:0 18px 35px rgba(15,23,42,.08);
}

/*=========================================
HEADER
=========================================*/

.step-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:5px;
}

.step-header h3{
    font-size:20px;
    color:#0f172a;
    font-weight:700;
}

.step-time{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 12px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:50px;
    color:#475569;
    font-size:11px;
    white-space:nowrap;
}

/*=========================================
DESCRIPTION
=========================================*/

.step-description{
    color:#64748b;
    line-height:1.9;
    margin-bottom:20px;
}

/*=========================================
TIP / WARNING
=========================================*/

.step-note{
    border-radius:16px;
    padding:8px;
    margin-bottom:5px;
}

.step-note strong{
    display:block;
    margin-bottom:8px;
    font-size:15px;
}

.step-note p{
    margin:0;
    color:#475569;
    line-height:1.8;
}

.step-note.tip{
    background:#f0fdf4;
    border:1px solid #bbf7d0;
}

.step-note.warning{
    background:#fffbeb;
    border:1px solid #fde68a;
}

/*=========================================
BUTTONS
=========================================*/

.step-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.step-actions.two-column .step-btn{
    flex:1;
}

.step-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:170px;
    height:48px;
    padding:0 22px;
    background:#16a34a;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    transition:.25s;
}

.step-btn:hover{
    background:#15803d;
    transform:translateY(-2px);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

    .guide-timeline{
        padding-left:25px;
    }

    .guide-timeline::before{
        left:12px;
    }

    .step-marker{
        left:-25px;
        width:30px;
        height:30px;
        font-size:12px;
    }

    .step-card{
        padding:10px;
    }

    .step-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .step-header h3{
        font-size:20px;
    }

    .section-heading h2{
        font-size:28px;
    }

    .step-actions{
        flex-direction:column;
    }

    .step-btn{
        width:100%;
    }

}

/*=========================================
HERO SOCIAL LINKS
=========================================*/

.hero-social{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    margin-top:18px;

}

.social-btn{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f8fafc;

    border:1px solid #e2e8f0;

    border-radius:14px;

    color:#475569;

    text-decoration:none;

    font-size:18px;

    transition:all .25s ease;

}

.social-btn:hover{

    background:#16a34a;

    border-color:#16a34a;

    color:#ffffff;

    transform:translateY(-3px);

    box-shadow:0 12px 24px rgba(22,163,74,.18);

}

/*=========================================
HERO BUTTON + SOCIAL
=========================================*/

.hero-actions{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:24px;

    flex-wrap:wrap;

}

.hero-buttons{

    margin:0;

}

.hero-social{

    display:flex;

    align-items:center;

    gap:10px;

    margin:0;

}

.social-btn{

    width:44px;

    height:44px;

}

@media(max-width:768px){

.hero-actions{

    flex-direction:column;

    align-items:stretch;

    gap:16px;

}

.hero-buttons{

    width:100%;

}

.hero-buttons .btn{

    width:100%;

    justify-content:center;

}

.hero-social{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    margin-top:4px;

}

}

/*=========================================
FLOATING CONTENT BUTTON
=========================================*/

.floating-toc-btn{

    position:fixed;

    left:20px;

    bottom:20px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    display:none;

    justify-content:center;

    align-items:center;

    box-shadow:0 12px 30px rgba(22,163,74,.35);

    transition:.3s;

    z-index:10001;

}

.floating-toc-btn:hover{

    transform:translateY(-3px);

}

.floating-toc-btn.active{

    background:#ef4444;

}

/* Mobile */

@media(max-width:768px){

    .floating-toc-btn{

        display:flex;

    }

    /* আগের Contents Button লুকিয়ে দিন */

    .toc-toggle{

        display:none !important;

    }

}

/*=========================================
LATEST UPDATES
=========================================*/

.updates-section{

    margin:30px 0;

}

.updates-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.update-card{

    display:flex;

    gap:20px;

    padding:10px;

    background:#ffffff;

    border:1px solid #e8edf3;

    border-radius:18px;

    transition:.25s;

    box-shadow:0 8px 25px rgba(15,23,42,.04);

}

.update-card:hover{

    transform:translateY(-3px);

    border-color:#16a34a;

    box-shadow:0 16px 35px rgba(15,23,42,.08);

}

.update-icon{

    width:52px;

    height:52px;

    flex-shrink:0;

    border-radius:14px;

    background:#ecfdf5;

    color:#16a34a;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.update-content{

    flex:1;

}

.update-content h3{

    font-size:20px;

    color:#0f172a;

    margin-bottom:10px;

    font-weight:700;

}

.update-content p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:16px;

}

.update-date{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:1px 14px;

    border-radius:999px;

    background:#f8fafc;

    border:1px solid #e2e8f0;

    color:#475569;

    font-size:14px;

    font-weight:500;

}

@media(max-width:768px){

    .update-card{

        padding:10px;

        gap:12px;

    }

    .update-icon{

        width:44px;

        height:44px;

        font-size:18px;

    }

    .update-content h3{

        font-size:18px;

    }

    .update-content p{

        font-size:15px;

    }

    .update-date{

        font-size:13px;

        padding:7px 12px;

    }

}

/*=========================================
UPDATE BADGES
=========================================*/

.update-badge{

    display:inline-flex;

    align-items:center;

    padding:1px 10px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    margin-bottom:14px;

    text-transform:uppercase;

    letter-spacing:.4px;

}

/* New */

.update-badge.new{

    background:#ecfdf5;

    color:#15803d;

    border:1px solid #bbf7d0;

}

/* Important */

.update-badge.important{

    background:#fffbeb;

    color:#b45309;

    border:1px solid #fde68a;

}

/* Announcement */

.update-badge.announcement{

    background:#eff6ff;

    color:#2563eb;

    border:1px solid #bfdbfe;

}

/* Urgent */

.update-badge.urgent{

    background:#fef2f2;

    color:#dc2626;

    border:1px solid #fecaca;

}

/*=========================================
FAQ SECTION
=========================================*/

.faq-section{

    margin:30px 0;

}

.faq-list{

    display:flex;

    flex-direction:column;

    gap:16px;

}

/* FAQ Card */

.faq-item{

    background:#ffffff;

    border:1px solid #e8edf3;

    border-radius:18px;

    overflow:hidden;

    transition:.3s ease;

    box-shadow:0 8px 25px rgba(15,23,42,.04);

}

.faq-item:hover{

    border-color:#16a34a;

    box-shadow:0 16px 35px rgba(15,23,42,.08);

}

/* Question */

.faq-question{

    width:100%;

    border:none;

    background:transparent;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:5px 24px;

    cursor:pointer;

    text-align:left;

    font-size:17px;

    font-weight:600;

    color:#0f172a;

}

.faq-question span{

    flex:1;

    line-height:1.6;

}

.faq-question i{

    width:30px;

    height:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#f8fafc;

    border:1px solid #e2e8f0;

    color:#64748b;

    transition:.3s ease;

    flex-shrink:0;

}

/* Active */

.faq-item.active{

    border-color:#16a34a;

}

.faq-item.active .faq-question i{

    background:#16a34a;

    border-color:#16a34a;

    color:#ffffff;

}

/* Answer */

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    margin:0;

    padding:0 24px 24px;

    color:#64748b;

    line-height:1.9;

    font-size:15px;

}

/* First Item Open */

.faq-item.active .faq-answer{

    max-height:300px;

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:768px){

    .faq-question{

        padding:10px;

        font-size:16px;

    }

    .faq-question i{

        width:25px;

        height:25px;

        font-size:14px;

    }

    .faq-answer p{

        padding:0 18px 18px;

        font-size:14px;

    }

}

/*=========================================
IMPORTANT LINKS
=========================================*/

.important-links{

    margin-top:40px;

    padding-top:24px;

    border-top:1px solid #e8edf3;

}

.important-links h3{

    font-size:22px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:18px;

}

.important-links-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

.important-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:5px 10px;

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:12px;

    color:#334155;

    text-decoration:none;

    font-weight:600;

    transition:all .25s ease;

}

.important-btn i{

    font-size:18px;

    color:#16a34a;

}

.important-btn:hover{

    background:#16a34a;

    border-color:#16a34a;

    color:#ffffff;

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(22,163,74,.18);

}

.important-btn:hover i{

    color:#ffffff;

}

/* Mobile */

@media (max-width:768px){

    .important-links-buttons{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        gap:10px;

    }

    .important-btn{

        width:auto;

        justify-content:center;

        padding:5px 10px;

        font-size:14px;

    }

}

/*=========================================
RELATED AIRDROPS
=========================================*/

.related-airdrops{

    margin:30px 0;

}

.related-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:20px;

}

.related-card{

    background:#ffffff;

    border:1px solid #e8edf3;

    border-radius:18px;

    padding:24px 18px;

    text-decoration:none;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    transition:.25s ease;

    box-shadow:0 8px 25px rgba(15,23,42,.04);

}

.related-card:hover{

    transform:translateY(-4px);

    border-color:#16a34a;

    box-shadow:0 18px 40px rgba(15,23,42,.08);

}

.related-card img{

    width:72px;

    height:72px;

    border-radius:18px;

    object-fit:cover;

    margin-bottom:16px;

    border:1px solid #e2e8f0;

}

.related-card h3{

    margin:0;

    color:#0f172a;

    font-size:18px;

    font-weight:700;

    text-align:center;

    line-height:1.4;

}

/* Mobile */

@media(max-width:768px){

    .related-grid{

        grid-template-columns:repeat(2,1fr);

        gap:14px;

    }

    .related-card{

        padding:18px 12px;

        border-radius:14px;

    }

    .related-card img{

        width:60px;

        height:60px;

        margin-bottom:12px;

    }

    .related-card h3{

        font-size:15px;

    }

}


