* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #7349e3;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.title {
    font-size: 5rem;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 0px;
    animation: glow 2s ease-in-out infinite alternate;
    color: #fff;
}

@keyframes glow {
    from {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
    }
    to {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

/* Rotating Image Section */
.image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.rotating-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-image {
    max-width: 550px;
    width: 100%;
    height: auto;
    animation: smoothSwing 4s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes smoothSwing {
    0% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
    100% {
        transform: rotate(-8deg);
    }
}

/* About Section */
.about-section {
    text-align: center;
    max-width: 1500px;
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    color: #fff;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Lore Images Section */
.lore-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.lore-image {
    max-width: 400px;
    width: auto;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.lore-image:hover {
    transform: translateY(-5px);
}

/* Buttons Section */
.buttons-section {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
    padding: 2rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Nunito', sans-serif;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.action-btn:active {
    transform: translateY(-1px);
}

.twitter-btn {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.dexscreener-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.copy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1.2rem 2.2rem;
    background: #10b981;
    color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
    font-weight: 700;
    font-size: 1.1rem;
}

.notification.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .title {
        font-size: 3.5rem;
    }

    .rotating-image {
        max-width: 400px;
    }

    .about-section {
        margin: 2rem 0;
        padding: 2rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .lore-images {
        gap: 1.5rem;
    }

    .lore-image {
        max-width: 100%;
    }

    .buttons-section {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.8rem;
    }

    .rotating-image {
        max-width: 320px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .lore-images {
        gap: 1rem;
    }

    .action-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #006699);
}
