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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #fff;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.ticker {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 2px;
}

/* Banner */
.banner {
    margin: 60px 0;
    position: relative;
}

.banner-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

.banner-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.about-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.8;
    color: #000;
}

.panda-gallery {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.panda-item {
    text-align: center;
    max-width: 250px;
}

.panda-image {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin-bottom: 20px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transition: transform 0.3s ease;
}

.panda-image:hover {
    transform: scale(1.05);
}

.panda-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

/* Panda Vibes Section */
.panda-vibes {
    padding: 100px 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.vibes-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    margin: 0 auto 60px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.vibes-grid::-webkit-scrollbar {
    height: 8px;
}

.vibes-grid::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.vibes-grid::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 4px;
}

.vibes-grid::-webkit-scrollbar-thumb:hover {
    background: #333;
}

.vibe-card {
    text-align: center;
    padding: 30px 25px;
    border-radius: 15px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    flex-shrink: 0;
    cursor: pointer;
    transform: scale(1);
}

.vibe-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.vibe-card:active {
    transform: translateY(-5px) scale(1.02);
}

.vibe-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000 0%, #333 50%, #000 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.vibe-card:hover:before {
    transform: translateX(0);
}

.vibe-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.vibe-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    font-style: italic;
    line-height: 1.6;
}

.panda-quote {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 20px;
    background-color: #000;
    color: #fff;
    position: relative;
}

.panda-quote:before {
    content: '"';
    font-size: 4rem;
    font-weight: 700;
    position: absolute;
    top: -10px;
    left: 20px;
    color: #e0e0e0;
    line-height: 1;
}

.quote-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.5;
}

.quote-author {
    font-size: 1rem;
    font-weight: 400;
    color: #e0e0e0;
    font-style: italic;
}

/* How to Buy Section */
.how-to-buy {
    padding: 100px 0;
    background-color: #fff;
}

.buy-steps {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.buy-step {
    text-align: center;
    max-width: 250px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: background-color 0.3s ease;
}

.step-number:hover {
    background-color: #333;
}

.step-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    line-height: 1.6;
}

/* Social Section */
.social {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .ticker {
        font-size: 2rem;
    }
    
    .banner-text {
        font-size: 1.8rem;
        padding: 15px 25px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-text {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    .panda-gallery {
        gap: 40px;
    }
    
    .panda-item {
        max-width: 200px;
    }
    
    .vibes-grid {
        gap: 15px;
        padding: 15px 0;
    }
    
    .vibe-card {
        padding: 25px 20px;
        min-width: 250px;
    }
    
    .vibe-card:hover {
        transform: translateY(-5px) scale(1.03);
    }
    
    .panda-quote {
        padding: 30px 25px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .buy-steps {
        gap: 50px;
        flex-direction: column;
        align-items: center;
    }
    
    .buy-step {
        max-width: 300px;
    }
    
    .social-links {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 60px 0 40px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .ticker {
        font-size: 1.8rem;
    }
    
    .banner-text {
        font-size: 1.4rem;
        padding: 12px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about, .panda-vibes, .how-to-buy {
        padding: 60px 0;
    }
    
    .panda-gallery {
        gap: 30px;
    }
    
    .panda-image {
        max-width: 150px;
    }
    
    .vibe-card {
        padding: 20px 15px;
        min-width: 220px;
    }
    
    .vibe-card:hover {
        transform: translateY(-3px) scale(1.02);
    }
    
    .panda-quote {
        padding: 25px 20px;
    }
    
    .panda-quote:before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}
