/* styles2.css - Dark Theme with Neon Accents */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 16px;
}

header {
    background: #000000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #00A3FF;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 45px;
}

.header-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-btns {
    display: flex;
    gap: 18px;
}

.btn-red {
    background: #00A3FF;
    color: #000000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0,163,255,0.5);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.btn-red:hover {
    box-shadow: 0 0 35px rgba(0,163,255,0.8);
    background: #00b8ff;
}

.btn-outline {
    background: transparent;
    color: #00A3FF;
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid #00A3FF;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #00A3FF;
    color: #000000;
    box-shadow: 0 0 20px rgba(0,163,255,0.6);
}

.promo-box {
    background: rgba(0,41,217,0.3);
    color: #00A3FF;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #00A3FF;
    font-family: monospace;
}

.promo-box strong {
    color: #ffffff;
    text-shadow: 0 0 10px #00A3FF;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0,163,255,0.5);
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: #00A3FF;
    margin: 55px 0 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 3px solid #0029D9;
    padding-bottom: 12px;
}

p {
    margin-bottom: 25px;
    color: #c0c0c0;
}

.hero-img {
    margin: 40px 0;
    border: 3px solid #00A3FF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,163,255,0.3);
}

.hero-img img {
    width: 100%;
    display: block;
}

.update-date {
    background: rgba(0,163,255,0.1);
    border: 1px solid #00A3FF;
    padding: 18px 22px;
    margin: 35px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 6px;
}

.update-icon {
    font-size: 24px;
    color: #00A3FF;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: #1a1a1a;
    border: 2px solid #00A3FF;
}

th {
    background: #0029D9;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

td {
    padding: 14px 15px;
    border-bottom: 1px solid #333333;
    color: #e0e0e0;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: rgba(0,163,255,0.05);
}

ol, ul {
    margin: 28px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 12px;
    color: #c0c0c0;
}

footer {
    background: #000000;
    color: #00A3FF;
    text-align: center;
    padding: 30px;
    font-size: 13px;
    border-top: 2px solid #00A3FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    h1 { font-size: 32px; }
    header { flex-direction: column; }
}
