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

/* Lucide Icons Styling */
[data-lucide] {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

body {
    font-family: 'Child Chat', 'Fredoka', cursive;
    overflow-x: hidden;
    background: linear-gradient(135deg, #D1F4FF 0%, #E3D1FF 25%, #FED1FF 50%, #C6D5FE 75%, #D1F4FF 100%);
    min-height: 100vh;
    position: relative;
}

/* Scrapbook Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Scrapbook Header */
.scrapbook-header {
    position: relative;
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    border-bottom: 3px dashed rgba(168, 216, 255, 0.6);
    padding: 20px 5%;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: logo-float 3s ease-in-out infinite;
}

.ticker-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(184, 230, 255, 0.4);
}

.main-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    animation: logo-float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(184, 230, 255, 0.4));
}

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

.brand-title {
    font-family: 'Comic Neue', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    margin: 0;
}

.ticker-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 25px;
    border: 2px dashed #A8D8FF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ticker-label {
    font-weight: 700;
    color: #2C3E50;
    font-size: 1.1rem;
}

.ticker-price {
    font-weight: 600;
    color: #27AE60;
    font-size: 1rem;
}

.ticker-change.positive {
    color: #27AE60;
    font-weight: 600;
}

.ticker-change.negative {
    color: #E74C3C;
    font-weight: 600;
}

.header-stickers {
    display: flex;
    gap: 15px;
}

.sticker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: float-gentle 3s ease-in-out infinite;
}

.snowflake-sticker {
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    animation-delay: 0s;
}

