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

:root {
    --primary-color: #00ff88;
    --secondary-color: #ff0066;
    --accent-color: #00d4ff;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --glow-primary: 0 0 20px rgba(0, 255, 136, 0.5);
    --glow-secondary: 0 0 20px rgba(255, 0, 102, 0.5);
    --glow-accent: 0 0 20px rgba(0, 212, 255, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 20px rgba(0, 255, 136, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

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

.logo i {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.buy-btn-nav {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.buy-btn-nav:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 999;
    border-left: 2px solid var(--primary-color);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    border-left: 3px solid var(--primary-color);
    color: var(--primary-color);
    padding-left: 20px;
}

.buy-btn-mobile {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.floating-buy-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 5px 25px rgba(255, 0, 102, 0.5);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-buy-btn:hover {
    transform: scale(1.1);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(5, 5, 8, 0.9) 100%), 
                url('digital.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.ticker-container {
    position: absolute;
    top: 70px;
    width: 100%;
    background: rgba(255, 0, 102, 0.2);
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--secondary-color);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.ticker span {
    display: inline-block;
    padding: 0 50px;
    color: var(--primary-color);
    font-weight: bold;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
}

.glitch {
    font-size: 72px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: var(--primary-color);
    animation: glitch-anim 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-3 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0%, 20%, 50%, 70%, 100% { transform: skew(0deg); }
    20% { transform: skew(-2deg); }
    40% { transform: skew(2deg); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    25% { clip: rect(12px, 9999px, 59px, 0); }
    50% { clip: rect(78px, 9999px, 32px, 0); }
    75% { clip: rect(25px, 9999px, 83px, 0); }
    100% { clip: rect(55px, 9999px, 16px, 0); }
}

@keyframes glitch-anim-3 {
    0% { clip: rect(65px, 9999px, 23px, 0); }
    25% { clip: rect(34px, 9999px, 71px, 0); }
    50% { clip: rect(19px, 9999px, 88px, 0); }
    75% { clip: rect(45px, 9999px, 12px, 0); }
    100% { clip: rect(88px, 9999px, 45px, 0); }
}

.hero-subtitle {
    font-size: 32px;
    color: var(--text-gray);
    margin: 20px 0 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    box-shadow: var(--glow-secondary);
}

.cta-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.7);
}

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

.cta-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.card-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.roadmap-timeline-about {
    margin-top: 80px;
    text-align: center;
}

.roadmap-timeline-about h3 {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.timeline-poster {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.poster-item {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.2), rgba(0, 212, 255, 0.2));
    border: 3px solid var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.poster-item:nth-child(2) {
    transform: rotate(2deg);
}

.poster-item:hover {
    transform: rotate(0deg) scale(1.1);
}

.poster-item i {
    font-size: 48px;
    color: var(--primary-color);
}

.poster-item span {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.how-to-buy-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    transition: all 0.3s;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--glow-primary);
}

.step-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.step p {
    color: var(--text-gray);
}

.buy-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dex-btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dex-btn.uniswap {
    background: linear-gradient(135deg, #ff007a, #ff4da6);
    color: white;
}

.dex-btn.raydium {
    background: linear-gradient(135deg, #c200fb, #3772ff);
    color: white;
}

.dex-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.5);
}

.staking-section {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.staking-blur-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 0, 102, 0.1));
    filter: blur(100px);
}

.staking-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.loading-text {
    font-size: 28px;
    color: var(--accent-color);
    margin: 30px 0;
    opacity: 0.7;
}

.glitch-cycle {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 40px 0;
    min-height: 60px;
}


.staking-desc {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.tokenomics-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.transparency-banner {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid var(--primary-color);
    padding: 20px;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.transparency-banner i {
    font-size: 32px;
    color: var(--primary-color);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pie-chart {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.pie-chart svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-center span {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.chart-center small {
    font-size: 18px;
    color: var(--text-gray);
}

.tokenomics-cards {
    display: grid;
    gap: 20px;
}

.token-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}

.token-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
    transform: translateX(10px);
}

.token-card i {
    font-size: 36px;
    color: var(--primary-color);
}

.token-card h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.token-card p {
    color: var(--text-gray);
    font-size: 14px;
}

.roadmap-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.roadmap-phase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
}

.roadmap-phase:nth-child(even) .phase-content {
    grid-column: 1;
    text-align: right;
}

.roadmap-phase:nth-child(even) .phase-node {
    grid-column: 2;
}

.roadmap-phase:nth-child(odd) .phase-content {
    grid-column: 3;
    text-align: left;
}

.roadmap-phase:nth-child(odd) .phase-node {
    grid-column: 2;
}

.phase-node {
    width: 80px;
    height: 80px;
    background: var(--bg-darker);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.phase-node:hover {
    transform: scale(1.2);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.8);
}

.phase-node i {
    font-size: 36px;
    color: var(--primary-color);
}

.phase-content {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.phase-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.phase-content h3 {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.phase-content p {
    color: var(--text-gray);
}

.community-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.community-banner {
    text-align: center;
    margin-bottom: 60px;
}

.community-banner h2 {
    font-size: 56px;
    color: var(--secondary-color);
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 0, 102, 0.5);
}

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #00aaff);
    color: white;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-btn.discord {
    background: linear-gradient(135deg, #7289da, #5865f2);
    color: white;
}

.social-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
}

.social-btn i {
    font-size: 32px;
}

.meme-gallery {
    text-align: center;
}

.meme-gallery h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.meme-scroll {
    display: flex;
    overflow: hidden;
    gap: 20px;
}

.meme-item {
    min-width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    animation: meme-scroll 20s linear infinite;
}

@keyframes meme-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.contact-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.submit-btn {
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.5);
}

.contact-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-social h3 {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.contact-icons {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-icon:hover {
    background: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: scale(1.2);
}

.contact-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.contact-icon:hover i {
    color: var(--bg-dark);
}

.footer {
    padding: 40px 0;
    background: var(--bg-darker);
    text-align: center;
    border-top: 2px solid var(--primary-color);
}

.footer p {
    color: var(--text-gray);
    margin: 5px 0;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .tokenomics-content {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline::before {
        left: 40px;
    }

    .roadmap-phase {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .roadmap-phase .phase-node {
        grid-column: 1;
    }

    .roadmap-phase .phase-content {
        grid-column: 2;
        text-align: left !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .buy-steps {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .floating-buy-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .social-buttons {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }

    .community-banner h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .glitch {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .logo {
        font-size: 18px;
    }

    .logo i {
        font-size: 20px;
    }

    .buy-btn-nav {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a0a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 80px;
    color: var(--primary-color);
    animation: pulse-glow 2s infinite;
    margin-bottom: 20px;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    50% { 
        transform: scale(1.1); 
        text-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
    }
}

.preloader-text {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.preloader-spinner {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.spinner-ring {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: bounce 1.4s infinite ease-in-out;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.16s;
    background: var(--secondary-color);
}

.spinner-ring:nth-child(3) {
    background: var(--accent-color);
}

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
    }
    40% { 
        transform: scale(1);
    }
}

.preloader-message {
    font-size: 16px;
    color: var(--text-gray);
    font-style: italic;
}

.about-image-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.about-image {
    max-width: 100%;
    width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
    transition: transform 0.3s;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.5);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.meme-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s;
    opacity: 0.5;
}

.meme-card.active {
    opacity: 1;
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(255, 0, 102, 0.4);
}

.meme-card i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.meme-card h4 {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.meme-card p {
    font-size: 18px;
    color: var(--text-gray);
}

.carousel-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: scale(1.3);
}

.footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 80px 0 40px;
}

.footer-column h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.footer-logo h3 {
    font-size: 24px;
    color: var(--primary-color);
}

.footer-desc {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-links i {
    font-size: 12px;
}

.newsletter-text {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--accent-color);
    box-shadow: var(--glow-accent);
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.stat-item i {
    font-size: 28px;
    color: var(--primary-color);
}

.stat-item strong {
    display: block;
    font-size: 20px;
    color: var(--accent-color);
}

.stat-item span {
    font-size: 12px;
    color: var(--text-gray);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    padding: 40px 0;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    color: var(--text-gray);
    margin: 10px 0;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    opacity: 0.7;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
}

.badge i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-image {
        height: 250px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .meme-card {
        padding: 40px 20px;
    }
    
    .meme-card i {
        font-size: 60px;
    }
    
    .meme-card h4 {
        font-size: 24px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
}
