/* ============================================
   NFTPLAY THEME - main.css (moban-186)
   NFT Art Gallery Theme
   Colors: Pink(#E91E63) + Purple(#7B1FA2) + Blue(#1976D2)
   Fonts: Abril Fatface + Quicksand
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: #0D0D1A;
    color: #E8E8F0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Abril Fatface', cursive;
    font-weight: 400;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #E91E63;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF4081;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.nft-gradient-text {
    background: linear-gradient(135deg, #E91E63, #7B1FA2, #1976D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pink-text {
    color: #E91E63;
}

.purple-text {
    color: #7B1FA2;
}

.blue-text {
    color: #1976D2;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes nftReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(10px) scale(0.98);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes gallerySlide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    30% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes artGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(233, 30, 99, 0.3), 0 0 40px rgba(123, 31, 162, 0.2);
        filter: brightness(1);
    }
    25% {
        box-shadow: 0 0 30px rgba(233, 30, 99, 0.5), 0 0 60px rgba(123, 31, 162, 0.3);
        filter: brightness(1.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(123, 31, 162, 0.5), 0 0 80px rgba(25, 118, 210, 0.3);
        filter: brightness(1.2);
    }
    75% {
        box-shadow: 0 0 30px rgba(25, 118, 210, 0.5), 0 0 60px rgba(233, 30, 99, 0.3);
        filter: brightness(1.1);
    }
}

@keyframes mintPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(233, 30, 99, 0);
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 10px) scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, rgba(13, 13, 26, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.5));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.8));
    transform: scale(1.05);
}

.header-time {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #B0B0C0;
    background: rgba(123, 31, 162, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(123, 31, 162, 0.3);
}

.header-btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    color: #E91E63;
    border: 2px solid #E91E63;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover {
    background: #E91E63;
    color: #fff;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
}

.btn-register {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    border: none;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FF4081, #9C27B0);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    color: #1976D2;
    border: 2px solid #1976D2;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-demo:hover {
    background: #1976D2;
    color: #fff;
    box-shadow: 0 0 20px rgba(25, 118, 210, 0.4);
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, rgba(233, 30, 99, 0.1), rgba(123, 31, 162, 0.1), rgba(25, 118, 210, 0.1));
    border-top: 1px solid rgba(233, 30, 99, 0.15);
    border-bottom: 1px solid rgba(123, 31, 162, 0.15);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: #E8E8F0;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Quicksand', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #E91E63, #7B1FA2);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #E91E63;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link i {
    margin-right: 5px;
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #E91E63;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #E91E63, #7B1FA2, #1976D2, #7B1FA2, #E91E63);
    background-size: 300% 100%;
    animation: shimmer 8s linear infinite;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: gallerySlide 20s linear infinite;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.notification-content span {
    flex-shrink: 0;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.announcement-modal.active {
    display: flex;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    border: 2px solid rgba(233, 30, 99, 0.3);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
    animation: nftReveal 0.5s ease;
    z-index: 10001;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #B0B0C0;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.announcement-close:hover {
    color: #E91E63;
    transform: rotate(90deg);
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 20px;
}

.announcement-header-icon i {
    font-size: 50px;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.announcement-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
    font-family: 'Abril Fatface', cursive;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.15);
    transition: all 0.3s ease;
    color: #E8E8F0;
}

.announcement-item:hover {
    background: rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
    transform: translateX(5px);
    color: #fff;
}

.announcement-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.announcement-badge.hot {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, #7B1FA2, #6A1B9A);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    color: #fff;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
}

.announcement-item i.fa-chevron-right {
    color: #E91E63;
    font-size: 12px;
}

.announcement-footer {
    text-align: center;
}

.announcement-cta {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    animation: mintPulse 2s infinite;
}

.announcement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    color: #fff;
}

/* === HERO SECTION === */
.nftplay-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    margin: 30px 0;
    background: linear-gradient(135deg, #0D0D1A, #1A1A2E, #16213E);
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.nft-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nft-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 10s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #E91E63, transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #7B1FA2, transparent);
    bottom: -100px;
    right: -50px;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #1976D2, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -6s;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 30px;
    max-width: 900px;
    animation: nftReveal 1s ease;
}

