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

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #f9ca24;
    --purple: #667eea;
    --pink: #f093fb;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-light: #ffffff;
    --text-gray: #a0a0a8;
    --text-dark: #2c2c2c;
    --gradient-1: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-bg: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    --border-radius: 20px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(249, 202, 36, 0.12) 0%, transparent 45%),
        url('img/Gvl1yuHXkAAldJG.jpg') center center/40% no-repeat,
        url('img/Gv4uzFTWEAAoztO.jpg') center center/35% no-repeat,
        url('img/Gv1xySTW4AA97jO.jpg') top left/30% no-repeat,
        url('img/Gv7_j-Za4AErDUR.jpg') top right/25% no-repeat,
        url('img/GwAEhOFXMAAX3T6.jpg') bottom left/28% no-repeat,
        url('img/Gvs0nAibsAIU5Vp.jpg') bottom right/23% no-repeat,
        var(--gradient-bg);
    opacity: 0.12;
    z-index: -3;
    filter: blur(2px) brightness(1.2) contrast(1.1);
    animation: subtleFloat 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255, 107, 107, 0.05) 25%, transparent 50%, rgba(78, 205, 196, 0.05) 75%, transparent 100%),
        radial-gradient(ellipse at center, transparent 40%, rgba(102, 126, 234, 0.03) 100%);
    z-index: -2;
    animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes subtleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-10px, -5px) scale(1.01); }
    50% { transform: translate(5px, -10px) scale(0.99); }
    75% { transform: translate(-5px, 5px) scale(1.01); }
}

@keyframes gradientShift {
    0% { opacity: 0.4; transform: rotate(0deg); }
    100% { opacity: 0.8; transform: rotate(1deg); }
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

.shape-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    top: 15%;
    left: -8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.3) 0%, transparent 70%);
    top: 65%;
    right: -3%;
    animation-delay: 3s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(249, 202, 36, 0.3) 0%, transparent 70%);
    bottom: 25%;
    left: 8%;
    animation-delay: 6s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    top: 45%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-15px) scale(1.05) rotate(2deg); }
    50% { transform: translateY(-30px) scale(1.1) rotate(0deg); }
    75% { transform: translateY(-15px) scale(1.05) rotate(-2deg); }
}

.comic-bubble {
    background: #FFFFFF;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 6px 6px 0px #000;
    font-family: 'Bangers', cursive;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
}

.comic-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #000;
}

.comic-bubble::before {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 22px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 13px solid #FFFFFF;
    z-index: 1;
}

.comic-bubble.large {
    font-size: 2rem;
    padding: 30px;
}

.comic-bubble.small {
    font-size: 0.8rem;
    padding: 8px 12px;
    position: absolute;
    top: -10px;
    right: -10px;
    animation: burst-rotate 3s ease-in-out infinite;
}

.comic-bubble.tiny {
    font-size: 0.6rem;
    padding: 5px 8px;
}

.comic-bubble.narrative {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-weight: normal;
}

.comic-bubble.mission-bubble {
    background: linear-gradient(45deg, #FFE066, #FFFFFF);
}

@keyframes burst-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    flex-direction: row;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    border-color: var(--secondary-color);
}

.logo-text {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.header-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.social-link:hover .header-icon {
    filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.8));
}

.footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-social-link:hover .footer-icon {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle i {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-toggle .fa-times {
    display: none;
    opacity: 0;
    transform: rotate(90deg);
}

.mobile-toggle .fa-bars {
    display: block;
    opacity: 1;
    transform: rotate(0deg);
}


.hero {
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Fredoka', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emoji {
    font-size: 3.5rem;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;

}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn:active {
    transform: scale(0.95);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}


.contract-address {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contract-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
}

.ca-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ca-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ca-address {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    flex: 1;
    word-break: break-all;
    line-height: 1.4;
    user-select: all;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.2rem 0.5rem;
}

.ca-address:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
    transform: scale(1.01);
}




.hero-visual {
    position: relative;
    z-index: 1;
}

.main-banner {
    text-align: center;
    position: relative;
}

.banner-img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.banner-img:hover {
    transform: scale(1.05);
}

.floating-memes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-meme {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: floating 4s ease-in-out infinite;
}

.meme-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.meme-2 {
    top: 30%;
    right: -15%;
    animation-delay: 1.5s;
}

.meme-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 3s;
}

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


.meme-gallery {
    padding: 100px 0;
    position: relative;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Fredoka', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.meme-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

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

.meme-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    flex: 1;
    min-height: 200px;
}

.meme-card:hover .meme-img {
    transform: scale(1.1);
}

.meme-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.meme-card:hover .meme-overlay {
    transform: translateY(0);
}

.meme-reactions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.reaction {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.gallery-cta .btn {
    margin: 0 auto;
}


.stats {
    padding: 80px 0;
    position: relative;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}


.about {
    padding: 100px 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}


.community {
    padding: 100px 0;

}

.community-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.community-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.community-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.community-header i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.community-header span {
    font-weight: 600;
    font-size: 1.1rem;
}

.verified-badge {
    background: var(--gradient-1);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.community-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.community-stats span {
    background: rgba(78, 205, 196, 0.2);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.community-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.community-link:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.community-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-cta .cta-buttons {
    justify-content: center;
}

.community-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.community-cta p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}


.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0 2rem;
}

.footer-brand {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.footer-logo-text {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.1);
}


.header-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-link:hover .header-icon {
    filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.8));
}

.footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-social-link:hover .footer-icon {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-link {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}




.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow);
}


.about-card, .meme-card, .community-card, .stat-item {
    position: relative;
    overflow: hidden;
}

.about-card::after, .meme-card::after, .community-card::after, .stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.03) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.about-card:hover::after, .meme-card:hover::after, .community-card:hover::after, .stat-item:hover::after {
    opacity: 1;
}


@media (max-width: 768px) {
    .header {
        z-index: 1000;
    }
    
    .nav-container {
        z-index: 1000;
    }
    
    .logo {
        z-index: 1000;
        flex-direction: row;
    }
    
    .logo-text {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        white-space: nowrap;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }
    
    .nav.mobile-open .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        gap: 1.5rem;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .nav.mobile-open .nav-menu > * {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .nav.mobile-open .nav-menu hr {
        display: none;
    }
    
    .nav.mobile-open .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        max-width: 300px;
        text-align: center;
        transition: all 0.3s ease;
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        display: block;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .nav.mobile-open .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav.mobile-open .nav-link::after {
        display: none;
    }
    
    .nav.mobile-open .nav-link::before {
        display: none;
    }
    
    .nav.mobile-open .social-links {
        display: none;
    }
    
    .mobile-toggle.active .fa-bars {
        display: none;
        opacity: 0;
        transform: rotate(90deg);
    }
    
    .mobile-toggle.active .fa-times {
        display: block;
        opacity: 1;
        transform: rotate(0deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .ca-container {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .ca-address {
        font-size: 0.85rem;
        text-align: center;
        padding: 0.5rem;
    }
    

    
    .nav-container {
        padding: 0 1rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .floating-meme {
        width: 60px;
        height: 60px;
    }
    
    .shape {
        opacity: 0.05;
    }
    
    .nav.mobile-open .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    

}


[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
} 