/* Using global variables from style.css */

#about {
    position: relative;
    padding: 2rem 0;
    background-color: var(--bg-light);
    background-image: radial-gradient(var(--brand-primary) 1px, transparent 1px);
    background-size: 30px 30px;
    overflow: hidden;
}

.marquee-container {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    transform: rotate(-2deg);
    background: var(--bg-dark);
    color: var(--white);
    padding: 10px 0;
    z-index: 0;
    opacity: 0.1;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid var(--brand-primary);
    border-bottom: 2px solid var(--brand-primary);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.about-subtitle {
    display: inline-block;
    background-color: var(--brand-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 4px 4px 0px var(--bg-dark);
    transform: rotate(-2deg);
}

.about-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--bg-dark);
}

.highlight-text {
    background: linear-gradient(120deg, var(--brand-lime) 0%, var(--brand-lime) 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
    color: inherit;
}

.funky-divider {
    height: 4px;
    width: 100px;
    background: linear-gradient(to right, var(--brand-pink), var(--brand-purple));
    border-radius: 2px;
}

.funky-stats .stat-item {
    background: var(--white);
    padding: 1rem 1.5rem;
    border: 2px solid var(--bg-dark);
    border-radius: 12px;
    text-align: center;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.funky-stats .stat-item:hover {
    transform: translateY(-5px) scale(1.05) rotate(0) !important;
    box-shadow: 8px 8px 0px var(--brand-lime);
}

.stat-val {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-primary);
}

.stat-key {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-600);
}

.rotate-n3 {
    transform: rotate(-3deg);
}

.rotate-p2 {
    transform: rotate(2deg);
}

.rotate-n1 {
    transform: rotate(-1deg);
}

.btn-funky {
    background: var(--bg-dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 0;
    border: 2px solid var(--bg-dark);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 6px 6px 0px var(--brand-primary);
}

.btn-funky:hover {
    background: var(--brand-primary);
    color: var(--white);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--bg-dark);
    border-color: var(--brand-primary);
}

.about-sticker-composition {
    position: relative;
    height: 600px;
    width: 100%;
}

.sticker {
    position: absolute;
    padding: 10px;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.sticker-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sticker img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sticker-tape {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 120px;
    height: 35px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0.8;
}

.sticker-1 {
    top: 50px;
    left: 20px;
    width: 250px;
    height: 300px;
    transform: rotate(-6deg);
    z-index: 1;
}

.sticker-2 {
    top: 150px;
    right: 20px;
    width: 280px;
    height: 350px;
    transform: rotate(5deg);
    z-index: 2;
}

.sticker-3 {
    bottom: 50px;
    left: 100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    transform: rotate(-10deg);
    z-index: 3;
}

.sticker-3 .sticker-content {
    border-radius: 50%;
}

.sticker-3 .sticker-tape {
    display: none;
}

.sticker:hover {
    z-index: 50;
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.sticker:hover img {
    transform: scale(1.1);
}

.sticker-badge {
    position: absolute;
    bottom: 80px;
    right: 0px;
    width: 120px;
    height: 120px;
    z-index: 4;
    animation: rotate-badge 10s linear infinite;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    fill: var(--bg-dark);
    letter-spacing: 2px;
}

.badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--brand-primary);
}

@keyframes rotate-badge {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    z-index: 0;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--brand-lime);
    top: 20%;
    left: 10%;
    animation: pulse-blob 8s infinite alternate;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--brand-primary);
    bottom: 10%;
    right: 0%;
    animation: pulse-blob 6s infinite alternate-reverse;
}

@keyframes pulse-blob {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 991px) {
    .about-headline {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 0.8rem;
    }

    .about-sticker-composition {
        height: 450px;
        margin-top: 3rem;
    }

    .sticker-1 {
        width: 180px;
        height: 220px;
        left: 10px;
    }

    .sticker-2 {
        width: 200px;
        height: 260px;
        right: 10px;
        top: 100px;
    }

    .sticker-3 {
        width: 150px;
        height: 150px;
        bottom: 20px;
        left: 80px;
    }

    .sticker-badge {
        display: none;
    }
}

.nft-slider-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 20px;
}

.nft-item {
    background: var(--white);
    border-radius: 20px;
    padding: 15px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    border: 2px solid var(--bg-dark);
}

.nft-inner {
    width: 100%;
}

.nft-item-top {
    margin-bottom: 15px;
}

.single-author img {
    border: 2px solid var(--brand-lime);
    padding: 2px;
}

.nft-thumb {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--bg-dark);
    height: 280px;
}

.nft-thumb img {
    transition: transform 0.5s ease;
}

.nft-item:hover .nft-thumb img {
    transform: scale(1.1);
}

.nft-content h4 a {
    color: var(--bg-dark);
    transition: color 0.3s;
}

.nft-content h4 a:hover {
    color: var(--brand-primary);
}

.nft-price .text-warning {
    color: #ffb700 !important;
}

.nft-like {
    padding: 5px 12px;
    background: #ffeaea;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.nft-like:hover {
    background: #ffcccc;
}

.swiper-pagination-bullet-active {
    background: var(--bg-dark) !important;
}



.nft-slider-wrapper {
    margin-top: 2rem;
}

@media (max-width: 991px) {
    .nft-slider-wrapper {
        max-width: 280px;
        margin-top: 1rem;
        padding: 5px;
    }

    #about .swiper-pagination {
        margin-top: 2px !important;
        position: relative !important;
    }

    .nft-item {
        padding: 10px;
        border-radius: 12px;
    }

    .nft-thumb {
        height: 180px !important;
    }

    .nft-thumb img {
        height: 100% !important;
    }

    .nft-content h4 {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .nft-slider-wrapper {
        margin-top: 0;
        transform: rotate(3deg);
    }
}