/* Token Sale Section Specific Styles */
.token-section {
    background-color: #ff9800; /* Bright yellow background */
    color: #000;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.token-section .section-title {
    font-size: 3rem; /* Larger font size for title */
    color: #ff5733; /* Bright red color for title */
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: popIn 1s ease-in-out;
}

.token-section .section-subtitle {
    font-size: 1.5rem; /* Larger subtitle */
    margin-bottom: 40px;
    color: #333;
}

.token-sale-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.token-sale-card {
    background-color: #fff;
    border-radius: 20px; /* More rounded corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Deeper shadow */
    padding: 20px;
    max-width: 350px; /* Slightly wider cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-sale-card:hover {
    transform: translateY(-10px) scale(1.05); /* Enlarge slightly on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); /* Darker shadow on hover */
}

.token-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.token-sale-card h3 {
    font-size: 1.8rem; /* Larger headers */
    color: #ff5733; /* Bright red color for headers */
    margin-bottom: 10px;
}

.token-sale-card p {
    font-size: 1.2rem; /* Larger text */
    color: #555;
    margin-bottom: 20px;
}

.token-sale-card .btn {
    background-color: #ff5733; /* Bright red button */
    border: none;
    padding: 12px 24px; /* Larger button */
    color: #fff;
    font-weight: bold;
    border-radius: 10px; /* More rounded button */
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.token-sale-card .btn:hover {
    background-color: #c70039;
    transform: scale(1.1); /* Slightly enlarge button on hover */
}

.token-sale-card .btn:active {
    transform: scale(1.05); /* Slightly shrink button on click */
}

.crazy-text {
    margin-top: 40px;
    animation: fadeIn 2s ease-in-out;
}

.no-tokenomics, .degen-explanation {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    animation: crazyText 2s infinite;
}

.no-tokenomics {
    animation-delay: 0s;
}

.degen-explanation {
    animation-delay: 1s;
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes crazyText {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Background Animations */
.token-section::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 223, 87, 0.2), rgba(255, 87, 51, 0.2));
    animation: rotateBg 15s linear infinite;
    z-index: 0;
    top: -50%;
    left: -50%;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.token-section .container {
    position: relative;
    z-index: 1;
}
