#cta-section {
    background: linear-gradient(135deg, #6a00ff 0%, #0054FA 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

#cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/art/bl2.png');
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: left -50px top -50px;
    opacity: 0.05;
    z-index: 0;
    animation: float-bg 15s ease-in-out infinite;
}

#cta-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/art/bl4.png');
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: right -50px bottom -50px;
    opacity: 0.05;
    z-index: 0;
    animation: float-bg 15s ease-in-out infinite reverse;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-message {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
    font-family: 'Chewy', cursive;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-message .emoji {
    font-size: 1.4em;
    display: inline-block;
    animation: pulse 2s infinite;
    margin-right: 10px;
    vertical-align: middle;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.discord-button {
    background: #7289DA;
    color: white;
    border: 2px solid #7289DA;
}

.discord-button:hover {
    background: #5f73bc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(114, 137, 218, 0.4);
}

.twitter-button {
    background: #1DA1F2;
    color: white;
    border: 2px solid #1DA1F2;
}

.twitter-button:hover {
    background: #0d8ecf;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.mint-button {
    background: rgba(255, 219, 88, 0.8);
    color: #270e0e;
    border: 2px solid #ffdb58;
}

.mint-button:hover {
    background: rgba(255, 219, 88, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 219, 88, 0.4);
}

.contact-email {
    margin-top: 30px;
    font-size: 1.1em;
    color: #fff;
}

.contact-email a {
    color: #ffdb58;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    text-shadow: 0 0 10px rgba(255, 219, 88, 0.5);
}

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

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

/* Media Queries */
@media only screen and (max-width: 768px) {
    #cta-section {
        padding: 60px 15px;
    }
    
    .cta-message {
        font-size: 1.4em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

@media only screen and (max-width: 480px) {
    .cta-message {
        font-size: 1.2em;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .contact-email {
        font-size: 1em;
    }
} 