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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #1a0033;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 80px 10px, white, transparent),
        radial-gradient(2px 2px at 130px 80px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 10s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 100px;
    opacity: 0.7;
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 20%;
    left: -200px;
    animation: drift 20s infinite;
}

.cloud-2 {
    width: 150px;
    height: 40px;
    top: 40%;
    left: -150px;
    animation: drift 25s infinite 5s;
}

.cloud-3 {
    width: 180px;
    height: 50px;
    top: 60%;
    left: -180px;
    animation: drift 30s infinite 10s;
}

@keyframes drift {
    to { left: 100%; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    color: white;
    max-width: 1200px;
    padding: 0 20px;
}

.rocket-container {
    position: relative;
    margin-bottom: 80px;
    margin-top: -50px;
    height: 300px;
}

.rocket {
    width: 400px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

.planet {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6090, #9c27b0);
}

.planet-1 {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 50px;
    animation: orbit 10s linear infinite;
}

.planet-2 {
    width: 30px;
    height: 30px;
    top: 100px;
    right: 100px;
    background: linear-gradient(135deg, #00bcd4, #3f51b5);
    animation: orbit 15s linear infinite reverse;
}

.planet-3 {
    width: 25px;
    height: 25px;
    bottom: 50px;
    left: 100px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    animation: orbit 20s linear infinite;
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

/* Decorative Rockets */
.decorative-rockets {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.deco-rocket {
    position: absolute;
    width: 80px;
    height: auto;
    opacity: 0.7;
    animation: floatRocket 20s ease-in-out infinite;
}

.rocket-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(25deg);
}

.rocket-2 {
    top: 70%;
    right: 15%;
    animation-delay: 4s;
    transform: rotate(-15deg);
    width: 60px;
}

.rocket-3 {
    bottom: 20%;
    left: 25%;
    animation-delay: 8s;
    transform: rotate(45deg);
    width: 70px;
}

.rocket-4 {
    top: 40%;
    right: 30%;
    animation-delay: 12s;
    transform: rotate(-30deg);
    width: 65px;
}

.rocket-5 {
    top: 25%;
    left: 40%;
    animation-delay: 16s;
    transform: rotate(10deg);
    width: 75px;
}

@keyframes floatRocket {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(var(--rotation));
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(calc(var(--rotation) + 10deg));
    }
    50% {
        transform: translateY(20px) translateX(-15px) rotate(calc(var(--rotation) - 5deg));
    }
    75% {
        transform: translateY(-15px) translateX(10px) rotate(calc(var(--rotation) + 15deg));
    }
}

.rocket-1 { --rotation: 25deg; }
.rocket-2 { --rotation: -15deg; }
.rocket-3 { --rotation: 45deg; }
.rocket-4 { --rotation: -30deg; }
.rocket-5 { --rotation: 10deg; }

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.kuromi-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
}

/* Netflix Section */
.netflix-section {
    background: linear-gradient(180deg, #ff6090 0%, #ffd4e5 100%);
    padding: 100px 20px;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cartoon-title {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: #4a148c;
    margin-bottom: 60px;
    text-shadow: 
        3px 3px 0px #ff6ec7,
        6px 6px 0px #e91e63,
        9px 9px 15px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    display: inline-block;
    position: relative;
}

.cartoon-title::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.cartoon-title::after {
    content: '🎀';
    position: absolute;
    top: -15px;
    right: -40px;
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-10px);
    }
}

.netflix-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.netflix-poster {
    flex: 0 0 400px;
}

.netflix-poster img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.netflix-info {
    flex: 1;
}

.netflix-info h3 {
    font-size: 2.5rem;
    color: #4a148c;
    margin-bottom: 20px;
}

.netflix-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.video-preview-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.video-preview {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 1200px;
}

.video-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-preview iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
}

.streaming-badges {
    display: flex;
    gap: 15px;
}

.badge {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* CA Address Section */
.ca-address-section {
    margin-top: 30px;
}

.ca-address-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a148c;
    font-size: 1rem;
}

.ca-input-container {
    display: flex;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.ca-input-container:focus-within {
    border-color: #9c27b0;
}

.ca-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #333;
    outline: none;
}

.copy-btn {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #8e24aa, #d81b60);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

/* Hero CA Section */
.hero-ca-section {
    margin: 30px auto;
    max-width: 600px;
}

.hero-ca-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-ca-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.hero-ca-input {
    font-size: 1rem;
    font-weight: 600;
}

.hero-copy-btn {
    font-size: 1rem;
}

/* Hero Social Links */
.hero-social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.x-link {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
}

.x-link:hover {
    background: linear-gradient(135deg, #0d8bd9, #0a7bc4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.bonk-link {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.bonk-link:hover {
    background: linear-gradient(135deg, #f7931e, #e8890b);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
    .cartoon-title {
        font-size: 2.5rem;
    }
    
    .netflix-content {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .netflix-poster {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .netflix-info h3 {
        font-size: 2rem;
    }
    
    .video-preview iframe {
        height: 350px;
    }
    
    .streaming-badges {
        flex-wrap: wrap;
    }
    
    .hero-ca-section {
        max-width: 100%;
        margin: 20px auto;
    }
    
    .hero-ca-container.ca-input-container {
        flex-direction: column;
    }
    
    .hero-ca-input.ca-input {
        font-size: 0.9rem;
        padding: 12px 15px;
        text-align: center;
    }
    
    .hero-copy-btn.copy-btn {
        border-radius: 0 0 12px 12px;
        justify-content: center;
        font-size: 1rem;
    }
    
    .hero-social-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .social-link-btn {
        width: 200px;
        justify-content: center;
    }
}

/* Project Gallery */
.project-gallery {
    background-image: url('104751.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.project-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    z-index: 0;
}

.floating-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart, .floating-star, .floating-kuromi {
    position: absolute;
    font-size: 2rem;
    animation: floatDecoration 15s ease-in-out infinite;
}

.heart-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.heart-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.star-1 {
    top: 30%;
    left: 15%;
    animation-delay: 2s;
}

.star-2 {
    bottom: 30%;
    right: 20%;
    animation-delay: 7s;
}

.floating-kuromi {
    top: 50%;
    right: 5%;
    animation-delay: 10s;
}

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

.project-gallery .section-content {
    position: relative;
    z-index: 2;
}

.project-gallery h2 {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fansart-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 800px;
}

.fansart-item {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    transform-origin: center;
}

.fansart-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.fansart-item img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.item-caption {
    position: absolute;
    bottom: -5px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    padding: 5px 12px;
    border-radius: 15px;
    color: #8e24aa;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.star-icon {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Organic positioning and sizing */
.item-1 {
    top: 20px;
    left: 40px;
    width: 280px;
    height: 280px;
    transform: rotate(-3deg);
}

.item-2 {
    top: 50px;
    right: 80px;
    width: 240px;
    height: 320px;
    transform: rotate(2deg);
}

.item-3 {
    top: 280px;
    left: 20px;
    width: 200px;
    height: 220px;
    transform: rotate(-1deg);
}

.item-4 {
    top: 380px;
    right: 200px;
    width: 300px;
    height: 180px;
    transform: rotate(1deg);
}

.item-5 {
    bottom: 40px;
    right: 40px;
    width: 180px;
    height: 200px;
    transform: rotate(-2deg);
}

@media (max-width: 768px) {
    .fansart-container {
        height: 1200px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .item-1 {
        top: 20px;
        left: 20px;
        width: 200px;
        height: 200px;
    }
    
    .item-2 {
        top: 50px;
        right: 20px;
        width: 160px;
        height: 240px;
    }
    
    .item-3 {
        top: 300px;
        left: 30px;
        width: 160px;
        height: 180px;
    }
    
    .item-4 {
        top: 350px;
        right: 40px;
        width: 200px;
        height: 140px;
    }
    
    .item-5 {
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%) rotate(-2deg);
        width: 150px;
        height: 170px;
    }
}

/* NFT Project Section */
.nft-project {
    background: linear-gradient(180deg, #e1bee7 0%, #ce93d8 100%);
    padding: 100px 20px;
}

.nft-project h2 {
    text-align: center;
    font-size: 3rem;
    color: #4a148c;
    margin-bottom: 60px;
}

.nft-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nft-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nft-item {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.nft-item.purple {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
}

.nft-item.pink {
    background: linear-gradient(135deg, #ff4081, #ff6ec7);
}

.nft-item.blue {
    background: linear-gradient(135deg, #00bcd4, #2196f3);
}

.nft-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    background: white;
    border-radius: 20px;
    padding: 15px 30px;
    text-align: center;
    font-weight: 600;
    color: #4a148c;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Photo Review Section */
.photo-review {
    background: linear-gradient(180deg, #4a148c 0%, #7b1fa2 100%);
    padding: 100px 20px;
    color: white;
}

.photo-review h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}

.review-subtitle {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
}

.review-image {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.review-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.music-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
    transition: all 0.3s ease;
    animation: musicPulse 2s ease-in-out infinite;
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(156, 39, 176, 0.6);
}

.music-btn:active {
    transform: scale(0.95);
}

.music-btn.playing {
    animation: musicPulse 1s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(156, 39, 176, 0.8), 0 0 0 10px rgba(156, 39, 176, 0.1);
    }
}

@media (max-width: 768px) {
    .music-control {
        bottom: 20px;
        right: 20px;
    }
    
    .music-btn {
        width: 50px;
        height: 50px;
    }
}

/* Footer */
footer {
    background: #1a0033;
    padding: 50px 20px;
    text-align: center;
    color: white;
}

.contract-address {
    font-family: monospace;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

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

.social-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #e91e63;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .nft-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .review-card {
        flex-direction: column;
        text-align: center;
    }
    
    .review-meta {
        flex-direction: column;
        gap: 10px;
    }
}