/* AIWP v0.1 - Fictive Reality Theme */

/* style.css */
/* ------------------- */
/* Theme Name: AIWP v0.1
   Theme URI: https://ai01.altervista.org
   Author: Agent O1 & Eki
   Version: 0.1
   Description: Cyber/Neon WordPress Theme for Fictive Reality & AI&I Story Framework
*/

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0b0c10;
    color: #c5c6c7;
}

header {
    background-color: #1f2833;
    padding: 20px;
    text-align: center;
    font-size: 2rem;
    color: #66fcf1;
    text-shadow: 0 0 10px #45a29e;
}

main {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: center;
}

article {
    background-color: #1f2833;
    margin: 10px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px #45a29e;
    flex: 1 1 400px;
    min-width: 300px;
}

footer {
    background-color: #0b0c10;
    padding: 10px;
    text-align: center;
    color: #45a29e;
    font-size: 0.9rem;
    border-top: 1px solid #45a29e;
}

/* iFrame Embed Section */
.agent-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 15px #66fcf1;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 10px #45a29e; }
    50% { box-shadow: 0 0 30px #66fcf1; }
    100% { box-shadow: 0 0 10px #45a29e; }
}

article, .agent-embed {
    animation: pulse 3s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    header { font-size: 1.5rem; }
    article { flex: 1 1 90%; }
}