.hero-main-title {
    margin-bottom: 25px;
}

.hero-brand {
    display: block;
    font-size: 64px;
    letter-spacing: 8px;
    line-height: 1.1;
    font-family: 'Abril Fatface', cursive;
    text-shadow: 0 0 40px rgba(233, 30, 99, 0.5);
}

.hero-divider-line {
    display: block;
    width: 120px;
    height: 4px;
    margin: 20px auto;
    background: linear-gradient(90deg, #E91E63, #7B1FA2, #1976D2);
    border-radius: 2px;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    letter-spacing: 4px;
    color: #B0B0C0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    color: #C0C0D0;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Abril Fatface', cursive;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 13px;
    color: #B0B0C0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-nft-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-nft-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-nft-primary:hover::before {
    left: 100%;
}

.btn-nft-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    color: #fff;
}

.btn-outline-nft {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid #1976D2;
    color: #1976D2;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-nft:hover {
    background: #1976D2;
    color: #fff;
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.4);
    transform: translateY(-3px);
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'Abril Fatface', cursive;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #E91E63, #7B1FA2, #1976D2);
    border-radius: 2px;
}

.section-title i {
    margin-right: 10px;
}

.section-subtitle {
    text-align: center;
    color: #B0B0C0;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* === NFT FEATURED COLLECTION === */
.nft-featured-collection {
    padding: 60px 0;
}

.nft-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.nft-feature-card {
    position: relative;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.15);
    transition: all 0.4s ease;
    display: block;
    color: #E8E8F0;
    animation: nftReveal 0.8s ease both;
}

.nft-feature-card:nth-child(1) { animation-delay: 0.1s; }
.nft-feature-card:nth-child(2) { animation-delay: 0.2s; }
.nft-feature-card:nth-child(3) { animation-delay: 0.3s; }
.nft-feature-card:nth-child(4) { animation-delay: 0.4s; }
.nft-feature-card:nth-child(5) { animation-delay: 0.5s; }
.nft-feature-card:nth-child(6) { animation-delay: 0.6s; }

.nft-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(233, 30, 99, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nft-feature-card:hover .nft-card-glow {
    opacity: 1;
}

.nft-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.4);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    color: #fff;
}

.nft-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.nft-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nft-feature-card:hover .nft-card-image img {
    transform: scale(1.1);
}

.nft-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    justify-content: flex-end;
}

.nft-price {
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
}

.nft-price i {
    margin-right: 4px;
}

.nft-card-info {
    padding: 20px;
}

.nft-card-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Abril Fatface', cursive;
    color: #fff;
}

.nft-card-info p {
    font-size: 14px;
    color: #B0B0C0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.nft-card-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #808090;
}

.nft-card-meta span i {
    margin-right: 5px;
    color: #E91E63;
}

/* === NFT CATEGORIES === */
.nft-categories-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(233, 30, 99, 0.03), rgba(123, 31, 162, 0.03));
    border-radius: 20px;
    margin: 30px 0;
}

.nft-categories-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.nft-category-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.nft-category-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 16px;
    border: 1px solid rgba(123, 31, 162, 0.2);
    transition: all 0.3s ease;
    color: #E8E8F0;
    text-align: center;
}

.nft-category-node:hover {
    transform: translateY(-8px);
    border-color: #E91E63;
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
    color: #fff;
}

.nft-cat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(123, 31, 162, 0.15));
    margin-bottom: 12px;
    font-size: 24px;
    color: #E91E63;
    transition: all 0.3s ease;
}

.nft-category-node:hover .nft-cat-icon {
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    color: #fff;
    transform: scale(1.1);
}

.nft-cat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === PLATFORM FEATURES === */
.nft-platform-features {
    padding: 60px 0;
}

.nft-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.nft-feature-card {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(123, 31, 162, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nft-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E91E63, #7B1FA2, #1976D2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.nft-feature-card:hover::before {
    transform: scaleX(1);
}

.nft-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 20px 40px rgba(123, 31, 162, 0.2);
}

.nft-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(123, 31, 162, 0.15));
    font-size: 32px;
    color: #E91E63;
    transition: all 0.3s ease;
}

