/* Google Fonts Import for cross-platform compatibility */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Image Protection - Disable right-click context menu */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-context-menu: none;
    pointer-events: auto;
}

img::-moz-selection {
    background: transparent;
}

img::selection {
    background: transparent;
}

/* Marquee Styles */
.marquee-container {
    width: calc(100% - 80px);
    height: 80px;
    background: linear-gradient(135deg, #f8b844 0%, #ffd700 50%, #f8b844 100%);
    color: #000000;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    z-index: 100;
    margin: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border: 4px solid #000000;
    border-left: none;
    border-right: none;
    box-shadow: 0 4px 0px #000000;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    z-index: -1;
}

.marquee-container::before {
    left: -40px;
    border-top: 40px solid #e6a73a;
    border-bottom: 40px solid #d4941f;
    border-left: 40px solid transparent;
    border-right: 4px solid #000000;
    filter: drop-shadow(-3px 0 4px rgba(0,0,0,0.4)) drop-shadow(-1px 0 1px rgba(0,0,0,0.2));
    transform: perspective(100px) rotateY(-15deg);
}

.marquee-container::after {
    right: -40px;
    border-top: 40px solid #e6a73a;
    border-bottom: 40px solid #d4941f;
    border-right: 40px solid transparent;
    border-left: 4px solid #000000;
    filter: drop-shadow(3px 0 4px rgba(0,0,0,0.4)) drop-shadow(1px 0 1px rgba(0,0,0,0.2));
    transform: perspective(100px) rotateY(15deg);
}

.marquee-container:hover {
    background: linear-gradient(135deg, #e6a73a 0%, #ffcc00 50%, #e6a73a 100%);
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 0 6px 0px #000000;
}

.marquee-container:hover::before {
    border-top-color: #ffcc00;
    border-bottom-color: #cc8800;
    filter: drop-shadow(-4px 0 6px rgba(0,0,0,0.5)) drop-shadow(-2px 0 2px rgba(0,0,0,0.3));
    transform: perspective(100px) rotateY(-20deg);
}

.marquee-container:hover::after {
    border-top-color: #ffcc00;
    border-bottom-color: #cc8800;
    filter: drop-shadow(4px 0 6px rgba(0,0,0,0.5)) drop-shadow(2px 0 2px rgba(0,0,0,0.3));
    transform: perspective(100px) rotateY(20deg);
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    text-shadow: 2px 2px 0px rgba(255,255,255,0.8);
}

.x-logo {
    margin-right: 15px;
    color: #000000;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 0px rgba(255,255,255,0.8));
}

.marquee-container:hover .x-logo {
    color: #000000;
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(3px 3px 0px rgba(255,255,255,0.9));
}

.marquee-text {
    padding: 0 60px;
    transition: all 0.3s ease;
    position: relative;
}

.marquee-text::before {
    content: '🚀';
    position: absolute;
    left: 20px;
    animation: bounce 2s infinite;
}

.marquee-text::after {
    content: '🚀';
    position: absolute;
    right: 20px;
    animation: bounce 2s infinite 1s;
}

.marquee-container:hover .marquee-text {
    color: #000000;
    transform: scale(1.05);
    text-shadow: 3px 3px 0px rgba(255,255,255,0.9);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

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

/* Responsive Marquee */
@media (max-width: 768px) {
    .marquee-container {
        width: calc(100% - 60px);
        height: 70px;
        margin: 0 30px;
        transform: rotate(-0.3deg);
    }
    
    .marquee-container::before {
        left: -30px;
        border-top: 35px solid #e6a73a;
        border-bottom: 35px solid #d4941f;
        border-left: 30px solid transparent;
        border-right: 3px solid #000000;
        filter: drop-shadow(-2px 0 3px rgba(0,0,0,0.4)) drop-shadow(-1px 0 1px rgba(0,0,0,0.2));
        transform: perspective(80px) rotateY(-12deg);
    }
    
    .marquee-container::after {
        right: -30px;
        border-top: 35px solid #e6a73a;
        border-bottom: 35px solid #d4941f;
        border-right: 30px solid transparent;
        border-left: 3px solid #000000;
        filter: drop-shadow(2px 0 3px rgba(0,0,0,0.4)) drop-shadow(1px 0 1px rgba(0,0,0,0.2));
        transform: perspective(80px) rotateY(12deg);
    }
    
    .marquee-container:hover {
        transform: rotate(0deg) translateY(-1px);
        box-shadow: 0 4px 0px #000000;
    }
    
    .marquee-container:hover::before {
        border-top-color: #ffcc00;
        border-bottom-color: #cc8800;
        filter: drop-shadow(-3px 0 4px rgba(0,0,0,0.5)) drop-shadow(-1px 0 1px rgba(0,0,0,0.3));
        transform: perspective(80px) rotateY(-15deg);
    }
    
    .marquee-container:hover::after {
        border-top-color: #ffcc00;
        border-bottom-color: #cc8800;
        filter: drop-shadow(3px 0 4px rgba(0,0,0,0.5)) drop-shadow(1px 0 1px rgba(0,0,0,0.3));
        transform: perspective(80px) rotateY(15deg);
    }
    
    .marquee-content {
        font-size: 1.1rem;
        letter-spacing: 2px;
        animation: marqueeScroll 18s linear infinite;
    }
    
    .marquee-text {
        padding: 0 40px;
    }
    
    .marquee-text::before,
    .marquee-text::after {
        font-size: 0.9rem;
    }
    
    .x-logo {
        margin-right: 12px;
    }
}

/* Footer Styles */
.footer {
    background: #ffffff;
    color: #000000;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #000000;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

.footer-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000000;
    border-bottom: 2px solid #000000;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333333;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: #000000;
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    transform: rotate(-2deg);
    box-shadow: 3px 3px 0px #000;
}

.social-link:hover {
    background: #f8b844;
    color: #000000;
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 4px 4px 0px #000;
}

.footer-x-logo {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-link:hover .footer-x-logo {
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #000000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.footer-link:hover {
    color: #000000;
    padding-left: 25px;
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contract {
    background: rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.contract-label {
    font-size: 0.9rem;
    color: #333333;
    margin-bottom: 10px;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.1);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.address-short {
    font-family: 'JetBrains Mono', 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    color: #000000;
    flex: 1;
}

.footer-copy-btn {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #000000;
    color: #000000;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-copy-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #000000;
}

.footer-copyright {
    color: #333333;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-address {
        flex-direction: column;
        text-align: center;
    }
    
    .address-short {
        font-size: 0.8rem;
    }
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 3px solid #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo .doodle-text {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    transform: rotate(-2deg);
}

/* Remove dots from navbar menu items and logo */
.nav-link.doodle-text::after,
.nav-logo .doodle-text::after {
    display: none;
}

/* Live Stats Button Flickering Animation */
@keyframes flicker {
    0%, 100% { 
        background-color: transparent;
        color: #f8b844;
        border-color: #f8b844;
        box-shadow: 3px 3px 0px #f8b844;
    }
    25% { 
        background-color: transparent;
        color: #ffd700;
        border-color: #ffd700;
        box-shadow: 3px 3px 0px #ffd700;
    }
    50% { 
        background-color: transparent;
        color: #f8b844;
        border-color: #f8b844;
        box-shadow: 3px 3px 0px #f8b844;
    }
    75% { 
        background-color: transparent;
        color: #ffd700;
        border-color: #ffd700;
        box-shadow: 3px 3px 0px #ffd700;
    }
}

/* Apply flickering to Live Stats nav link */
.nav-link[href="#live-stats"] {
    animation: flicker 2s infinite;
    background-color: transparent;
    color: #f8b844;
    border: 3px solid #f8b844;
    font-weight: bold;
    box-shadow: 3px 3px 0px #f8b844;
    border-radius: 20px;
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    font-size: 16px;
    padding: 10px 18px;
    transform: rotate(-1deg);
}

.nav-link[href="#live-stats"]:hover {
    animation: none;
    background-color: #f8b844;
    color: #000;
    border: 3px solid #000;
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 4px 4px 0px #000;
}

/* Market Cap Display in Navbar */
.nav-market-cap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.market-cap-value {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
}

.market-cap-change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
}

.market-cap-change.positive {
    background-color: #27ae60;
    color: white;
}

.market-cap-change.negative {
    background-color: #e74c3c;
    color: white;
}

.market-cap-change.neutral {
    background-color: #95a5a6;
    color: white;
}

/* Doodle text styling */
.doodle-text {
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    position: relative;
    display: inline-block;
}

.doodle-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #000 0px,
        #000 3px,
        transparent 3px,
        transparent 6px
    );
    transform: rotate(-1deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .nav-market-cap {
        align-items: center;
        margin-top: 10px;
    }
    
    .market-cap-value {
        font-size: 14px;
    }
    
    .market-cap-change {
        font-size: 11px;
        padding: 1px 6px;
    }
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: #ffffff;
    padding: 60px 20px 20px;
}

.hero-content {
    text-align: center;
    max-width: 1400px;
    width: 100%;
}

.hero-gif {
    max-width: 95%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* Desktop and Mobile Hero Sections */
.desktop-hero {
    display: block;
}

.mobile-hero {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.mobile-hero-text {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}

.mobile-hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

/* Hero Action Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border: 3px solid #000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 140px;
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.hero-btn:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 6px 6px 0px #000;
}

.pump-btn {
    background: #f8b844;
    color: #000;
    transform: rotate(-1deg);
    box-shadow: 4px 4px 0px #000;
}

.pump-btn:hover {
    background: #e6a73a;
    color: #000;
}

.dex-btn {
    background: #ffffff;
    color: #000;
    border: 3px dashed #000;
    transform: rotate(1deg);
    box-shadow: 4px 4px 0px #000;
}

.dex-btn:hover {
    background: #f9f9f9;
    color: #000;
}

/* About Section */
.about {
    padding: 0 20px 80px 20px;
    background-color: #ffffff;
    border-top: 3px solid #000;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-title {
    font-size: 36px;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    text-align: justify;
}

.contract-address {
    margin-top: 30px;
    padding: 20px;
    border: 3px solid #000;
    border-radius: 15px;
    background-color: #f9f9f9;
    transform: rotate(-1deg);
}

.contract-title {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.address-text {
    font-family: 'JetBrains Mono', 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    font-weight: bold;
    background-color: #fff;
    padding: 8px 12px;
    border: 2px solid #000;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    word-break: break-all;
}

.copy-btn {
    background-color: #f8b844;
    color: #000;
    border: 3px solid #000;
    padding: 8px 16px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    transform: rotate(-1deg);
    box-shadow: 3px 3px 0px #000;
}

.copy-btn:hover {
    background-color: #e6a73a;
    color: #000;
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 4px 4px 0px #000;
}

.copy-feedback {
    font-size: 12px;
    color: #000;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    display: block;
}

.copy-feedback.show {
    opacity: 1;
}

.about-image {
    text-align: center;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.golden-man-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px #000;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.warning-badge {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    border: 3px solid #000;
    box-shadow: 3px 3px 0px #000, inset 0 1px 0 rgba(255,255,255,0.3);
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(-3deg);
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.warning-text {
    display: block;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-3deg) scale(1);
    }
    50% {
        transform: rotate(-3deg) scale(1.05);
    }
}

/* Mobile responsive styles for warning badge */
@media (max-width: 768px) {
    .warning-badge {
        margin-top: 12px;
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 15px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0px #000, inset 0 1px 0 rgba(255,255,255,0.3);
        transform: rotate(-2deg);
    }
    
    .warning-text {
        font-size: 10px;
    }
}

.golden-man-img:hover {
    transform: rotate(-1deg) scale(1.05);
}

/* Live Stats Section */
.live-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.live-stats .features-title {
    margin-left: 120px;
}



.live-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23f8b844" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23f8b844" opacity="0.2"/><circle cx="60" cy="80" r="1" fill="%23f8b844" opacity="0.4"/></svg>');
    pointer-events: none;
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #000000;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(248, 184, 68, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.ticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #f8b844;
}

.ticker-symbol .symbol {
    font-size: 28px;
    font-weight: bold;
    color: #f8b844;
    margin-right: 10px;
}

.ticker-symbol .name {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chain-badge {
    background: #f8b844;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.refresh-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8b844;
    border: 3px solid #000;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    transform: rotate(-2deg);
    box-shadow: 3px 3px 0px #000;
}

.refresh-btn:hover {
    background: #e6a73a;
    color: #000;
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 4px 4px 0px #000;
}

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

.refresh-btn.refreshing {
    animation: spin 1s linear infinite;
}

.refresh-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:hover {
    border-color: #f8b844;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(248, 184, 68, 0.2);
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-change {
    font-size: 12px;
    font-weight: 500;
}

.stat-change.positive {
    color: #27ae60;
}

.stat-change.negative {
    color: #e74c3c;
}


.stats-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #f8b844;
}

.last-updated {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.stats-btn {
    background: #f8b844;
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 3px solid #000;
    font-family: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    transform: rotate(-1deg);
    box-shadow: 4px 4px 0px #000;
    display: inline-block;
}

.stats-btn:hover {
    background: #e6a73a;
    color: #000;
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 6px 6px 0px #000;
}

.last-updated {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Chart Section */
.chart-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed #f8b844;
}

.chart-header {
    margin-bottom: 20px;
    text-align: center;
}

.chart-title {
    font-size: 24px;
    color: #2c3e50;
    margin: 0;
    font-weight: bold;
}

/* DexScreener Embed Styles */
#dexscreener-embed {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #f8b844;
    box-shadow: 0 5px 20px rgba(248, 184, 68, 0.2);
    background: #f8f9fa;
}

@media(min-width: 1400px) {
    #dexscreener-embed {
        padding-bottom: 65%;
    }
}

#dexscreener-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
    border-radius: 12px;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #fff;
    border-top: 5px solid #000;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        #000 0px,
        #000 20px,
        transparent 20px,
        transparent 40px
    );
}

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

.features-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    transform: rotate(-2deg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(1deg);
}

.feature-card:nth-child(even) {
    transform: rotate(-1deg);
}

.feature-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 8px 8px 0px #000;
    background-color: #f9f9f9;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon {
    filter: grayscale(0%);
}

.feature-title {
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Add some visual variety to cards */
.feature-card:nth-child(3n+1) {
    border-style: dashed;
}

.feature-card:nth-child(3n+2) {
    border-width: 4px;
}

.feature-card:nth-child(3n+3) {
    border-radius: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 10px;
    }
    
    .hero-gif {
        max-width: 95%;
    }
    
    .about {
        padding: 60px 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .about-title {
        font-size: 28px;
        text-align: center;
    }
    
    .about-description {
        font-size: 16px;
        text-align: center;
    }
    
    .contract-address {
        transform: rotate(0deg);
        margin-top: 20px;
        padding: 15px;
        min-width: auto;
        width: 100%;
    }
    
    .contract-title {
        font-size: 18px;
    }
    
    .address-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .address-text {
         font-size: 12px;
         min-width: auto;
         width: 100%;
     }
     
     .features {
         padding: 40px 15px;
     }
     
     .features-title {
         font-size: 36px;
         margin-bottom: 40px;
         transform: rotate(0deg);
     }
     
     .features-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }
     
     .feature-card {
         transform: rotate(0deg);
         padding: 25px 20px;
     }
     
     .feature-card:nth-child(even) {
         transform: rotate(0deg);
     }
     
     .feature-card:hover {
         transform: scale(1.02);
     }
     
     .feature-icon {
         font-size: 36px;
         margin-bottom: 15px;
     }
     
     .feature-title {
         font-size: 20px;
     }
     
     .feature-description {
         font-size: 15px;
     }
     
     /* Mobile Hero Section */
     .desktop-hero {
         display: none;
     }
     
     .mobile-hero {
         display: flex;
     }
     
     .hero-content {
         max-width: 100%;
     }
     
     /* Hero Buttons Mobile */
     .hero-buttons {
         gap: 15px;
         margin-top: 20px;
         margin-bottom: 40px;
         flex-direction: column;
         align-items: center;
     }
     
     .hero-btn {
         padding: 12px 25px;
         font-size: 14px;
         width: 80%;
         text-align: center;
     }
     
     /* Live Stats Mobile */
     .live-stats {
         padding: 40px 0;
     }
     
     .live-stats .features-title {
         margin-left: 0;
         text-align: center;
         margin-bottom: 30px;
         padding: 0 20px;
     }
     
     .stats-card {
         padding: 20px;
         margin: 0 15px;
     }
     
     .ticker-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-actions {
        justify-content: center;
        gap: 15px;
    }
    
    .refresh-btn {
        width: 32px;
        height: 32px;
    }
    
    .refresh-icon {
        width: 14px;
        height: 14px;
    }
     
     .ticker-symbol .symbol {
         font-size: 24px;
     }
     
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
     }
     
     .stat-item {
         padding: 15px;
     }
     
     .stat-value {
        font-size: 20px;
    }
    

     
     .stats-actions {
         flex-direction: column;
         gap: 15px;
     }
     
     .last-updated {
         font-size: 11px;
         text-align: center;
     }
     
     .stats-btn {
         width: 100%;
         padding: 15px;
     }
     
     /* Chart Mobile */
     .chart-section {
         margin-top: 25px;
         padding-top: 20px;
     }
     
     .chart-title {
         font-size: 20px;
         margin-bottom: 15px;
     }
     
     #dexscreener-embed {
         border-width: 2px;
         border-radius: 12px;
         padding-bottom: 140%;
     }
 }

@media (max-width: 480px) {
    .hero {
        padding: 5px;
    }
    
    .about {
        padding: 40px 15px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 15px;
    }
}
