/* Base Styles */
body {
    /* font-family: 'Comic Sans MS', cursive, sans-serif; */
    margin: 0;
    padding: 0;
    background-color: #ffeb3b;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #e91e63;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-bottom: 5px dashed #4caf50;
}

h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 3px 3px 0 #000;
}

.subtitle {
    font-size: 1.5rem;
    margin: 0.5rem 0 0;
    font-weight: bold;
}

/* Header Controls */
.header-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
	flex-direction: row-reverse;
}

.language-switcher button {
    background-color: #2196f3;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.language-switcher button.active {
    background-color: #ff5722;
    transform: scale(1.1);
}

/* Twitter Button */
.twitter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #1DA1F2;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.twitter-btn:hover {
    background-color: #1991db;
}

.twitter-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.twitter-text {
    font-size: 14px;
    font-weight: 500;
}

/* Meme Container */
.meme-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    border: 10px solid white;
    box-shadow: 0 0 0 5px #000;
}

.meme-container img {
    width: 100%;
    display: block;
}

.meme-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 1rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

/* Content Sections */
section {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 8px 8px 0 #000;
    border: 3px solid #000;
}

h2 {
    color: #e91e63;
    font-size: 2rem;
    margin-top: 0;
    text-decoration: underline wavy #4caf50;
}

/* Tokenomics List */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 0.5rem 0;
    font-size: 1.2rem;
}

li:before {
    content: "";
    margin-right: 0.5rem;
}

/* Partners Section */
.partners {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
   
    border-radius: 15px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.partner-logos img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logos img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #000;
    color: white;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    section {
        margin: 1rem;
        padding: 1rem;
    }

    .meme-text {
        font-size: 1.5rem;
    }

    .partner-logos {
        gap: 1rem;
    }
    
    .partner-logos img {
        width: 120px;
    }
}