/* styles.css */

/* CSS Reset and Variables */
:root {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --background: #0a0a0a;
    --card-bg: rgba(46, 204, 113, 0.1);
    --border: rgba(46, 204, 113, 0.3);
    --shadow: rgba(46, 204, 113, 0.2);
    --text: #ffffff;
    --header-gradient: linear-gradient(45deg, #1a1a1a, #000);
    --max-width: 1200px;
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

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

/* Base Styles */
body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Container */
.content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

/* Header Styles */
.header {
    background: var(--header-gradient);
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

/* Logo Styles */
.logo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.logo:hover {
	cursor: pointer;
}

.emoji-logo {
    font-size: 120px;
    line-height: 1;
    transform: scale(1);
    transition: var(--transition);
}

.logo:hover .emoji-logo {
    transform: scale(1.1) rotate(10deg);
}

/* Title Styles */
.title {
    font-size: 4rem;
    color: var(--primary);
    margin: 1rem 0;
    text-shadow: 0 0 10px var(--shadow);
    font-weight: 800;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Quote Styles */
.meme-quote {
    font-style: italic;
    color: var(--primary);
    font-size: 1.4rem;
    margin: 1.5rem 0;
    font-weight: 500;
}

/* Navigation and Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-button {
    padding: 1rem 2rem;
    border-radius: 25px;
    background: var(--primary);
    color: var(--background);
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.social-button .icon {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px var(--shadow);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Tokenomics Section */
.tokenomics {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin: 4rem 0;
    border: 1px solid var(--border);
}

.tokenomics h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    text-align: center;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tokenomics-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.tokenomics-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Meme Section */
.meme-section {
    margin: 4rem 0;
}

.meme-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.meme-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px var(--shadow);
}

.meme-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
}

.footer p {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer small {
    color: var(--text);
    opacity: 0.7;
}

/* Canvas Container */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 968px) {
    .title {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }

    .content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-button {
        width: 80%;
        max-width: 300px;
    }

    .title {
        font-size: 3rem;
    }

    .tokenomics {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 150px;
        height: 150px;
    }

    .emoji-logo {
        font-size: 100px;
    }

    .title {
        font-size: 2.5rem;
    }

    .feature-card, 
    .tokenomics-item, 
    .meme-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }

    #canvas-container {
        display: none;
    }

    .header {
        border-bottom: 2px solid #000;
    }

    .feature-card,
    .tokenomics-item,
    .meme-card {
        border: 1px solid #000;
        break-inside: avoid;
    }
}
