/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-pills {
    display: flex;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 50px;
    padding: 8px;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-pill {
    padding: 12px 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-pill:hover::before {
    left: 100%;
}

.nav-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.buy-button-container {
    flex-shrink: 0;
}

.buy-button {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

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

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 172, 254, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    overflow: hidden;
    padding: 120px 2rem 80px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: #1a1a2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.pengu-text {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #333;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Floating Penguins */
.floating-penguins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.penguin {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.penguin img {
    width: 150px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.penguin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.penguin-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.penguin-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Ice Background */
.ice-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

.ice-chunk {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    animation: drift 8s ease-in-out infinite;
}

.ice-1 {
    width: 100px;
    height: 60px;
    bottom: 20px;
    left: 20%;
    animation-delay: 0s;
}

.ice-2 {
    width: 150px;
    height: 80px;
    bottom: 10px;
    right: 30%;
    animation-delay: 3s;
}

.ice-3 {
    width: 80px;
    height: 50px;
    bottom: 30px;
    left: 60%;
    animation-delay: 6s;
}

/* Stats Section */
.stats-section {
    padding: 120px 2rem;
    background: #0f0f23;
    position: relative;
    overflow: hidden;
}

/* NFT Background Animation for Stats */
.stats-nft-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2;
    z-index: 1;
    mask: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.stats-nft-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    height: 100%;
    padding: 20px 0;
}

.stats-nft-row {
    display: flex;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
}

.stats-nft-row:nth-child(odd) {
    animation: slideStatsLeftToRight 180s linear infinite;
}

.stats-nft-row:nth-child(even) {
    animation: slideStatsRightToLeft 160s linear infinite;
}

.stats-nft-row:nth-child(3n) {
    animation: slideStatsLeftToRight 200s linear infinite;
}

.stats-nft-row:nth-child(4n) {
    animation: slideStatsRightToLeft 140s linear infinite;
}

@keyframes slideStatsLeftToRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100vw);
    }
}

@keyframes slideStatsRightToLeft {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.stats-nft-item {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

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

.stats-nft-item:hover {
    transform: scale(1.1);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    z-index: 10;
}

.stats-nft-item:hover img {
    transform: scale(1.05);
}

/* Add special effects to random items */
.stats-nft-item:nth-child(7n) {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.stats-nft-item:nth-child(11n) {
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
}

.stats-nft-item:nth-child(13n) {
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.stats-badge {
    display: inline-block;
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.stats-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.big-number {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 2rem;
    animation: countUp 2s ease-out;
}

.stats-subtitle h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.real-time-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4ade80;
    font-weight: 600;
}

.green-dot {
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Stats Cards */
.stats-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stats-card {
    position: absolute;
    background: rgba(26, 26, 46, 0.9);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: float 8s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: scale(1.05);
}

.stats-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.stats-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.social-stats {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.stat-badge.youtube {
    background: #ff0000;
}

.stat-badge.tiktok {
    background: #000000;
}

.stat-badge.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.stat-badge.twitter {
    background: #1da1f2;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 4s;
}

.card-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 6s;
}

/* GIF Views Section */
.gif-views-section {
    padding: 120px 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.gif-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.gif-content {
    text-align: left;
}

.gif-stats-badge {
    display: inline-block;
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.gif-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
}

.blue-text {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gif-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    animation: slideInRight 1s ease-out;
}

.gif-item {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff, #5f27cd);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.gif-item:hover {
    transform: scale(1.05) rotate(2deg);
}

.gif-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.gif-1 { animation-delay: 0s; }
.gif-2 { animation-delay: 0.2s; }
.gif-3 { animation-delay: 0.4s; }
.gif-4 { animation-delay: 0.6s; }
.gif-5 { animation-delay: 0.8s; }
.gif-6 { animation-delay: 1s; }
.gif-7 { animation-delay: 1.2s; }
.gif-8 { animation-delay: 1.4s; }

/* Toys Section */
.toys-section {
    padding: 120px 2rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.toys-video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.toys-video-container:hover {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-button {
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.toys-content {
    text-align: center;
    color: #ffffff;
}

.toys-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.toys-number {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Validator Section */
.validator-section {
    padding: 120px 2rem;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.validator-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.validator-content {
    text-align: left;
}

.validator-badge {
    display: inline-block;
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.validator-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
}

.validator-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.partnership {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.partner-logo {
    display: inline-block;
    font-weight: 700;
    color: #4facfe;
    margin-left: 10px;
}

.stake-button {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.stake-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 172, 254, 0.6);
}

.validator-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.validator-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
}

.validator-stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #0a0a1a;
    padding: 80px 2rem 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4facfe;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gif-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .validator-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .validator-stats {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 140px 1rem 60px;
    }
    
    .penguin img {
        width: 100px;
    }
    
    .gif-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .validator-stats {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-pills {
        padding: 6px;
        gap: 2px;
    }
    
    .nav-pill {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .buy-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 120px 1rem 40px;
    }
    
    .stats-section,
    .gif-views-section,
    .toys-section,
    .validator-section {
        padding: 80px 1rem;
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hover Effects for Interactive Elements */
.interactive:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 2px solid #4facfe;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .nav-pill {
        border: 2px solid #ffffff;
    }
    
    .buy-button {
        border: 2px solid #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* NFT Collection Section */
.nft-collection-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.nft-collection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.nft-collection-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.nft-collection-header {
    text-align: center;
    margin-bottom: 60px;
}

.nft-collection-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #4ecdc4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.nft-collection-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* NFT Grid */
.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.nft-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    cursor: pointer;
}

.nft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nft-card:hover::before {
    opacity: 1;
}

.nft-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.nft-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

.nft-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nft-card:hover .nft-overlay {
    opacity: 1;
    transform: translateY(0);
}

.nft-price {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.nft-status {
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nft-status:contains("Available") {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.nft-status:contains("Sold") {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.nft-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.nft-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.nft-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.nft-trait {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nft-trait:contains("Common") {
    background: rgba(128, 128, 128, 0.2);
    color: #ccc;
}

.nft-trait:contains("Rare") {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.nft-trait:contains("Epic") {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
}

.nft-trait:contains("Legendary") {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.nft-last-sale {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Live Activity Section */
.live-activity-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.activity-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.activity-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    border-radius: 2px;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.activity-feed::-webkit-scrollbar {
    width: 6px;
}

.activity-feed::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.activity-feed::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    border-radius: 3px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideInFromRight 0.5s ease forwards;
    opacity: 0;
    transform: translateX(30px);
}

.activity-item:nth-child(1) { animation-delay: 0.1s; }
.activity-item:nth-child(2) { animation-delay: 0.2s; }
.activity-item:nth-child(3) { animation-delay: 0.3s; }
.activity-item:nth-child(4) { animation-delay: 0.4s; }
.activity-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.activity-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.activity-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.activity-icon.sale {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.activity-icon.listing {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.activity-icon.offer {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.activity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activity-text {
    color: white;
    font-weight: 500;
    line-height: 1.4;
}

.activity-text strong {
    color: #00d4ff;
    font-weight: 700;
}

.activity-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Responsive Design for NFT Section */
@media (max-width: 768px) {
    .nft-collection-section {
        padding: 60px 0;
    }
    
    .nft-collection-title {
        font-size: 2.5rem;
    }
    
    .nft-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .live-activity-section {
        padding: 30px 20px;
    }
    
    .activity-title {
        font-size: 1.5rem;
    }
    
    .activity-item {
        padding: 12px;
    }
    
    .activity-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nft-collection-title {
        font-size: 2rem;
    }
    
    .nft-grid {
        grid-template-columns: 1fr;
    }
    
    .nft-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Additional animations for NFT cards */
@keyframes nftCardPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.nft-card[data-nft-id="1"]:hover,
.nft-card[data-nft-id="4"]:hover,
.nft-card[data-nft-id="9"]:hover {
    animation: nftCardPulse 2s ease-in-out infinite;
}

/* Glowing effect for legendary NFTs */
.nft-card:has(.nft-trait:contains("Legendary")) {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.nft-card:has(.nft-trait:contains("Legendary")):hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}


/* 10,000 NFT Slider Section */
.nft-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    position: relative;
}

.nft-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.nft-slider-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nft-slider-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #4ecdc4, #ffd700);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.nft-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 600px;
    mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.nft-slider-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: fit-content;
    animation: slideLeftToRight 120s linear infinite;
}

@keyframes slideLeftToRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100vw);
    }
}

.nft-slider-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nft-slider-row:nth-child(even) {
    animation: slideLeftToRightFast 100s linear infinite;
}

.nft-slider-row:nth-child(odd) {
    animation: slideLeftToRightSlow 140s linear infinite;
}

@keyframes slideLeftToRightFast {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(150vw);
    }
}

@keyframes slideLeftToRightSlow {
    0% {
        transform: translateX(-150%);
    }
    100% {
        transform: translateX(50vw);
    }
}

.nft-slider-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.nft-slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nft-slider-item:hover::before {
    opacity: 1;
}

.nft-slider-item:hover {
    transform: scale(1.1);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    z-index: 10;
}

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

.nft-slider-item:hover img {
    transform: scale(1.05);
}

/* Add glowing effect to random items */
.nft-slider-item:nth-child(5n) {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.nft-slider-item:nth-child(7n) {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.nft-slider-item:nth-child(11n) {
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

/* Responsive Design for NFT Slider */
@media (max-width: 768px) {
    .nft-slider-section {
        padding: 60px 0;
    }
    
    .nft-slider-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .nft-slider-wrapper {
        height: 400px;
    }
    
    .nft-slider-item {
        width: 60px;
        height: 60px;
    }
    
    .nft-slider-track {
        gap: 10px;
    }
    
    .nft-slider-row {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .nft-slider-title {
        font-size: 1.5rem;
    }
    
    .nft-slider-wrapper {
        height: 300px;
    }
    
    .nft-slider-item {
        width: 50px;
        height: 50px;
    }
}

/* Additional animation effects */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    }
}

.nft-slider-item:nth-child(13n) {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Floating animation for some items */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.nft-slider-item:nth-child(17n) {
    animation: float 4s ease-in-out infinite;
}


/* Social Media Section */
.social-media-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.social-media-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.social-media-header {
    text-align: center;
    margin-bottom: 80px;
}

.social-media-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #4ecdc4, #ffd700, #8a2be2);
    background-size: 500% 500%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.social-media-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Social Media Grid */
.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.social-media-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
}

.social-media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-media-card:hover::before {
    opacity: 1;
}

.social-media-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Platform-specific hover effects */
.social-media-card[data-platform="youtube"]:hover {
    box-shadow: 0 25px 50px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.5);
}

.social-media-card[data-platform="instagram"]:hover {
    box-shadow: 0 25px 50px rgba(225, 48, 108, 0.3);
    border-color: rgba(225, 48, 108, 0.5);
}

.social-media-card[data-platform="facebook"]:hover {
    box-shadow: 0 25px 50px rgba(24, 119, 242, 0.3);
    border-color: rgba(24, 119, 242, 0.5);
}

.social-media-card[data-platform="twitter"]:hover {
    box-shadow: 0 25px 50px rgba(29, 161, 242, 0.3);
    border-color: rgba(29, 161, 242, 0.5);
}

.social-media-card[data-platform="discord"]:hover {
    box-shadow: 0 25px 50px rgba(114, 137, 218, 0.3);
    border-color: rgba(114, 137, 218, 0.5);
}

/* Icon Container */
.social-media-icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin-bottom: 20px;
}

.social-media-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(1deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-1deg); }
}

.social-media-icon svg {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.social-media-card:hover .social-media-icon {
    transform: scale(1.2) rotateY(360deg);
    animation-play-state: paused;
}

.social-media-card:hover .social-media-icon svg {
    filter: drop-shadow(0 0 10px currentColor);
}

/* Platform-specific icon colors */
.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.instagram-icon {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

.facebook-icon {
    background: linear-gradient(135deg, #1877f2, #0d5bb8);
    color: white;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.twitter-icon {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
    box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3);
}

.discord-icon {
    background: linear-gradient(135deg, #7289da, #5b6eae);
    color: white;
    box-shadow: 0 10px 20px rgba(114, 137, 218, 0.3);
}

/* Glow Effect */
.social-media-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.social-media-card:hover .social-media-glow {
    opacity: 0.6;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.social-media-card[data-platform="youtube"] .social-media-glow {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.4) 0%, transparent 70%);
}

.social-media-card[data-platform="instagram"] .social-media-glow {
    background: radial-gradient(circle, rgba(225, 48, 108, 0.4) 0%, transparent 70%);
}

.social-media-card[data-platform="facebook"] .social-media-glow {
    background: radial-gradient(circle, rgba(24, 119, 242, 0.4) 0%, transparent 70%);
}

.social-media-card[data-platform="twitter"] .social-media-glow {
    background: radial-gradient(circle, rgba(29, 161, 242, 0.4) 0%, transparent 70%);
}

.social-media-card[data-platform="discord"] .social-media-glow {
    background: radial-gradient(circle, rgba(114, 137, 218, 0.4) 0%, transparent 70%);
}

/* Card Content */
.social-media-info {
    padding: 0 25px 25px;
    position: relative;
    z-index: 3;
}

.social-media-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-align: center;
}

.social-media-stats {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #00d4ff, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-media-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.social-media-metrics {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Overlay and Button */
.social-media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 4;
}

.social-media-card:hover .social-media-overlay {
    transform: translateY(0);
}

.social-media-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-media-card[data-platform="youtube"] .social-media-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.social-media-card[data-platform="instagram"] .social-media-btn {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
}

.social-media-card[data-platform="facebook"] .social-media-btn {
    background: linear-gradient(135deg, #1877f2, #0d5bb8);
    color: white;
}

.social-media-card[data-platform="twitter"] .social-media-btn {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-media-card[data-platform="discord"] .social-media-btn {
    background: linear-gradient(135deg, #7289da, #5b6eae);
    color: white;
}

.social-media-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

/* NFT-like Animation Effects */
@keyframes cardGlitch {
    0%, 100% { transform: translateY(-15px) rotateX(5deg) rotateY(5deg); }
    25% { transform: translateY(-15px) rotateX(5deg) rotateY(5deg) skew(1deg, 0deg); }
    50% { transform: translateY(-15px) rotateX(5deg) rotateY(5deg); }
    75% { transform: translateY(-15px) rotateX(5deg) rotateY(5deg) skew(-1deg, 0deg); }
}

.social-media-card:nth-child(2n):hover {
    animation: cardGlitch 0.5s ease-in-out;
}

/* Particle Effect */
.social-media-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.3)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1" fill="rgba(0,212,255,0.3)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="1" fill="rgba(255,107,107,0.3)"><animate attributeName="opacity" values="0;1;0" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.social-media-card:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-media-section {
        padding: 60px 0;
    }
    
    .social-media-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .social-media-subtitle {
        font-size: 1rem;
    }
    
    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-media-card:hover {
        transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    }
    
    .social-media-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-media-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .social-media-metrics {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .social-media-title {
        font-size: 2rem;
    }
    
    .social-media-header {
        margin-bottom: 50px;
    }
    
    .social-media-info {
        padding: 0 20px 20px;
    }
}

/* Loading Animation for Cards */
@keyframes cardLoadIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.social-media-card {
    animation: cardLoadIn 0.8s ease-out forwards;
}

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