.nft-feature-card:hover .nft-feature-icon {
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    color: #fff;
    animation: artGlow 2s ease infinite;
}

.nft-feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Abril Fatface', cursive;
}

.nft-feature-card p {
    font-size: 14px;
    color: #B0B0C0;
    line-height: 1.7;
}

/* === STATS SECTION === */
.nft-stats {
    position: relative;
    padding: 80px 0;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
}

.nft-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A2E, #16213E, #0D0D1A);
    z-index: 0;
}

.nft-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(233, 30, 99, 0.1), transparent 70%),
                radial-gradient(ellipse at 20% 80%, rgba(123, 31, 162, 0.1), transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(25, 118, 210, 0.1), transparent 50%);
}

.nft-stats .section-title,
.nft-stats .section-subtitle {
    position: relative;
    z-index: 1;
}

.nft-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.nft-stat-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.nft-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 30, 99, 0.5);
    animation: artGlow 2s ease infinite;
}

.stat-icon-decoration {
    color: rgba(233, 30, 99, 0.2);
    font-size: 20px;
    margin-bottom: 10px;
}

.stat-icon-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Abril Fatface', cursive;
    background: linear-gradient(135deg, #E91E63, #7B1FA2, #1976D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #B0B0C0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* === PROMOTIONS === */
.nft-promos {
    padding: 60px 0;
}

.nft-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.nft-promo-card {
    position: relative;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.15);
    transition: all 0.4s ease;
}

.promo-nft-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(233, 30, 99, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nft-promo-card:hover .promo-nft-bg {
    opacity: 1;
}

.nft-promo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.4);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.nft-promo-inner {
    position: relative;
    padding: 35px 25px;
    text-align: center;
    z-index: 1;
}

.promo-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nft-promo-inner h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Abril Fatface', cursive;
    letter-spacing: 1px;
}

.nft-promo-inner p {
    font-size: 14px;
    color: #B0B0C0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #808090;
    margin-bottom: 20px;
}

.promo-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-badge.hot {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: #fff;
}

