* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top right, #1a2744 0%, #0a1628 50%, #152238 100%);
    color: #e0e6ed;
    line-height: 1.6;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 163, 255, 0.5));
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(0, 194, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 183, 3, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: wave 20s ease-in-out infinite;
    pointer-events: none;
}

header {
    background: linear-gradient(135deg, rgba(21, 34, 56, 0.95) 0%, rgba(13, 24, 41, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0;
    border-bottom: 1px solid rgba(0, 194, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 50px;
}

.logo-text {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, #00c2ff 0%, #7886c7 50%, #ffb703 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    font-family: 'Impact', sans-serif;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btns {
    display: flex;
    gap: 12px;
}

.btn-red, .btn-outline {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-red {
    background: linear-gradient(135deg, #00c2ff 0%, #0094cc 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
}

.btn-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-red:hover::before {
    left: 100%;
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 194, 255, 0.6);
}

.btn-outline {
    background: linear-gradient(135deg, #7886c7 0%, #5b6aa0 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(120, 134, 199, 0.4);
}

.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(120, 134, 199, 0.6);
}

.promo-box {
    background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
    padding: 14px 30px;
    border-radius: 30px;
    color: #0a1628;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.4);
    transition: all 0.4s;
}

.promo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 183, 3, 0.6);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 40px;
}

h1 {
    font-size: 60px;
    background: linear-gradient(135deg, #fff 0%, #00c2ff 50%, #7886c7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 45px;
    text-align: center;
    font-weight: 900;
    padding: 40px;
    animation: shimmer 5s linear infinite;
}

h2 {
    font-size: 40px;
    color: #00c2ff;
    margin: 50px 0 28px 0;
    font-weight: 800;
    padding: 22px 35px;
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.15) 0%, rgba(120, 134, 199, 0.15) 100%);
    border-left: 6px solid #00c2ff;
    border-radius: 12px;
}

p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #c7d5e0;
}

.hero-img {
    margin: 50px 0;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(120, 134, 199, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 194, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.hero-img img {
    max-width: 100%;
    border-radius: 15px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 50px 0;
    background: rgba(21, 34, 56, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

th, td {
    padding: 22px 32px;
    text-align: left;
}

th {
    background: linear-gradient(135deg, #00c2ff 0%, #7886c7 100%);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

td {
    color: #c7d5e0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(0, 194, 255, 0.08);
}

ol {
    margin: 45px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: modern;
}

ol li {
    margin-bottom: 26px;
    font-size: 18px;
    counter-increment: modern;
    position: relative;
    padding: 26px 26px 26px 90px;
    background: linear-gradient(135deg, rgba(21, 34, 56, 0.6) 0%, rgba(13, 24, 41, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(0, 194, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #c7d5e0;
    transition: all 0.4s;
}

ol li:hover {
    transform: translateX(12px);
    border-color: #00c2ff;
    box-shadow: 0 15px 40px rgba(0, 194, 255, 0.3);
}

ol li::before {
    content: counter(modern);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00c2ff 0%, #7886c7 100%);
    color: #fff;
    font-weight: 900;
    font-size: 30px;
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.5);
}

.update-date, .bonus-subtitle {
    background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
    padding: 26px 42px;
    border-radius: 15px;
    margin: 45px 0;
    color: #0a1628;
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(255, 183, 3, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    background: linear-gradient(135deg, rgba(21, 34, 56, 0.8) 0%, rgba(13, 24, 41, 0.8) 100%);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 42px;
    color: #c7d5e0;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 194, 255, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }
    
    .header-main {
        flex-direction: column;
        gap: 20px;
    }
}
