* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 194, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 194, 255, 0.6); }
}

@keyframes slide-in {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0f1f3a 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    color: #e0e6ed;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 194, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 183, 3, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

header {
    background: linear-gradient(135deg, #152238 0%, #0d1829 100%);
    padding: 0;
    border-bottom: 3px solid #00c2ff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 50px;
    border-bottom: 1px solid rgba(0, 194, 255, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 0;
    display: none;
}

.logo-text {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 194, 255, 0.8);
    font-family: 'Impact', sans-serif;
}

.logo-text span {
    color: #00c2ff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btns {
    display: flex;
    gap: 12px;
}

.btn-red, .btn-outline {
    padding: 13px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    font-family: 'Arial', sans-serif;
}

.btn-red {
    background: linear-gradient(135deg, #00c2ff 0%, #0094cc 100%);
    color: #fff;
    border-color: #00c2ff;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.4);
}

.btn-red:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 194, 255, 0.6);
}

.btn-outline {
    background: transparent;
    color: #ffb703;
    border-color: #ffb703;
}

.btn-outline:hover {
    background: #ffb703;
    color: #0a1628;
}

.promo-box {
    background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
    padding: 13px 28px;
    border-radius: 8px;
    color: #0a1628;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
    transition: all 0.3s;
}

.promo-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.6);
}

.header-nav {
    display: flex;
    gap: 0;
    background: rgba(0, 0, 0, 0.3);
}

.nav-item {
    padding: 16px 35px;
    text-decoration: none;
    color: #c7d5e0;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #00c2ff;
    transition: width 0.3s;
}

.nav-item:hover {
    background: rgba(0, 194, 255, 0.1);
    color: #00c2ff;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:last-child {
    border-right: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 40px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 45px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0, 194, 255, 0.6);
    padding: 35px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(255, 183, 3, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 194, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slide-in 0.8s ease-out;
}

h2 {
    font-size: 38px;
    color: #00c2ff;
    margin: 50px 0 28px 0;
    font-weight: 800;
    padding: 20px 30px;
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.15) 0%, transparent 100%);
    border-left: 6px solid #00c2ff;
    border-radius: 8px;
    text-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
}

p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #c7d5e0;
}

.hero-img {
    margin: 50px 0;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #152238 0%, #0d1829 100%);
    border-radius: 15px;
    border: 2px solid #00c2ff;
    box-shadow: 
        0 0 30px rgba(0, 194, 255, 0.3),
        0 15px 45px rgba(0, 0, 0, 0.5);
}

.hero-img img {
    max-width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(0, 194, 255, 0.3);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 50px 0;
    background: #152238;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

th, td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
}

th {
    background: linear-gradient(135deg, #00c2ff 0%, #0094cc 100%);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

td {
    color: #c7d5e0;
    font-size: 16px;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(0, 194, 255, 0.05);
}

ol {
    margin: 45px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: win;
}

ol li {
    margin-bottom: 24px;
    font-size: 18px;
    counter-increment: win;
    position: relative;
    padding: 24px 24px 24px 85px;
    background: linear-gradient(135deg, #152238 0%, #0d1829 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 194, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #c7d5e0;
    transition: all 0.3s;
}

ol li:hover {
    transform: translateX(10px);
    border-color: #00c2ff;
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.3);
}

ol li::before {
    content: counter(win);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00c2ff 0%, #0094cc 100%);
    color: #fff;
    font-weight: 900;
    font-size: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.6);
}

.update-date, .bonus-subtitle {
    background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
    padding: 24px 40px;
    border-radius: 12px;
    margin: 45px 0;
    color: #0a1628;
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(255, 183, 3, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    background: linear-gradient(135deg, #152238 0%, #0d1829 100%);
    text-align: center;
    padding: 40px;
    color: #c7d5e0;
    margin-top: 80px;
    border-top: 3px solid #00c2ff;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-nav {
        flex-wrap: wrap;
    }
    
    .nav-item {
        flex: 1;
        text-align: center;
    }
    
    h1 {
        font-size: 38px;
    }
}
