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

/* NO SCROLL ANIMATIONS OR FANCY MECHANICS */
/* KILL ALL ANIMATIONS AND TRANSITIONS GLOBALLY */
*, *::before, *::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-delay: 0s !important;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #000;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #d4af37;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
        margin-right: 0;
        margin-left: auto;
    }
    
    .logo {
        margin-left: 0;
        margin-right: auto;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        margin: 8px 0;
        padding: 12px 20px;
        border-radius: 8px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
        width: 70%;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.4);
        transform: translateY(-1px);
    }
    
    .nav-link.active {
        padding: 12px 20px;
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.hero-logo-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.hero-logo-dollar {
    font-size: 60px;
    font-weight: 900;
    color: #000;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin: 0;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 20px 0 10px 0;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

.contract-address {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.contract-label {
    display: block;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 10px;
}

#contract-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    word-break: break-all;
    display: block;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contract-address:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Sections - NO FANCY MECHANICS */
.section {
    padding: 50px 20px;
    margin: 0;
    display: block;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
}

.section-alt {
    background: none;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 30px;
}

.section-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature p {
    color: #cccccc;
}

/* Tokenomics */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.tokenomics-item {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.tokenomics-item h3 {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tokenomics-item p {
    color: #cccccc;
    font-size: 16px;
    font-weight: 500;
}



/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

/* How to Buy Section */
.how-to-buy-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 0 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

.centered-step {
    text-align: center;
}

.centered-step h3 {
    text-align: center;
}

.centered-step p {
    text-align: center;
}

.link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link:hover {
    color: #f4d03f;
    text-decoration: underline;
}

.inline-contract {
    background: rgba(212, 175, 55, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    color: #d4af37;
    font-size: 14px;
    word-break: break-all;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        align-self: center;
    }
}

/* Chart Section */
.chart-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.chart-section .section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#dexscreener-embed {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Chart Community Section */
.chart-community {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.chart-community h3 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.chart-community p {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 16px;
}

.chart-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.chart-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.chart-social-link:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

.chart-social-link i {
    font-size: 16px;
}

/* Alt Coins Page Styles */
.coins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.coin-card {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coin-card:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.coin-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.1) 100%);
    border: 2px solid #d4af37;
    position: relative;
}

.coin-card.featured::before {
    content: '⭐ Featured';
    position: absolute;
    top: 10px;
    right: 15px;
    background: #d4af37;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

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

.coin-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    flex-shrink: 0;
}

.coin-info h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 4px;
}

.coin-symbol {
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.coin-price {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.coin-change {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.coin-change.positive {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.coin-change.negative {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

.market-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    margin: 0 20px;
}

.market-info h2 {
    color: #d4af37;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.market-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

.deposit-cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.deposit-cta h3 {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    padding: 8px 16px;
}

/* Responsive Design for Alt Coins */
@media (max-width: 768px) {
    .coins-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coin-card {
        padding: 20px;
    }
    
    .market-info {
        padding: 25px;
    }
    
    .coin-price {
        font-size: 20px;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 0;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.footer-content p {
    color: #888;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f4d03f;
}

.disclaimer {
    margin-top: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 800px;
}

.disclaimer p {
    color: #cccccc;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.disclaimer strong {
    color: #d4af37;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1001;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 70px rgba(212, 175, 55, 0.5);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .nav {
        margin-right: 0;
    }
    
    .hero {
        margin-top: 120px; /* Account for taller mobile header */
        min-height: calc(100vh - 120px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 30px 15px;
        margin: 0;
        position: static;
        display: block;
        background: none !important;
        width: 100%;
        box-shadow: none;
        border: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    /* Removed scroll padding to prevent overlap issues */
}
