/* Main styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Shadows Into Light', cursive;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #000;
    z-index: 1000;
    padding: 10px 0;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-btn {
    display: block;
    transition: transform 0.3s ease;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
}

.nav-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 5px 5px 0px #000;
}

.nav-icon {
    width: 80px;
    height: 50px;
    object-fit: contain;
}

/* Music Player */
.music-player {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
}

.music-btn {
    position: absolute;
    right: -80px;
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.music-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 5px 5px 0px #000;
}

.music-btn.playing {
    background: #fff;
    color: #000;
    animation: pulse 2s infinite;
}

/* Play/Pause Icons */
.play-icon {
    width: 0;
    height: 0;
    border-left: 12px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 2px;
    transition: all 0.3s ease;
}

.music-btn.playing .play-icon {
    width: 16px;
    height: 16px;
    border: none;
    margin-left: 0;
    position: relative;
}

.music-btn.playing .play-icon::before,
.music-btn.playing .play-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 16px;
    background: #000;
    left: 0;
    top: 0;
}

.music-btn.playing .play-icon::before {
    left: 2px;
}

.music-btn.playing .play-icon::after {
    left: 11px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 20px;
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Main section */
#home {
    background: url('banner.png') center center/cover no-repeat;
    position: relative;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding: 20px;
    max-width: 600px;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    text-shadow: 3px 3px 0px #ff6b6b;
    margin-bottom: 20px;
    text-align: center;
}

.description {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Contract address */
.contract-address {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #000;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 5px 5px 0px #000;
    backdrop-filter: blur(10px);
}

.address-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

.address-container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.address-container:hover {
    background: #e9ecef;
    transform: scale(1.02);
    box-shadow: 3px 3px 0px #000;
}

.address-text {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #333;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: all;
}

.address-text:hover {
    color: #4ecdc4;
    text-shadow: 1px 1px 0px #000;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border: 3px solid #000;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: #000;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 8px 8px 0px #000;
}

/* Ticker */
.ticker-section {
    display: flex;
    overflow-x: hidden;
    background: #000;
    color: #fff;
}

.ticker-div1,
.ticker-div2 {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.3;
    padding: 15px 0;
    white-space: nowrap;
    display: inline-block;
    color: #fff;
}

.ticker-div1 {
    animation: marquee1 20s infinite linear;
    animation-delay: -20s;
}

.ticker-div2 {
    animation: marquee2 20s infinite linear;
    animation-delay: -10s;
}

@keyframes marquee1 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-200%);
    }
}

/* Gallery */
.gallery-title {
    font-size: 3rem;
    text-align: center;
    color: #000;
    text-shadow: 3px 3px 0px #4ecdc4;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 8px 8px 0px #000;
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.gallery-item:nth-child(6) {
    grid-column: 2 / 4;
    grid-row: 3 / 4;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 12px 12px 0px #000;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gallery-item:nth-child(1) .gallery-image,
.gallery-item:nth-child(6) .gallery-image {
    height: 300px;
}

.gallery-item:nth-child(2) .gallery-image {
    height: 400px;
}

.gallery-caption {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.title {
    animation: bounce 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
    
    .gallery-image {
        height: 250px !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .nav-icon {
        width: 60px;
        height: 40px;
    }
    
    .music-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        right: -60px;
    }
    
    .play-icon {
        border-left-width: 10px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
    
    .music-btn.playing .play-icon {
        width: 12px;
        height: 12px;
    }
    
    .music-btn.playing .play-icon::before,
    .music-btn.playing .play-icon::after {
        width: 2px;
        height: 12px;
    }
    
    .music-btn.playing .play-icon::before {
        left: 1px;
    }
    
    .music-btn.playing .play-icon::after {
        left: 8px;
    }
}

/* Random rotations for meme effect */
.gallery-item:nth-child(odd) {
    transform: rotate(-1deg);
}

.gallery-item:nth-child(even) {
    transform: rotate(1deg);
}

.gallery-item:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02);
}
