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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    overflow: hidden;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 50%, #e17055 100%);
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.hero-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 25%, #d4c4b0 50%, #c9b8a5 75%, #b8a896 100%);
    max-width: 100vw;
    max-height: 100vh;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('yako-cat.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slowZoom 20s ease-in-out infinite alternate;
    transform-origin: center center;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 50%,
        rgba(245, 230, 211, 0.15) 70%,
        rgba(232, 213, 196, 0.25) 80%,
        rgba(212, 196, 176, 0.35) 90%,
        rgba(201, 184, 165, 0.45) 95%,
        rgba(184, 168, 150, 0.5) 100%
    );
    pointer-events: none;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 234, 167, 0.05) 0%,
        rgba(253, 203, 110, 0.03) 40%,
        rgba(245, 230, 211, 0.08) 60%,
        rgba(232, 213, 196, 0.12) 80%,
        rgba(212, 196, 176, 0.15) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #fff;
    opacity: 0.95;
}

.fade-in {
    animation: fadeIn 2s ease-in;
}

.fade-in-delay {
    animation: fadeIn 2s ease-in 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    min-height: 50vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 50%, #e17055 100%);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #2d3436;
}

.container h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2d3436;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.container p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

.top-message {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 5rem;
    font-weight: 400;
    font-family: 'Arial Narrow', Arial, sans-serif;
    color: #ffd700;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
    text-align: left;
    animation: feelGoodFloat 4s ease-in-out 2s infinite, fadeInText 2s ease-out;
    padding: 0 20px;
    max-width: 90vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.quote-text {
    display: block;
}

.quote-author {
    display: block;
    margin-top: 0.3em;
    font-size: 0.8em;
}

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

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.editor-button {
    position: absolute;
    bottom: 130px;
    left: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.editor-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.x-button {
    position: absolute;
    bottom: 70px;
    left: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.x-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.contract-address {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: calc(100vw - 400px);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .container h2 {
        font-size: 2rem;
    }
    
    .container p {
        font-size: 1.1rem;
    }
    
    .top-message {
        font-size: 3rem;
        top: 25px;
        left: 25px;
        white-space: normal;
        max-width: calc(100vw - 50px);
    }
    
    .editor-button {
        bottom: 115px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    
    .x-button {
        bottom: 60px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    
    .contract-address {
        font-size: 1.2rem;
        bottom: 20px;
        left: 20px;
        max-width: calc(100vw - 300px);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .top-message {
        font-size: 2.5rem;
        top: 20px;
        left: 20px;
        letter-spacing: -0.03em;
        padding: 0 15px;
        white-space: normal;
        max-width: calc(100vw - 40px);
    }
    
    .editor-button {
        bottom: 105px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .x-button {
        bottom: 55px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .contract-address {
        font-size: 1rem;
        bottom: 20px;
        left: 15px;
        max-width: calc(100vw - 250px);
    }
}

/* Music Player Styles */
.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
}

.music-player:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #2d3436;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
}

.player-btn:hover {
    background: rgba(253, 203, 110, 0.3);
    color: #e17055;
    transform: scale(1.1);
}

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

.play-pause-btn {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
    color: white;
    width: 50px;
    height: 50px;
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, #e17055 0%, #fdcb6e 100%);
    transform: scale(1.1);
}


/* Responsive Music Player */
@media (max-width: 768px) {
    .music-player {
        padding: 12px 20px;
        gap: 10px;
        right: 20px !important;
        bottom: max(20px, env(safe-area-inset-bottom, 20px)) !important;
        z-index: 1000 !important;
    }
    
    .player-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        touch-action: manipulation;
    }
    
    .play-pause-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .music-player {
        padding: 10px 15px;
        gap: 8px;
        right: 15px !important;
        bottom: max(15px, env(safe-area-inset-bottom, 15px)) !important;
        min-width: auto;
        z-index: 1000 !important;
    }
    
    .player-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }
    
    .play-pause-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
}


