body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: #fff;
}

header {
    text-align: center;
    padding: 20px;
    background: #ce1126;
    color: #000;
    font-weight: bold;
}

h1 {
    margin: 0;
    font-size: 28px;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 20px;
}

.containerVertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.card {
    background: #111;
    border: 2px solid #222;
    border-radius: 12px;
    padding: 15px;
    transition: 0.2s;
}

.card:hover {
    border-color: #007a3d;
    transform: translateY(-3px);
}

.day {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: bold;
}

.time {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.links a {
    display: block;
    text-decoration: none;
    color: #fff;
    background: #222;
    padding: 8px;
    margin: 5px 0;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s;
}

.links a:hover {
    background: #007a3d;
}

footer {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #888;
}

.footer-hook {
    margin-bottom: 10px;
    font-style: italic;
    color: #ccc;
}

.info-btn {
    background: none;
    border: 1px solid #444;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.info-btn:hover {
    background: #007a3d;
}

.hidden-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 10px;
    color: #aaa;
    font-size: 14px;
}

.hidden-info.open {
    max-height: 300px;
}


a:link {
color: green; /* Unvisited link */
}
a:visited {
color: yellow; /* Visited link */
}
a:hover {
color: white; /* Mouse over link */
}
a:active {
color: red; /* Selected link */
}


@media (max-width: 600px) {
    .container {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    .card {
        width: 100%;
        margin-bottom: 10px;
    }

    header h1 {
        font-size: 20px;
    }

    .day {
        font-size: 18px;
    }

    .links a {
        font-size: 16px;
        padding: 12px;
    }
}