/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #0a0a0a 100%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-pumpjak {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.floating-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    animation: logoSpin 8s linear infinite;
}

.pumpjak-1 { top: 10%; left: 10%; animation-delay: 0s; }
.pumpjak-2 { top: 20%; right: 15%; animation-delay: 1s; }
.pumpjak-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.pumpjak-4 { bottom: 20%; right: 10%; animation-delay: 3s; }
.pumpjak-5 { top: 50%; left: 50%; animation-delay: 4s; }

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

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

/* Sections */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    scroll-snap-align: start;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at center, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.pumpjak-character {
    margin-bottom: 2rem;
}

.pumpjak-avatar {
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.main-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8));
    animation: mainLogoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
}

.pumpjak-hoodie {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    animation: glow 2s ease-in-out infinite alternate, textBounce 1s ease-in-out infinite;
}

.pumpjak-subtitle {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    margin-top: 0.5rem;
    animation: subtitleGlow 2s ease-in-out infinite alternate;
}

.cto-badge {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    color: #ffff00;
    text-shadow: 0 0 15px #ffff00;
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(45deg, rgba(255, 255, 0, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(255, 255, 0, 0.5);
    border-radius: 10px;
    animation: ctoBadgeGlow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    color: #ffff00;
    text-shadow: 0 0 15px #ffff00;
    margin-bottom: 1rem;
    animation: descriptionPulse 3s ease-in-out infinite;
}

.contract-address {
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 0, 255, 0.5);
    animation: contractGlow 2s ease-in-out infinite alternate;
}

.contract-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    margin-right: 1rem;
}

.contract-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    word-break: break-all;
    animation: contractTextPulse 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 30px #00ffff;
    margin-bottom: 1rem;
    animation: flicker 3s infinite, titleFloat 4s ease-in-out infinite;
    text-align: center;
    line-height: 1.2;
}

.launch-btn {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border: none;
    padding: 1.5rem 3rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 1.2rem;
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    animation: bounce 2s infinite, buttonGlow 1.5s ease-in-out infinite alternate;
}

.launch-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.8);
    animation: buttonHover 0.3s ease-in-out;
}

/* Candles */
.candles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.candle {
    position: absolute;
    font-size: 2rem;
    color: #ffff00;
    animation: candleFlicker 1s ease-in-out infinite;
}

.candle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.candle:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.2s; }
.candle:nth-child(3) { top: 30%; left: 20%; animation-delay: 0.4s; }
.candle:nth-child(4) { top: 40%; right: 25%; animation-delay: 0.6s; }
.candle:nth-child(5) { top: 50%; left: 30%; animation-delay: 0.8s; }
.candle:nth-child(6) { top: 60%; right: 35%; animation-delay: 1s; }
.candle:nth-child(7) { top: 70%; left: 40%; animation-delay: 1.2s; }
.candle:nth-child(8) { top: 80%; right: 45%; animation-delay: 1.4s; }

@keyframes candleFlicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

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

@keyframes glow {
    0% { text-shadow: 0 0 20px #ff00ff; }
    100% { text-shadow: 0 0 40px #ff00ff, 0 0 60px #ff00ff; }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes mainLogoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8)); }
    100% { filter: drop-shadow(0 0 50px rgba(255, 0, 255, 1)); }
}

@keyframes textBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes buttonGlow {
    0% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.5); }
    100% { box-shadow: 0 0 50px rgba(255, 0, 255, 0.8), 0 0 70px rgba(0, 255, 255, 0.5); }
}

@keyframes buttonHover {
    0% { transform: scale(1.1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

@keyframes subtitleGlow {
    0% { text-shadow: 0 0 15px #00ffff; }
    100% { text-shadow: 0 0 25px #00ffff, 0 0 35px #00ffff; }
}

@keyframes descriptionPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes contractGlow {
    0% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.3), 0 0 20px rgba(0, 255, 255, 0.3); }
    100% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.5); }
}

@keyframes contractTextPulse {
    0%, 100% { text-shadow: 0 0 10px #00ffff; }
    50% { text-shadow: 0 0 15px #00ffff; }
}

@keyframes ctoBadgeGlow {
    0% { text-shadow: 0 0 15px #ffff00; }
    100% { text-shadow: 0 0 25px #ffff00, 0 0 35px #ffff00; }
}

/* Creed Section */
.creed {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
}

.section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 3rem;
    text-align: center;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.meme-card {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: cardFloat 4s ease-in-out infinite;
}

.meme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.meme-card:hover::before {
    left: 100%;
}

.meme-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.6);
    animation: cardHover 0.3s ease-in-out;
}

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

@keyframes cardHover {
    0% { transform: scale(1.05) rotate(2deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1.05) rotate(2deg); }
}

/* Live Feed Section */
.live-feed {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.terminal {
    background: #000;
    border: 2px solid #00ffff;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.terminal-header {
    background: #00ffff;
    color: #000;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
}

.terminal-status {
    color: #ff0000;
    animation: blink 1s infinite;
}

.terminal-content {
    padding: 1rem;
    height: calc(100% - 60px);
    overflow-y: auto;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    line-height: 1.5;
}

.terminal-line {
    margin-bottom: 0.5rem;
    animation: typewriter 0.1s ease-in;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes typewriter {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    padding: 4rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.gallery-item {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: galleryFloat 5s ease-in-out infinite;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
    animation: galleryHover 0.5s ease-in-out;
}

.pumpjak-face {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: facePulse 2s ease-in-out infinite;
}

.gallery-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.6));
    transition: all 0.3s ease;
    max-width: 100%;
    max-height: 100%;
    animation: galleryLogoSpin 6s linear infinite;
}

.gallery-item:hover .gallery-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 0, 255, 0.8));
    animation: galleryLogoHover 0.5s ease-in-out;
}