.star-sticker {
    background: linear-gradient(135deg, #C8E6FF, #B8E6FF);
    animation-delay: 1s;
}

.sparkle-sticker {
    background: linear-gradient(135deg, #E0F4FF, #D0E8FF);
    animation-delay: 2s;
}

.header-greeting {
    text-align: center;
    margin-top: 10px;
}

.greeting-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    color: #2C3E50;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Floating Background Elements */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-star, .floating-heart, .floating-bear, .floating-cloud {
    position: absolute;
    font-size: 20px;
    animation: float-gentle 8s ease-in-out infinite;
    opacity: 0.5;
}

.floating-star:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; color: #FFD700; }
.floating-star:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; color: #FF69B4; }
.floating-star:nth-child(3) { top: 60%; left: 5%; animation-delay: 2s; color: #87CEEB; }

.floating-heart:nth-child(4) { top: 30%; right: 20%; animation-delay: 1.5s; color: #FF69B4; }
.floating-heart:nth-child(5) { top: 70%; left: 20%; animation-delay: 3s; color: #DDA0DD; }

.floating-bear:nth-child(6) { top: 40%; left: 80%; animation-delay: 2.5s; color: #FFB6C1; }
.floating-bear:nth-child(7) { top: 80%; right: 10%; animation-delay: 4s; color: #F0E6FF; }

.floating-cloud:nth-child(8) { top: 15%; left: 50%; animation-delay: 0.5s; color: #FFFFFF; }
.floating-cloud:nth-child(9) { top: 50%; right: 5%; animation-delay: 3.5s; color: #F0F8FF; }

/* Slow-moving Snowflakes */
.floating-snowflake {
    position: absolute;
    font-size: 24px;
    animation: snowflake-drift 25s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

.floating-snowflake.snowflake-1 { top: 0%; left: 10%; animation-delay: 0s; }
.floating-snowflake.snowflake-2 { top: 0%; left: 30%; animation-delay: 2s; }
.floating-snowflake.snowflake-3 { top: 0%; left: 50%; animation-delay: 4s; }
.floating-snowflake.snowflake-4 { top: 0%; left: 70%; animation-delay: 6s; }
.floating-snowflake.snowflake-5 { top: 0%; left: 90%; animation-delay: 8s; }
.floating-snowflake.snowflake-6 { top: 0%; left: 20%; animation-delay: 10s; }
.floating-snowflake.snowflake-7 { top: 0%; left: 60%; animation-delay: 12s; }
.floating-snowflake.snowflake-8 { top: 0%; left: 80%; animation-delay: 14s; }

@keyframes snowflake-drift {
    0% { 
        transform: translateY(-100px) rotate(0deg); 
        opacity: 0; 
    }
    10% { 
        opacity: 0.8; 
    }
    90% { 
        opacity: 0.8; 
    }
    100% { 
        transform: translateY(100vh) rotate(360deg); 
        opacity: 0; 
    }
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-10px) rotate(5deg); opacity: 0.7; }
}

/* Contract Info */
.contract-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px dashed #A8D8FF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Comic Neue', cursive;
}

.contract-address .label {
    font-weight: 600;
    color: #2C3E50;
}

.contract-address .address {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: #2C3E50;
    background: #F0F8FF;
    padding: 4px 8px;
    border-radius: 8px;
}

.copy-btn {
    background: #B8E6FF;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #A8D8FF;
    transform: scale(1.1);
}

.dexscreener-link {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.dexscreener-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    color: #2C3E50;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dexscreener-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.dexscreener-logo {
    width: 18px;
    height: 18px;
}

/* Updated CTA Buttons */
.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    border: 3px solid #FF4757;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    border: 3px solid #A8D8FF;
    color: #2C3E50;
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 230, 255, 0.4);
}

.pump-button {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    border: 3px solid #FF8C00 !important;
    color: #2C3E50 !important;
    font-size: 1.1rem;
    padding: 18px 30px;
}

.pump-button:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4) !important;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #B8E6FF, #A8D8FF);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #C8E6FF, #B8E6FF);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #E0F4FF, #D0E8FF);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes orb-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.hero-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-main-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    animation: logo-float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}


.title-line-1, .title-line-2, .title-line-3 {
    display: block;
    color: #FF69B4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: title-glow 3s ease-in-out infinite;
}

.title-line-2 {
    animation-delay: 0.5s;
}

.title-line-3 {
    animation-delay: 1s;
}

@keyframes title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.title-sparkles {
    position: absolute;
    top: -10px;
    right: -20px;
    display: flex;
    gap: 5px;
}

.title-sparkles .sparkle {
    font-size: 24px;
    animation: sparkle-twinkle 2s ease-in-out infinite;
}

.title-sparkles .sparkle:nth-child(1) { animation-delay: 0s; }
.title-sparkles .sparkle:nth-child(2) { animation-delay: 0.5s; }
.title-sparkles .sparkle:nth-child(3) { animation-delay: 1s; }

@keyframes sparkle-twinkle {
    0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    line-height: 1.6;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.follow-button, .join-button {
    position: relative;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.follow-button {
    background: linear-gradient(45deg, #FF69B4, #DDA0DD);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.join-button {
    background: linear-gradient(45deg, #87CEEB, #98FB98);
    color: white;
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.follow-button:hover, .join-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.button-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.button-sparkles .sparkle {
    position: absolute;
    font-size: 12px;
    animation: button-sparkle 1.5s ease-in-out infinite;
}

.button-sparkles .sparkle:nth-child(1) { top: -10px; left: -10px; animation-delay: 0s; }
.button-sparkles .sparkle:nth-child(2) { top: -10px; right: -10px; animation-delay: 0.5s; }

@keyframes button-sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: button-glow 2s ease-in-out infinite;
}

@keyframes button-glow {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Hero Images */
.hero-images {
    flex: 0 0 400px;
    height: 500px;
    position: relative;
    z-index: 3;
}

.main-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

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

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

.floating-image.image-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

/* VTuber Images */
.main-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.main-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.small-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.4);
}

.small-image:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.about-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.about-image-small {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.4);
}

.about-image-small:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.highlight-image {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 182, 193, 0.3);
    cursor: pointer;
}

.highlight-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.highlight-image-small {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.4);
    cursor: pointer;
}

.highlight-image-small:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.social-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.social-image:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.social-image-small {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.4);
}

.social-image-small:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.footer-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.3);
}

.footer-image:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.footer-image-small {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.4);
}

.footer-image-small:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.tiny-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.4);
}

.tiny-image:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 15px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(184, 230, 255, 0.4);
}

.scroll-text {
    font-size: 0.8rem;
    color: #8A2BE2;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 15px;
    border: 2px solid rgba(184, 230, 255, 0.3);
}

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

/* Floating VTuber Images */
.floating-vtuber {
    position: absolute;
    font-size: 20px;
    animation: float-gentle 6s ease-in-out infinite;
    opacity: 0.8;
}

.floating-vtuber.vtuber-1 { top: 15%; left: 5%; animation-delay: 0s; }
.floating-vtuber.vtuber-2 { top: 25%; right: 10%; animation-delay: 1.5s; }
.floating-vtuber.vtuber-3 { top: 60%; left: 8%; animation-delay: 3s; }
.floating-vtuber.vtuber-4 { top: 70%; right: 5%; animation-delay: 4.5s; }

