:root {
    --primary-color: #FF0055;
    /* Rad Red */
    --secondary-color: #00FFCC;
    /* Electric Teal */
    --accent-color: #FFFF00;
    /* Neon Yellow */
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --card-bg: #2a2a2a;
    --font-heading: 'Press Start 2P', cursive;
    --font-body: 'VT323', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 50%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
}

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

/* Header */
header {
    padding: 20px 0;
    border-bottom: 4px solid var(--secondary-color);
    background: #000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    border: 2px solid var(--accent-color);
    box-shadow: 4px 4px 0 var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-right: 20px;
}

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

.social-icon {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid var(--secondary-color);
    padding: 5px 10px;
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: #000;
    box-shadow: 2px 2px 0 var(--primary-color);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--accent-color);
    text-shadow: 2px 2px 0 var(--primary-color);
}

/* Buttons */
.btn-retro {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    border: 2px solid #fff;
    box-shadow: 4px 4px 0 #000;
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-retro:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000;
}

.btn-secondary {
    background: var(--secondary-color);
    color: #000;
}

/* Hero Section */
#hero {
    padding: 80px 0;
    background: url('collage.jpg') no-repeat center center/cover;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

#hero .container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    text-shadow: 4px 4px 0 var(--primary-color);
    margin-bottom: 20px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cta-group {
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--secondary-color);
    padding: 15px;
    box-shadow: 4px 4px 0 var(--primary-color);
}

.stat-box span {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
}

.stat-box strong {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.hero-image {
    flex: 1;
    display: none;
    /* Hidden on mobile, shown on desktop */
}

@media (min-width: 768px) {
    .hero-image {
        display: block;
    }

    .hero-image img {
        width: 100%;
        border: 4px solid #fff;
        box-shadow: 8px 8px 0 var(--primary-color);
        transform: rotate(-5deg);
    }
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* About */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.text-block {
    background: var(--card-bg);
    padding: 30px;
    border: 2px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--secondary-color);
}

.image-block img {
    width: 100%;
    border: 2px solid var(--accent-color);
    box-shadow: -6px 6px 0 var(--primary-color);
}

/* Tokenomics */
.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.token-card {
    background: var(--card-bg);
    padding: 20px;
    border: 2px solid var(--secondary-color);
    text-align: center;
    transition: transform 0.3s;
}

.token-card:hover {
    transform: translateY(-10px);
    background: var(--secondary-color);
    color: #000;
}

.token-card h3 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.percentage {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.token-card:hover .percentage {
    color: #fff;
}

/* How to Buy */
.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .steps {
        flex-direction: row;
    }
}

.step {
    flex: 1;
    background: var(--card-bg);
    padding: 30px;
    border: 2px solid #fff;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: #000;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}

.step h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: 1rem;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

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

.socials a {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    text-decoration: none;
}

.socials a:hover {
    color: var(--accent-color);
}