body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0b0b1e;
    color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
    text-align: center;
}

a {
    color: #ffcc00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background-color: #1a1a2e;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 22px;
    font-weight: bold;
    color: #ffcc00;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #ffcc00;
    margin: 4px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 20px;
}

nav a {
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #00ffcc;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #1a1a2e;
        position: absolute;
        top: 60px;
        right: 0;
        width: 220px;
        border-left: 2px solid #ffcc00;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: flex;
    }
}

section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3 {
    margin-bottom: 15px;
    color: #ffcc00;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; color: #00ffcc; }
h3 { font-size: 20px; color: #ff66cc; }

p { margin-bottom: 15px; }

.btn {
    display: inline-block;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    color: #0b0b1e;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 13px;
}

.btn:hover {
    background: linear-gradient(90deg, #ff9900, #ffcc00);
    transform: scale(1.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    font-size: 13px;
}

th, td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #333;
}

th {
    background-color: #ffcc00;
    color: #0b0b1e;
}

td {
    background-color: #222244;
}

tr:hover td {
    background-color: #333366;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.slot-card {
    background-color: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 10px #ffcc00;
    transition: transform 0.3s, box-shadow 0.3s;
}

.slot-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ffcc;
}

.slot-card img {
    width: 100%;
    border-bottom: 2px solid #ffcc00;
}

footer {
    background-color: #1a1a2e;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 2px solid #ffcc00;
    font-size: 12px;
}