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

/* Pixelated Header Bar */
.pixel-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-bottom: 4px solid #87ceeb;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Logo */
.logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: auto;
    z-index: 1001;
}

.pixel-nav {
    display: flex;
    gap: 20px;
}

.pixel-nav-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #FFFFFF;
    border: 3px solid #87ceeb;
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-shadow: 
        inset 2px 2px 0px rgba(255, 255, 255, 0.2),
        inset -2px -2px 0px rgba(0, 0, 0, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.4);
}

.pixel-nav-btn:hover {
    background: linear-gradient(135deg, #87ceeb 0%, #3b82f6 100%);
    color: #FFFFFF;
    border-color: #add8e6;
    transform: translateY(-1px);
    box-shadow: 
        inset 2px 2px 0px rgba(255, 255, 255, 0.3),
        inset -2px -2px 0px rgba(0, 0, 0, 0.4),
        3px 3px 6px rgba(0, 0, 0, 0.5);
}

.pixel-nav-btn:active {
    transform: translateY(1px);
    box-shadow: 
        inset 2px 2px 0px rgba(0, 0, 0, 0.3),
        inset -2px -2px 0px rgba(255, 255, 255, 0.2),
        1px 1px 2px rgba(0, 0, 0, 0.3);
}

html, body {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    line-height: 1.8;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Main Scroll Container */
.scroll-container {
    width: 1500px;
    height: 2000px;
    background: url('White chicks/Only Chicks background.png') top center no-repeat;
    background-size: 1520px 2000px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

/* Section Layout */
.section {
    width: 100%;
    max-width: 1500px;
    padding: 40px 60px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.section-content {
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

/* Hero Section (Top) */
.hero-section {
    margin-top: 120px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-subtitle {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    color: #87ceeb;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0px #1d4ed8, -2px -2px 0px #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 10.5rem;
    margin-left: -0.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    padding: 15px 30px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid;
    min-width: 120px;
    box-shadow: 
        inset 3px 3px 0px rgba(255, 255, 255, 0.2),
        inset -3px -3px 0px rgba(0, 0, 0, 0.3),
        3px 3px 6px rgba(0, 0, 0, 0.5);
}

.btn-buy {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #FFFFFF;
    border-color: #87ceeb;
    text-shadow: 2px 2px 0px #1e40af;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #87ceeb 0%, #3b82f6 100%);
    border-color: #add8e6;
    transform: translateY(-2px);
    box-shadow: 
        inset 3px 3px 0px rgba(255, 255, 255, 0.3),
        inset -3px -3px 0px rgba(0, 0, 0, 0.4),
        4px 4px 8px rgba(0, 0, 0, 0.6);
}

.btn-buy:active {
    transform: translateY(1px);
    box-shadow: 
        inset 3px 3px 0px rgba(0, 0, 0, 0.3),
        inset -3px -3px 0px rgba(255, 255, 255, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-ca {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    color: #1d4ed8;
    border-color: #3b82f6;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

.btn-ca:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: #1d4ed8;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 
        inset 3px 3px 0px rgba(255, 255, 255, 0.3),
        inset -3px -3px 0px rgba(0, 0, 0, 0.4),
        4px 4px 8px rgba(0, 0, 0, 0.6);
}

.btn-ca:active {
    transform: translateY(1px);
    box-shadow: 
        inset 3px 3px 0px rgba(0, 0, 0, 0.3),
        inset -3px -3px 0px rgba(255, 255, 255, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* About Section (Lower) */
.about-section {
    margin-top: 100px;
    min-height: 350px;
}

.about-content {
    font-family: 'Press Start 2P', monospace;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 35px 30px;
    border-radius: 0;
    border: 4px solid #87ceeb;
    box-shadow: 
        inset 3px 3px 0px rgba(255, 255, 255, 0.2),
        inset -3px -3px 0px rgba(0, 0, 0, 0.3),
        4px 4px 8px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
}

.lead {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    line-height: 2;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 1px 1px 0px #1e40af;
}

/* Community Section (Bottom) */
.community-section {
    margin-top: 50px;
    min-height: 250px;
    margin-bottom: 150px;
}

.community-text {
    font-size: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 1.5rem;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: 3px solid #87ceeb;
    border-radius: 0;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 
        inset 3px 3px 0px rgba(255, 255, 255, 0.2),
        inset -3px -3px 0px rgba(0, 0, 0, 0.3),
        3px 3px 6px rgba(0, 0, 0, 0.5);
    min-width: 140px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    background: linear-gradient(135deg, #87ceeb 0%, #3b82f6 100%);
    border-color: #add8e6;
    transform: translateY(-2px);
    box-shadow: 
        inset 3px 3px 0px rgba(255, 255, 255, 0.3),
        inset -3px -3px 0px rgba(0, 0, 0, 0.4),
        4px 4px 8px rgba(0, 0, 0, 0.6);
}

.social-btn:active {
    transform: translateY(1px);
    box-shadow: 
        inset 3px 3px 0px rgba(0, 0, 0, 0.3),
        inset -3px -3px 0px rgba(255, 255, 255, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.4);
}

.social-logo {
    height: 100px;
    width: auto;
    filter: brightness(1.1);
    transition: filter 0.2s ease;
}

.social-btn:hover .social-logo {
    filter: brightness(1.3);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #87ceeb;
    text-shadow: 3px 3px 0px #3b82f6, -2px -2px 0px #3b82f6, 2px -2px 0px #3b82f6, -2px 2px 0px #3b82f6;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pixelated Main Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Press Start 2P', monospace;
    padding: 20px 40px;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid;
    min-width: 250px;
    box-shadow: 
        inset 4px 4px 0px rgba(255, 255, 255, 0.2),
        inset -4px -4px 0px rgba(0, 0, 0, 0.3),
        4px 4px 8px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #FFFFFF;
    border-color: #87ceeb;
    text-shadow: 2px 2px 0px #1e40af;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #87ceeb 0%, #3b82f6 100%);
    border-color: #add8e6;
    transform: translateY(-2px);
    box-shadow: 
        inset 4px 4px 0px rgba(255, 255, 255, 0.3),
        inset -4px -4px 0px rgba(0, 0, 0, 0.4),
        6px 6px 12px rgba(0, 0, 0, 0.6);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 
        inset 4px 4px 0px rgba(0, 0, 0, 0.3),
        inset -4px -4px 0px rgba(255, 255, 255, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    color: #1d4ed8;
    border-color: #3b82f6;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: #1d4ed8;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 
        inset 4px 4px 0px rgba(255, 255, 255, 0.3),
        inset -4px -4px 0px rgba(0, 0, 0, 0.4),
        6px 6px 12px rgba(0, 0, 0, 0.6);
}

.btn-secondary:active {
    transform: translateY(2px);
    box-shadow: 
        inset 4px 4px 0px rgba(0, 0, 0, 0.3),
        inset -4px -4px 0px rgba(255, 255, 255, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 10px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification.hidden {
    display: none;
}

/* Fixed Layout - No Responsive Design */
/* Website maintains exact 1500px × 2000px dimensions at all times */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Selection Colors */
::selection {
    background: #3b82f6;
    color: #FFFFFF;
}

::-moz-selection {
    background: #3b82f6;
    color: #FFFFFF;
}
