/* Globale Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Ghibli-Schriftarten einbinden */
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Mochiy+Pop+One&family=Pacifico&display=swap');

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Sound-Button Styling */
.sound-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sound-button i {
    color: #f5e8ba;
    font-size: 20px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.sound-button:hover {
    transform: scale(1.1);
    background: rgba(40, 40, 40, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* CA Banner Styling - Ghibli-Style */
.ca-banner {
    background: linear-gradient(90deg, rgba(10,10,25,0.9) 0%, rgba(30,30,60,0.9) 50%, rgba(10,10,25,0.9) 100%);
    color: #f5e8ba;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Mochiy Pop One', sans-serif;
    font-weight: normal;
    font-size: 14px;
    z-index: 10;
    white-space: nowrap;
    height: 45px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.top-banner {
    border-bottom: 1px solid #586b95;
}

.bottom-banner {
    border-top: 1px solid #586b95;
}

.ca-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.ca-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.ca-item {
    display: inline-block;
    margin: 0 30px;
    padding: 5px 15px;
    background: linear-gradient(to right, rgba(66, 100, 161, 0.1), rgba(87, 133, 188, 0.2), rgba(66, 100, 161, 0.1));
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
    position: relative;
}

.ca-item:hover {
    background: linear-gradient(to right, rgba(87, 133, 188, 0.2), rgba(116, 163, 214, 0.3), rgba(87, 133, 188, 0.2));
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(173, 216, 230, 0.4);
}

.ca-item::before {
    content: '✧';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.ca-item::after {
    content: '✧';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Hauptinhalt und Video */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
    z-index: 5;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100vh;
    position: relative;
}

/* HOW TO BUY Button */
.buy-button {
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    z-index: 5;
    text-align: center;
    filter: drop-shadow(0 0 15px rgba(255, 160, 0, 0.4));
}

.buy-button img {
    max-width: 260px;
    height: auto;
    display: block;
}

.buy-button:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 20px rgba(255, 180, 0, 0.6));
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    z-index: 5;
}

.social-btn {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: rgba(30, 30, 30, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.social-btn img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.social-btn.twitter {
    background-color: rgba(30, 30, 30, 0.8);
}

.social-btn.dexscreener {
    background-color: rgba(30, 30, 30, 0.8);
}

.social-btn.pumpfun {
    background-color: rgba(30, 30, 30, 0.8);
}

/* Copy Feedback Dialog */
.copy-feedback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.9), rgba(34, 139, 34, 0.9));
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 100;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(60, 179, 113, 0.5);
    font-family: 'Indie Flower', cursive;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.copy-feedback.show {
    transform: translate(-50%, -50%) scale(1);
    animation: fadeOut 1.5s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Glitzernde Sterne Animation für Ghibli-Effekt */
@keyframes sparkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sound-button {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .sound-button i {
        font-size: 16px;
    }
    
    .buy-button img {
        max-width: 200px;
    }
    
    .social-btn {
        width: 65px;
        height: 65px;
        border-radius: 8px;
    }
    
    .social-btn img {
        width: 45px;
        height: 45px;
    }
    
    .ca-banner {
        font-size: 12px;
        height: 40px;
    }
} 