body {
    background: linear-gradient(135deg, rgba(0, 134, 196, 0.33), rgba(157, 0, 255, 0.4)), url('../bg0.jpg');
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    padding-top: 20px;
    font-family: "Kalam", cursive;
    font-weight: 400;
    font-style: normal;
    color: rgb(0, 204, 255);
}

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

.stories-title {
    text-align: center;
    color: white;
    font-size: 3em;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px #F1E9E9;
    letter-spacing: 2px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.story-card {
    background: linear-gradient(135deg, #1a1f3a, #243447);
    border: 3px solid #00d4ff;
    /* border-radius: 15px; */
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 212, 255, 0.4);
    border-color: #00ffff;
}

.story-title {
    color: #e0e0e0;
    font-size: 1.5em;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.story-excerpt {
    color: #00d9d9;
    font-size: 1em;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.story-date {
    color: #00d4ff;
    font-size: 0.9em;
    font-style: italic;
    margin: 0 0 15px 0;
}

.read-more {
    display: inline-block;
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    background-color: rgba(0, 212, 255, 0.1);
    /* border-radius: 5px; */
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
}

.box {
    background-color: #1a1f3a;
    padding: 10px;
    border: 5px solid #00d4ff;
    width: 900px;
    margin: 0 auto;
    white-space: pre-wrap;
}

.button {
    align-items: center;
    background-color: #243447;
    border: 3px solid #00d4ff;
    color: #e0e0e0;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    transition: all 0.3s ease;

}

.button:hover {
    align-items: center;
    background-color: #244347;
    border: 3px solid #0098a9;
    color: #e0e0e0;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(-8px) translateX(-8px);
    box-shadow: 0 12px 24px rgba(0, 212, 255, 0.4);
}

.nav-buttons {
    text-align: center;
    margin-top: 20px;
}

footer {
    text-align: center;
    color: white;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #fb00ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
