@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --black: #000;
    --white: #ffffff;
    --lightgrey: #f1f1f1;
    --darkblue: #0264b3;
    --primarycolor: #67a2d1;
    --secondarycolor: #67a2d1;
    --lightDark: #080A25;
    --darkText: #8388B4;
}

body {
    font-family: 'Poppins', sans-serif;
    

}

.crypto-land {
    background-color: var(--darkblue);
    color: var(--white);
    margin-top: 60px;
}


.gridSection {
    display: grid;
    align-items: center;
    gap: 40px;
    margin-bottom: 1em;
}

@media screen and (min-width:800px) {
    section {
        width: 85%;
    }

    .gridSection {
        grid-template-columns: 1fr 1fr;
    }
}


.sectionDesc {
    order: 1;
}

@media screen and (min-width:800px) {
    .sectionPic {
        order: 1;
    }

    .sectionDesc {
        order: 0;
    }
}

.landing-page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 30px;
    letter-spacing: 3px;
    color: #FFD700;
    /* Gold-like color */
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.8);
}


.btnContainer {
    margin-top: 2em;
}

#sectionPic {
    width: 100%;
    max-width: 550px;
    margin: auto;
}

.sectionPic img {
    width: 94%;
}

.bouncepic img {
    animation: bounce 15s infinite;
}


.div_showmore {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}


@media (max-width: 768px) {
    .div_showmore {
        flex-direction: column;
    }

    .left-content {
        margin-right: 0;
    }

    .div-img {
        height: 200px;
    }
}

.left-content {
    flex: 2;
    margin-right: 20px;
}

.title-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.title-item:last-child {
    border-bottom: none;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.title {
    font-size: 16px;
    color: #0d102c;
    font-weight: 500;
}


.show-more {
    font-size: 11px;
    color: #007BFF;
    cursor: pointer;
}

.show-more:hover {
    text-decoration: underline;
}

.points {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    list-style: none;
    color: #1b1e39;
    padding: 0;
    margin-top: 10px;
}

.points.open {
    max-height: 200px;
    padding: 10px 0;
}

.points li {
    margin-bottom: 5px;
}

.title-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.title-item:last-child {
    border-bottom: none;
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.div-img {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/*slider video*/
.body {
    display: flex;
    align-items: center;
    justify-content: center;
}


.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #0b1e6b;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color: #5372F0;
    margin-top: -35px;
}

/* Responsive media query code for small screens */
@media (max-width: 768px) {
    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button {
        display: none;
    }
}

.card-wrapper {
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}


.card-list .card-item {
    list-style: none;
}

.card-list .card-item .card-link {
    display: block;
    background: #fff;
    padding: 18px;
    user-select: none;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
    cursor: grabbing;
}

.card-list .card-item .card-link:hover {
    border-color: #5372F0;
}

.card-list .card-link .card-image {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.card-list .card-link .badge {
    color: #5372F0;
    width: fit-content;
    padding: 8px 16px;
    font-size: 0.95rem;
    border-radius: 50px;
    font-weight: 500;
    background: #DDE4FF;
    margin: 16px 0 18px;
}

.card-list .card-link .badge-designer {
    color: #B22485;
    background: #F7DFF5;
}

.card-list .card-link .badge-marketer {
    color: #B25A2B;
    background: #FFE3D2;
}

.card-list .card-link .badge-gamer {
    color: #205C20;
    background: #D6F8D6;
}

.card-list .card-link .badge-editor {
    color: #856404;
    background: #fff3cd;
}

.card-list .card-link .card-title {
    color: #000;
    font-size: 1.19rem;
    font-weight: 600;
}

.card-list .card-link .card-button {
    height: 35px;
    width: 35px;
    color: #5372F0;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #5372F0;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
    color: #fff;
    background: #5372F0;
}



/* common styles */
section {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}




@keyframes bounce {
    0% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(-30px)
    }
}

