body {
    background-color: #1b5e20; /* Grass Green */
    font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

header {
    background: #000;
    padding: 20px;
    text-align: center;
    border-bottom: 5px solid #fff;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #ffeb3b; /* Yellow card color */
    text-shadow: 3px 3px 0 #d32f2f; /* Red card color */
    margin: 0;
}

h2 {
    color: #ffeb3b;
    border-bottom: 2px dashed #fff;
    padding-bottom: 10px;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0,0,0,0.8);
    border: 3px solid white;
    border-radius: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    color: black;
    padding: 15px;
    border: 5px solid #d32f2f;
    transform: rotate(-1deg);
    transition: transform 0.2s;
}

.card:hover {
    transform: rotate(2deg) scale(1.05);
    border-color: #ffeb3b;
}

.card img {
    width: 100%;
    height: auto;
    border: 2px solid #000;
}

.card h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.btn {
    display: block;
    background: #d32f2f;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}
.btn:hover {
    background: #b71c1c;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #ffeb3b;
    font-size: 1.2rem;
}

.ai-caption {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    font-style: italic;
    margin-top: 5px;
}

article p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.rude-box {
    background: #ffeb3b;
    color: black;
    padding: 10px;
    margin: 20px 0;
    font-weight: bold;
    border: 2px solid red;
    transform: rotate(1deg);
}