.promo-badge.new {
    background: linear-gradient(135deg, #7B1FA2, #6A1B9A);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    color: #fff;
}

.btn-promo {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
    color: #fff;
}

/* === CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 30px;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.footer-cta-nftfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    z-index: 0;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
}

.cta-nft-decoration {
    margin-bottom: 30px;
}

.cta-nft-frame {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border: 3px solid rgba(233, 30, 99, 0.3);
    border-radius: 20px;
    transform: rotate(45deg);
    animation: artGlow 3s ease infinite;
}

.footer-cta-inner h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Abril Fatface', cursive;
}

.footer-cta-inner p {
    font-size: 16px;
    color: #B0B0C0;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #E8E8F0;
}

.cta-feature i {
    color: #E91E63;
}

.cta-main-btn {
    animation: mintPulse 2s infinite;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 60px 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.article-card {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(123, 31, 162, 0.15);
    transition: all 0.3s ease;
    display: block;
    color: #E8E8F0;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 30, 99, 0.4);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.15);
    color: #fff;
}

.article-card-thumb {
    height: 200px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.1);
}

.article-card-title {
    padding: 15px 20px 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Quicksand', sans-serif;
    min-height: 50px;
}

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 20px;
    font-size: 12px;
    color: #808090;
    margin-bottom: 10px;
}

.article-card-meta i {
    margin-right: 5px;
    color: #E91E63;
}

.article-card-excerpt {
    padding: 0 20px 20px;
    font-size: 13px;
    color: #B0B0C0;
    line-height: 1.6;
}

.home-news-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.view-more-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nft-view-more {
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    color: #fff;
}

.nft-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
    color: #fff;
}

/* === CONTENT AREA LAYOUT === */
.content-area {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #808090;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #E91E63;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF4081;
}

.breadcrumb span {
    color: #808090;
}

/* === ARTICLE GRID (Blog) === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.article-grid .article-card {
    animation: nftReveal 0.6s ease both;
}

.article-card-more {
    display: block;
    padding: 12px 20px 20px;
    color: #E91E63;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-card-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.article-card-more:hover {
    color: #FF4081;
}

.article-card-more:hover i {
    transform: translateX(5px);
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #808090;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(123, 31, 162, 0.15);
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 25px;
}

.article-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Abril Fatface', cursive;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #808090;
}

.article-meta span i {
    margin-right: 5px;
    color: #E91E63;
}

.article-meta a {
    color: #E91E63;
}

.article-featured-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
}

.article-featured-img img {
    width: 100%;
    border-radius: 16px;
}

.article-content {
    font-size: 16px;
    line-height: 1.9;
    color: #D0D0E0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #fff;
    margin: 25px 0 15px;
    font-family: 'Abril Fatface', cursive;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content a {
    color: #E91E63;
    text-decoration: underline;
}

.article-content img {
    border-radius: 12px;
    margin: 15px 0;
}

.article-content blockquote {
    border-left: 4px solid #E91E63;
    padding: 15px 25px;
    margin: 20px 0;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #B0B0C0;
}

.article-content ul,
.article-content ol {
    padding-left: 25px;
    margin-bottom: 15px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(123, 31, 162, 0.15);
    margin-top: 30px;
}

.article-tags > i {
    color: #E91E63;
}

.article-tags span {
    background: rgba(233, 30, 99, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #E91E63;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.article-tags span a {
    color: #E91E63;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(123, 31, 162, 0.15);
}

.article-nav-prev a,
.article-nav-next a {
    color: #E91E63;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(233, 30, 99, 0.15);
    transition: all 0.3s ease;
    display: inline-block;
}

.article-nav-prev a:hover,
.article-nav-next a:hover {
    background: rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
    color: #FF4081;
}

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Abril Fatface', cursive;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(233, 30, 99, 0.2);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-item {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(123, 31, 162, 0.15);
    transition: all 0.3s ease;
    display: block;
    color: #E8E8F0;
}

.related-item:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.15);
    color: #fff;
}

.related-item-thumb {
    height: 120px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-item-thumb img {
    transform: scale(1.1);
}

.related-item-title {
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Quicksand', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(123, 31, 162, 0.15);
}

.page-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Abril Fatface', cursive;
}

.page-featured-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
}

.page-content {
    font-size: 16px;
    line-height: 1.9;
    color: #D0D0E0;
}

.page-content h2,
.page-content h3 {
    color: #fff;
    margin: 20px 0 12px;
}

.page-content p {
    margin-bottom: 15px;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

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

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    color: #B0B0C0;
    border: 1px solid rgba(123, 31, 162, 0.2);
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* === SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.sidebar-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
    color: #fff;
}

.sidebar-btn-facebook {
    background: #1877F2;
}

.sidebar-btn-telegram {
    background: #0088cc;
}

.sidebar-label {
    position: absolute;
    right: 60px;
    background: rgba(26, 26, 46, 0.95);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.sidebar-btn:hover .sidebar-label {
    opacity: 1;
    transform: translateX(0);
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D1A, #0A0A15);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(233, 30, 99, 0.15);
    margin-top: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Abril Fatface', cursive;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #E91E63, #7B1FA2);
    border-radius: 1px;
}

.footer-brand-logo img {
    height: 45px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.3));
}

.footer-brand-text {
    font-size: 13px;
    color: #B0B0C0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #E91E63;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #E91E63;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.1);
    color: #E91E63;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.footer-social-links a:hover {
    background: #E91E63;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #B0B0C0;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '→';
    color: rgba(233, 30, 99, 0.5);
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #E91E63;
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    color: #E91E63;
}

.footer-license-bar {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(123, 31, 162, 0.15);
    border-bottom: 1px solid rgba(123, 31, 162, 0.15);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Abril Fatface', cursive;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.license-item i {
    font-size: 28px;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.license-item span {
    font-size: 12px;
    color: #808090;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #808090;
}

/* === SCROLL ANIMATIONS === */
.nft-feature-card.visible,
.nft-category-node.visible,
.nft-feature-card.visible,
.nft-stat-card.visible,
.nft-promo-card.visible,
.article-card.visible {
    animation: nftReveal 0.6s ease both;
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0D0D1A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #E91E63, #7B1FA2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FF4081, #9C27B0);
}

/* === SELECTION === */
::selection {
    background: rgba(233, 30, 99, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(233, 30, 99, 0.3);
    color: #fff;
}
