/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Space+Grotesk:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background: #1a1a1a; /* Dark retro background */
    color: #f0f0f0;
}

/* Demo Banner */
.demo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 9999;
}

.demo-banner .close-banner {
    margin-left: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

/* Site Canvas */
.sitecanvas {
    width: 85%;
    max-width: 1100px;
    margin: 100px auto 50px auto;
    padding: 40px;
    border-radius: 16px;
    background: rgba(20,20,20,0.85);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Navigation */
.navigation nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 0;
    margin: 0 0 40px 0;
}

.navigation nav ul li a {
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    color: #00ffcc;
    font-size: 14px;
    transition: color 0.3s, text-shadow 0.3s;
}

.navigation nav ul li a:hover {
    color: #ff6f61;
    text-shadow: 1px 1px 2px #fff;
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 36px;
    margin-bottom: 20px;
    color: #00ffcc;
    text-shadow: 2px 2px 5px #ff6f61;
}

.hero p {
    font-size: 18px;
    color: #aaa;
}

/* Sections */
.section {
    margin: 60px 0;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    border-left: 6px solid #ff6f61;
    padding-left: 12px;
    text-shadow: 1px 1px 2px #000;
}

.section p {
    line-height: 1.7;
    font-size: 18px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.blog-item {
    background: rgba(0,0,0,0.6);
    border: 2px dashed #00ffcc;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0,255,204,0.5);
}

.blog-item a {
    text-decoration: none;
    color: #ff6f61;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-item a:hover {
    color: #00ffcc;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    text-align: center;
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
    color: #aaa;
}