/* About Images */
.about-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.about-image-container {
    position: relative;
}

/* Highlights Images */
.highlights-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.highlight-image-container {
    position: relative;
}

/* Socials Images */
.socials-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.social-image-container {
    position: relative;
}

/* Footer Images */
.footer-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-image-container {
    position: relative;
}


/* About Section */
.about {
    padding: 40px 5%;
    position: relative;
    z-index: 2;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 3px solid rgba(184, 230, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.about-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 182, 193, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8A2BE2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.title-icon {
    font-size: 2rem;
    margin: 0 15px;
    animation: icon-bounce 2s ease-in-out infinite;
}

.title-icon:nth-child(2) { animation-delay: 0.5s; }

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

.pixel-divider {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.pixel-star {
    font-size: 20px;
    color: #FF69B4;
    animation: star-rotate 3s linear infinite;
}

.pixel-star:nth-child(1) { animation-delay: 0s; }
.pixel-star:nth-child(2) { animation-delay: 1s; }
.pixel-star:nth-child(3) { animation-delay: 2s; }

@keyframes star-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.about-content {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 2;
}

.whimsical-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.about-icons {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.icon-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(184, 230, 255, 0.2), rgba(168, 216, 255, 0.2));
    border-radius: 20px;
    border: 2px solid rgba(184, 230, 255, 0.3);
    transition: all 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-item .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    animation: icon-float 3s ease-in-out infinite;
}

.icon-item:nth-child(1) .icon { animation-delay: 0s; }
.icon-item:nth-child(2) .icon { animation-delay: 0.5s; }
.icon-item:nth-child(3) .icon { animation-delay: 1s; }
.icon-item:nth-child(4) .icon { animation-delay: 1.5s; }

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

.icon-item span {
    font-size: 0.9rem;
    color: #8A2BE2;
    font-weight: 600;
}

/* Highlights Section */
.highlights {
    padding: 40px 5%;
    position: relative;
    z-index: 2;
}

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

.windows-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.retro-window {
    background: #FFB6C1;
    border: 3px solid #8A2BE2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: window-float 4s ease-in-out infinite;
    position: relative;
}

.window-1 { animation-delay: 0s; }
.window-2 { animation-delay: 1s; }
.window-3 { animation-delay: 2s; }

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

.window-header {
    background: #8A2BE2;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #6A1B9A;
}

.window-tabs {
    display: flex;
    gap: 10px;
}

.tab {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 10px 10px 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: rgba(255, 255, 255, 0.9);
    color: #8A2BE2;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.4);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.6);
}

.window-content {
    padding: 25px;
    background: linear-gradient(135deg, #FFE4E1, #F0E6FF);
    min-height: 200px;
    position: relative;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 15px;
}

.coming-soon-text {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8A2BE2;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.coming-soon-icon {
    font-size: 2rem;
    animation: sparkle-pulse 2s ease-in-out infinite;
}

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

.window-content-blurred {
    filter: blur(3px);
    opacity: 0.6;
}

.video-preview {
    background: linear-gradient(135deg, #DDA0DD, #FFB6C1);
    border-radius: 15px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

.play-button {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.video-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #8A2BE2;
}

.stream-info {
    text-align: center;
}

.stream-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8A2BE2;
    margin-bottom: 10px;
}

.stream-time {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.stream-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #FF69B4;
    font-weight: 600;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #FF69B4;
    border-radius: 50%;
    animation: live-pulse 1s ease-in-out infinite;
}

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

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.photo-item {
    background: linear-gradient(135deg, #DDA0DD, #FFB6C1);
    border-radius: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.photo-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #8A2BE2;
    font-style: italic;
}

/* Socials Section */
.socials {
    padding: 40px 5%;
    position: relative;
    z-index: 2;
}

.socials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.social-bubbles {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-bubble {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.social-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: bubble-shimmer 2s ease-in-out infinite;
}

@keyframes bubble-shimmer {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.discord {
    background: linear-gradient(135deg, #7289DA, #99AAB5);
    box-shadow: 0 10px 25px rgba(114, 137, 218, 0.4);
}

.twitter {
    background: linear-gradient(135deg, #1DA1F2, #14171A);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.4);
}

.pump {
    background: linear-gradient(135deg, #FF69B4, #DDA0DD);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
}

.instagram {
    background: linear-gradient(135deg, #E4405F, #F77737, #FCAF45);
    box-shadow: 0 10px 25px rgba(228, 64, 95, 0.4);
}

.tiktok {
    background: linear-gradient(135deg, #000000, #FF0050);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.social-bubble:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bubble-icon {
    font-size: 2rem;
    margin-bottom: 5px;
    z-index: 2;
    position: relative;
}

.bubble-text {
    font-size: 0.8rem;
    z-index: 2;
    position: relative;
}

.bubble-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.social-bubble:hover .bubble-glow {
    width: 100%;
    height: 100%;
}

.bubble-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 3;
}

.bubble-sparkles .sparkle {
    position: absolute;
    font-size: 10px;
    animation: bubble-sparkle 1.5s ease-in-out infinite;
}

.bubble-sparkles .sparkle:nth-child(1) { top: -15px; left: -15px; animation-delay: 0s; }
.bubble-sparkles .sparkle:nth-child(2) { top: -15px; right: -15px; animation-delay: 0.5s; }

@keyframes bubble-sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Center Layout Section - Sakura Flower Style */
.center-layout {
    padding: 15px 5%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

/* Border VTuber Images */
.border-vtuber-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.border-vtuber {
    position: absolute;
    animation: border-float 6s ease-in-out infinite;
    opacity: 0.8;
}

.border-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 182, 193, 0.6);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.border-image:hover {
    transform: scale(1.2);
    border-color: rgba(255, 105, 180, 0.8);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

/* Position border images */
.border-vtuber.top-left {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.border-vtuber.top-right {
    top: 10%;
    right: 5%;
    animation-delay: 1s;
}

.border-vtuber.middle-left {
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.border-vtuber.middle-right {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.border-vtuber.bottom-left {
    bottom: 10%;
    left: 5%;
    animation-delay: 4s;
}

.border-vtuber.bottom-right {
    bottom: 10%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes border-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-15px) rotate(10deg); 
        opacity: 1; 
    }
}

.center-container {
    max-width: 1000px;
    width: 100%;
    background: white;
    border: 3px solid #B8E6FF;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
}

.center-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #B8E6FF, #A8D8FF, #C8E6FF, #E0F4FF);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
}

.center-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 182, 193, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(221, 160, 221, 0.1) 1px, transparent 1px);
    background-size: 30px 30px, 20px 20px;
    pointer-events: none;
    z-index: 1;
}

/* Section Headers */
.section-header {
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.star-icon {
    font-size: 1rem;
    animation: star-twinkle 2s ease-in-out infinite;
}

.star-icon:nth-child(1) { animation-delay: 0s; }
.star-icon:nth-child(3) { animation-delay: 1s; }

@keyframes star-twinkle {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Profile Section */
.profile-section {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-image {
    text-align: center;
}

/* Updated border color for VTuber profile image - cache bust */
.main-profile-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #e3d1ff !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.main-profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.name-section {
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.vtuber-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.vtuber-title {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.profile-details {
    background: rgba(184, 230, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(184, 230, 255, 0.3);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #8A2BE2;
}

.detail-value {
    color: #666;
    font-style: italic;
}

/* Welcome Section */
.welcome-section {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
}

.welcome-content {
    background: rgba(184, 230, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(184, 230, 255, 0.3);
}

.welcome-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
    font-size: 0.9rem;
}

.welcome-content p:last-of-type {
    margin-bottom: 20px;
}

.decorative-line {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 15px 0;
}

.snowflake {
    font-size: 1.2rem;
    animation: snowflake-spin 3s linear infinite;
}

.snowflake:nth-child(1) { animation-delay: 0s; }
.snowflake:nth-child(2) { animation-delay: 0.6s; }
.snowflake:nth-child(3) { animation-delay: 1.2s; }
.snowflake:nth-child(4) { animation-delay: 1.8s; }
.snowflake:nth-child(5) { animation-delay: 2.4s; }

@keyframes snowflake-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reminders Section */
.reminders-section {
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.reminders-content {
    background: rgba(184, 230, 255, 0.1);
    padding: 8px;
    border-radius: 12px;
    border: 2px solid rgba(184, 230, 255, 0.3);
    text-align: center;
}

.reminders-intro {
    margin-bottom: 6px;
}

.reminders-intro p {
    color: #666;
    font-size: 0.8rem;
    font-style: italic;
    margin: 0;
}

.reminders-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.reminder-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 0;
    transition: all 0.3s ease;
}

.reminder-item:hover {
    transform: translateX(2px);
}

.reminder-heart {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.reminder-text {
    color: #8A2BE2;
    font-weight: 600;
    font-size: 0.8rem;
    flex: 1;
}

/* Heart color animations */
.heart-blue { animation: heart-pulse 2s ease-in-out infinite; }
.heart-purple { animation: heart-pulse 2s ease-in-out infinite 0.2s; }
.heart-white { animation: heart-pulse 2s ease-in-out infinite 0.4s; }
.heart-green { animation: heart-pulse 2s ease-in-out infinite 0.6s; }
.heart-pink { animation: heart-pulse 2s ease-in-out infinite 0.8s; }

@keyframes heart-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Schedule Section */
.schedule-section {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
}

.schedule-content {
    background: rgba(184, 230, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(184, 230, 255, 0.3);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(184, 230, 255, 0.3);
    font-size: 0.8rem;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-date {
    font-weight: 600;
    color: #8A2BE2;
    min-width: 60px;
}

.schedule-title {
    color: #666;
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.schedule-time {
    color: #8A2BE2;
    font-weight: 500;
    min-width: 60px;
    text-align: right;
}

/* Live Countdown Section */
.live-section {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    z-index: 2;
}

.countdown-content {
    background: rgba(184, 230, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(184, 230, 255, 0.3);
    text-align: center;
}

.countdown-numbers {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8A2BE2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    animation: countdown-pulse 2s ease-in-out infinite;
}

.countdown-item:nth-child(1) .countdown-number { animation-delay: 0s; }
.countdown-item:nth-child(2) .countdown-number { animation-delay: 0.5s; }
.countdown-item:nth-child(3) .countdown-number { animation-delay: 1s; }

@keyframes countdown-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.countdown-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Socials Section */
.socials-section {
    grid-column: 1 / -1;
    grid-row: 3;
    position: relative;
    z-index: 2;
}

.socials-content {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: rgba(184, 230, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(184, 230, 255, 0.3);
    flex-wrap: nowrap;
    overflow-x: auto;
}

.social-icon-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    flex-shrink: 0;
    text-decoration: none;
}

.social-icon-circle:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(184, 230, 255, 0.4);
}

.social-icon-circle.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.social-icon-circle.coming-soon::after {
    content: 'Coming Soon';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: #8A2BE2;
    font-weight: 600;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(184, 230, 255, 0.3);
}

.social-icon-circle.coming-soon:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icon-circle:nth-child(1) { animation-delay: 0s; }
.social-icon-circle:nth-child(2) { animation-delay: 0.2s; }
.social-icon-circle:nth-child(3) { animation-delay: 0.4s; }
.social-icon-circle:nth-child(4) { animation-delay: 0.6s; }

.social-item {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #A8D8FF;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

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

.social-item:hover::before {
    left: 100%;
}

.social-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #8A2BE2;
    animation: icon-float 3s ease-in-out infinite;
}

.social-item:nth-child(1) .social-icon { animation-delay: 0s; }
.social-item:nth-child(2) .social-icon { animation-delay: 0.2s; }
.social-item:nth-child(3) .social-icon { animation-delay: 0.4s; }
.social-item:nth-child(4) .social-icon { animation-delay: 0.6s; }
.social-item:nth-child(5) .social-icon { animation-delay: 0.8s; }
.social-item:nth-child(6) .social-icon { animation-delay: 1s; }
.social-item:nth-child(7) .social-icon { animation-delay: 1.2s; }
.social-item:nth-child(8) .social-icon { animation-delay: 1.4s; }
.social-item:nth-child(9) .social-icon { animation-delay: 1.6s; }
.social-item:nth-child(10) .social-icon { animation-delay: 1.8s; }
.social-item:nth-child(11) .social-icon { animation-delay: 2s; }
.social-item:nth-child(12) .social-icon { animation-delay: 2.2s; }

.social-label {
    font-size: 0.8rem;
    color: #8A2BE2;
    font-weight: 600;
    display: block;
}

/* About Text Section */
.about-text-section {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.about-description {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #A8D8FF;
    border-radius: 15px;
    padding: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
    margin-bottom: 20px;
    position: relative;
}

.about-description::before {
    content: '🍎';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    animation: apple-bounce 2s ease-in-out infinite;
}

/* About Icons Grid */
.about-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.about-icon-item {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #A8D8FF;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.about-icon-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

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

.about-icon-item:hover::before {
    left: 100%;
}

.about-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #8A2BE2;
    animation: icon-float 3s ease-in-out infinite;
}

.about-icon-item:nth-child(1) .about-icon { animation-delay: 0s; }
.about-icon-item:nth-child(2) .about-icon { animation-delay: 0.5s; }
.about-icon-item:nth-child(3) .about-icon { animation-delay: 1s; }
.about-icon-item:nth-child(4) .about-icon { animation-delay: 1.5s; }

.about-icon-item span {
    font-size: 0.8rem;
    color: #8A2BE2;
    font-weight: 600;
    display: block;
}

.banner-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner {
    background: linear-gradient(135deg, #FF69B4, #DDA0DD);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.banner.my-melody {
    background: linear-gradient(135deg, #FF69B4, #DDA0DD);
}

.banner.cute {
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
    font-size: 0.8rem;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: banner-shimmer 3s ease-in-out infinite;
}

@keyframes banner-shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Navigation Buttons */
.navigation-buttons {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.nav-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.nav-button {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #A8D8FF;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    color: #8A2BE2;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

/* Message Box */
.message-box {
    position: relative;
    z-index: 2;
}

.message-input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #A8D8FF;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.message-input:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.input-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.spotify-icon {
    color: #1DB954;
    font-size: 1.2rem;
}

.shush-emoji {
    font-size: 1.2rem;
    animation: shush-wiggle 2s ease-in-out infinite;
}

@keyframes shush-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #E0F4FF, #B8E6FF);
    padding: 20px 5%;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.repeating-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 105, 180, 0.3) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: stars-move 20s linear infinite;
}

@keyframes stars-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(30px); }
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stay-hydrated {
    display: flex;
    align-items: center;
    gap: 15px;
}

.water-bottle {
    position: relative;
    width: 60px;
    height: 80px;
}

.bottle-body {
    font-size: 2rem;
    color: #A8D8FF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: bottle-bounce 2s ease-in-out infinite;
}

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

.bottle-bubbles {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.bubble {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    position: absolute;
    animation: bubble-float 2s ease-in-out infinite;
}

.bubble:nth-child(1) { top: 0; left: -8px; animation-delay: 0s; }
.bubble:nth-child(2) { top: 8px; left: 0; animation-delay: 0.5s; }
.bubble:nth-child(3) { top: 16px; left: -4px; animation-delay: 1s; }

@keyframes bubble-float {
    0%, 100% { opacity: 0.7; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}

.hydration-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pixel-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: #8A2BE2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.heart {
    font-size: 1.2rem;
    color: #FF69B4;
    animation: heart-beat 2s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-text {
    text-align: right;
    color: #8A2BE2;
    font-size: 0.9rem;
}

.footer-text p {
    margin-bottom: 5px;
}

/* New Social Bubble Styles */
.social-bubble.pumpfun {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.social-bubble.dexscreener {
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
}

.social-bubble.twitch {
    background: linear-gradient(135deg, #9146FF, #B19CD9);
}

.social-bubble.youtube {
    background: linear-gradient(135deg, #FF0000, #FF6B6B);
}

/* Meme Cycling Section */
.meme-cycling-section {
    margin: 30px 0;
    text-align: center;
}

.meme-container {
    background: rgba(184, 230, 255, 0.1);
    border: 2px solid rgba(184, 230, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    margin-top: 15px;
}

.meme-display {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.meme-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.meme-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(184, 230, 255, 0.3);
}

.meme-button {
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    border: 2px solid #A8D8FF;
    border-radius: 25px;
    padding: 12px 25px;
    color: white;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.meme-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 230, 255, 0.4);
    background: linear-gradient(135deg, #A8D8FF, #B8E6FF);
}

.meme-button:active {
    transform: translateY(-1px);
}

/* Stay Hydrated Popup */
.hydration-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hydration-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #E8F4FD, #F0F8FF);
    border: 3px solid #B8E6FF;
    border-radius: 25px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hydration-popup.show .popup-content {
    transform: scale(1);
}

.popup-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(184, 230, 255, 0.1), transparent);
    animation: popup-shimmer 3s ease-in-out infinite;
}

@keyframes popup-shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.water-icon {
    font-size: 2rem;
    animation: water-bounce 2s ease-in-out infinite;
}

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

.popup-header h3 {
    color: #8A2BE2;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #B8E6FF;
    border: 2px solid #A8D8FF;
    border-radius: 50%;
    color: #8A2BE2;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    background: #A8D8FF;
    transform: scale(1.1);
}

.popup-body {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.popup-body p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.water-bottle-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.icebear-gif {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.dance-gif {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: icebear-bounce 2s ease-in-out infinite;
}

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

.bubbles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
}

.bubble {
    position: absolute;
    font-size: 1rem;
    animation: bubble-rise 2s ease-in-out infinite;
}

.bubble:nth-child(1) {
    left: 20px;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    left: 40px;
    animation-delay: 0.5s;
}

.bubble:nth-child(3) {
    left: 60px;
    animation-delay: 1s;
}

@keyframes bubble-rise {
    0% {
        opacity: 0;
        transform: translateY(0px) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0);
    }
}

.popup-footer {
    position: relative;
    z-index: 2;
}

.popup-button {
    background: linear-gradient(135deg, #B8E6FF, #A8D8FF);
    border: 2px solid #A8D8FF;
    border-radius: 25px;
    padding: 12px 30px;
    color: white;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.popup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 230, 255, 0.4);
    background: linear-gradient(135deg, #A8D8FF, #B8E6FF);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-character {
        flex: none;
        width: 300px;
        height: 400px;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-icons {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .windows-container {
        grid-template-columns: 1fr;
    }
    
    .social-bubbles {
        gap: 20px;
    }
    
    .social-bubble {
        width: 100px;
        height: 100px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Center Layout Responsive */
    .center-container {
        padding: 20px 15px;
        margin: 20px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 20px;
    }
    
    .profile-section {
        grid-column: 1;
        grid-row: 1;
    }
    
    .welcome-section {
        grid-column: 1;
        grid-row: 2;
    }
    
    .schedule-section {
        grid-column: 1;
        grid-row: 3;
    }
    
    .live-section {
        grid-column: 1;
        grid-row: 4;
    }
    
    .socials-section {
        grid-column: 1;
        grid-row: 5;
    }
    
    .main-profile-image {
        width: 150px;
        height: 180px;
    }
    
    .vtuber-name {
        font-size: 1.5rem;
    }
    
    .countdown-numbers {
        gap: 15px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .socials-content {
        gap: 15px;
    }
    
    .social-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Border images responsive */
    .border-image {
        width: 50px;
        height: 50px;
    }
    
    .border-vtuber.top-left,
    .border-vtuber.top-right {
        top: 5%;
    }
    
    .border-vtuber.bottom-left,
    .border-vtuber.bottom-right {
        bottom: 5%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-container {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-icons {
        grid-template-columns: 1fr;
    }
    
    .social-bubbles {
        justify-content: center;
    }
    
    .social-bubble {
        width: 80px;
        height: 80px;
    }
    
    .bubble-icon {
        font-size: 1.5rem;
    }
    
    .bubble-text {
        font-size: 0.7rem;
    }
    
    /* Center Layout Mobile */
    .center-container {
        padding: 15px 10px;
        margin: 10px;
    }
    
    .main-profile-image {
        width: 120px;
        height: 150px;
    }
    
    .vtuber-name {
        font-size: 1.3rem;
    }
    
    .vtuber-title {
        font-size: 0.9rem;
    }
    
    .section-header {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .welcome-content p {
        font-size: 0.8rem;
    }
    
    .schedule-item {
        font-size: 0.7rem;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .social-icon-circle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .about-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .about-icon-item {
        padding: 8px;
    }
    
    .about-icon {
        font-size: 1.2rem;
    }
    
    .about-icon-item span {
        font-size: 0.6rem;
    }
    
    /* Border images mobile */
    .border-image {
        width: 40px;
        height: 40px;
    }
    
    .border-vtuber.top-left,
    .border-vtuber.top-right {
        top: 3%;
    }
    
    .border-vtuber.middle-left,
    .border-vtuber.middle-right {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .border-vtuber.bottom-left,
    .border-vtuber.bottom-right {
        bottom: 3%;
    }
}
/* Frost Cursor Effect */
.frost-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(184, 230, 255, 0.8) 0%, rgba(168, 216, 255, 0.4) 50%, transparent 100%);