.caption {
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    color: #000;
    margin-top: 1rem;
    text-align: center;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2) 0%, transparent 50%);
}

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

.cta-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 3rem;
    color: #ff00ff;
    text-shadow: 0 0 30px #ff00ff;
    margin-bottom: 1rem;
    animation: flash 2s infinite, ctaTitleFloat 3s ease-in-out infinite;
}

.cta-subtitle {
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    margin-bottom: 1rem;
    animation: ctaSubtitleGlow 2s ease-in-out infinite alternate;
}

.cto-announcement {
    background: linear-gradient(45deg, rgba(255, 255, 0, 0.3), rgba(255, 0, 255, 0.3));
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 0, 0.6);
    animation: ctoAnnouncementGlow 2s ease-in-out infinite alternate;
}

.cto-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: #ffff00;
    text-shadow: 0 0 15px #ffff00;
    font-weight: bold;
    animation: ctoTextPulse 2s ease-in-out infinite;
}

.cta-btn {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border: none;
    padding: 2rem 4rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
    animation: pulse 2s infinite, ctaButtonGlow 2s ease-in-out infinite alternate;
}

.cta-btn:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.8);
    animation: ctaButtonHover 0.5s ease-in-out;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes ctaTitleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes ctaButtonGlow {
    0% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.5); }
    100% { box-shadow: 0 0 60px rgba(255, 0, 255, 0.8), 0 0 80px rgba(0, 255, 255, 0.6); }
}

@keyframes ctaButtonHover {
    0% { transform: scale(1.1) rotate(3deg); }
    50% { transform: scale(1.15) rotate(5deg); }
    100% { transform: scale(1.1) rotate(3deg); }
}

@keyframes ctaSubtitleGlow {
    0% { text-shadow: 0 0 15px #00ffff; }
    100% { text-shadow: 0 0 25px #00ffff, 0 0 35px #00ffff; }
}

@keyframes ctoAnnouncementGlow {
    0% { box-shadow: 0 0 20px rgba(255, 255, 0, 0.3), 0 0 20px rgba(255, 0, 255, 0.3); }
    100% { box-shadow: 0 0 30px rgba(255, 255, 0, 0.6), 0 0 30px rgba(255, 0, 255, 0.6); }
}

@keyframes ctoTextPulse {
    0%, 100% { text-shadow: 0 0 15px #ffff00; }
    50% { text-shadow: 0 0 20px #ffff00; }
}

/* Footer */
.footer {
    background: #000;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.ticker {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 2rem;
}

.ticker-content {
    display: inline-block;
    animation: ticker 20s linear infinite;
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: #00ffff;
}

.ticker-content span {
    margin-right: 2rem;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-btn {
    display: inline-block;
    width: 200px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    animation: socialPulse 2s ease-in-out infinite;
    gap: 10px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
}

.social-btn:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    animation: socialHover 0.5s ease-in-out;
}

.x-community {
    background: linear-gradient(45deg, #1da1f2, #00ffff);
    animation: xPulse 3s ease-in-out infinite;
    width: 250px;
    height: 70px;
    font-size: 1rem;
}

.x-community:hover {
    background: linear-gradient(45deg, #00ffff, #1da1f2);
    box-shadow: 0 0 40px rgba(29, 161, 242, 0.8);
}

.community-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    color: #000;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6); }
}

@keyframes socialPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes socialHover {
    0% { transform: scale(1.2) rotate(0deg); }
    100% { transform: scale(1.2) rotate(360deg); }
}

@keyframes xPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(29, 161, 242, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(29, 161, 242, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .meme-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        min-height: 150px;
        padding: 1.5rem;
    }
    
    .gallery-logo {
        width: 80px;
        height: 80px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .main-logo {
        width: 150px;
        height: 150px;
    }
    
    .pumpjak-hoodie {
        font-size: 1rem;
    }
    
    .floating-logo {
        width: 40px;
        height: 40px;
    }
    
    .social-btn {
        width: 180px;
        height: 50px;
        font-size: 0.6rem;
    }
    
    .x-community {
        width: 220px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .community-text {
        font-size: 0.6rem;
    }
    
    .contract-address {
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contract-label {
        font-size: 0.6rem;
    }
    
    .contract-text {
        font-size: 0.5rem;
    }
    
    .cto-badge {
        font-size: 0.5rem;
        padding: 0.2rem 0.6rem;
    }
    
    .cto-announcement {
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cto-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .meme-card {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .terminal {
        height: 300px;
    }
    
    .terminal-content {
        font-size: 0.6rem;
    }
    
    .main-logo {
        width: 120px;
        height: 120px;
    }
    
    .floating-logo {
        width: 30px;
        height: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        min-height: 120px;
        padding: 1rem;
    }
    
    .gallery-logo {
        width: 60px;
        height: 60px;
    }
    
    .caption {
        font-size: 1rem;
    }
    
    .social-btn {
        width: 160px;
        height: 45px;
        font-size: 0.5rem;
    }
    
    .x-community {
        width: 200px;
        height: 55px;
        font-size: 0.7rem;
    }
    
    .community-text {
        font-size: 0.5rem;
    }
    
    .contract-address {
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
    }
    
    .contract-label {
        font-size: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .contract-text {
        font-size: 0.4rem;
    }
    
    .cto-badge {
        font-size: 0.4rem;
        padding: 0.15rem 0.4rem;
    }
    
    .cto-announcement {
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
    }
    
    .cto-text {
        font-size: 0.6rem;
    }
}

/* Scroll Snap */
html {
    scroll-behavior: smooth;
}

body {
    scroll-snap-type: y mandatory;
}

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

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
} 