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

body {
    background-color: #222;
    color: #ccc;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.7;
}

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

/* Header */
header {
    background: #111;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #333;
    box-shadow: 0 3px 12px rgba(0,0,0,0.5);
}

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

header .logo {
    color: #ff008c;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

header .logo span {
    color: #00bf8f;
}

header nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

header nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

header nav a:hover,
header nav a.active {
    color: #ff008c;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a0030 0%, #0d0d0d 50%, #001a10 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 2px solid #333;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: #ff008c;
    font-weight: 100;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #00bf8f;
    max-width: 600px;
    margin: 0 auto;
}

/* Page content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    color: #ff008c;
    font-size: 2.2rem;
    font-weight: 100;
    margin-bottom: 20px;
}

h2 {
    color: #00bf8f;
    font-size: 1.5rem;
    font-weight: 100;
    margin: 30px 0 12px;
}

h3 {
    color: #ff008c;
    font-size: 1.2rem;
    font-weight: 100;
    margin-bottom: 8px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #ff008c;
    transition: color 0.2s;
}

a:hover {
    color: #00bf8f;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.card {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, border-color 0.2s;
    display: block;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #ff008c;
    box-shadow: 0 8px 24px rgba(255,0,140,0.15);
}

.card h3 {
    color: #ff008c;
    margin-bottom: 8px;
}

.card p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Content sections */
.content-section {
    background: #111;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #333;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-section ul li {
    padding: 4px 0;
    color: #aaa;
}

/* Dont items */
.dont-item {
    background: #111;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #ff008c;
}

.dont-item .dont-label {
    color: #ff008c;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.dont-item .actually {
    color: #00bf8f;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 8px;
}

/* FAQ */
.faq-item {
    background: #111;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.faq-item .question {
    color: #ff008c;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.faq-item .answer {
    color: #aaa;
}

/* Testimonials */
.testimonial {
    background: #111;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #333;
    position: relative;
}

.testimonial::before {
    content: """;
    font-size: 4rem;
    color: #333;
    position: absolute;
    top: 5px;
    left: 15px;
    line-height: 1;
}

.testimonial .quote {
    padding-left: 40px;
    font-style: italic;
    color: #aaa;
    margin-bottom: 10px;
}

.testimonial .attribution {
    padding-left: 40px;
    color: #ff008c;
    font-size: 0.9rem;
}

/* Accent text */
.text-accent {
    color: #00bf8f;
}

.text-pink {
    color: #ff008c;
}

/* SVG illustrations */
.illustration {
    display: block;
    max-width: 300px;
    margin: 20px auto;
}

/* CTA button */
.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    color: #4300b7;
    font-weight: 700;
    text-decoration: none;
    background-color: #ff008c;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    box-shadow: 8px 10px 0.8rem #000000b8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: rotate(2deg) translateY(-3px);
    box-shadow: 16px 20px 1.2rem #000000ef;
    color: #4300b7;
}

/* Footer */
footer {
    background: #111;
    border-top: 2px solid #333;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    color: #555;
    font-size: 0.9rem;
}

footer a {
    color: #ff008c;
    text-decoration: none;
}

footer a:hover {
    color: #00bf8f;
}

/* Responsive */
@media (max-width: 600px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    header nav {
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
