* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes shine {
    0% { background-position: -200px; }
    100% { background-position: 200px; }
}

@keyframes star-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

@keyframes slide-down {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

body {
    font-family: 'Futura', 'Century Gothic', sans-serif;
    background: #f9f4e8;
    color: #2c3e50;
    line-height: 1.65;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(231, 76, 60, 0.02) 50px,
            rgba(231, 76, 60, 0.02) 51px
        );
    pointer-events: none;
}

header {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: stretch;
    border: none;
    position: relative;
}

.logo {
    width: 10px;
    background: #f9f4e8;
    border-right: 3px solid #2c5f7f;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo::before {
    content: '✦';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #e74c3c;
    font-size: 24px;
    animation: star-twinkle 2s infinite;
}

.logo-text {
    font-size: 36px;
    color: #2c5f7f;
    font-weight: 900;
    font-family: 'Impact', sans-serif;
    text-align: center;
    line-height: 0.9;
    margin-bottom: 8px;
}

.logo-subtitle {
    font-size: 12px;
    color: #fff;
    background: #e74c3c;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.header-top {
    background: #2c5f7f;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    color: #f9f4e8;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

.header-top-left span {
    margin: 0 15px;
    color: #e74c3c;
}

.header-btns {
    display: flex;
    gap: 0;
}

.btn-red, .btn-outline {
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    background: #e74c3c;
    color: #fff;
    border-right: 2px solid #c0392b;
}

.btn-red:hover, .btn-outline:hover {
    background: #c0392b;
}

.btn-red:last-child, .btn-outline:last-child {
    border-right: none;
}

.header-bottom {
    background: #f9f4e8;
    padding: 12px 40px;
    display: flex;
    gap: 0;
    border-top: 2px solid #2c5f7f;
    border-bottom: 3px solid #e74c3c;
}

.nav-item {
    padding: 8px 20px;
    text-decoration: none;
    color: #2c5f7f;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 2px solid #ddd;
    transition: all 0.3s;
}

.nav-item:hover {
    background: #2c5f7f;
    color: #fff;
}

.nav-item:last-child {
    border-right: none;
}

.promo-box {
    background: #e74c3c;
    padding: 10px 24px;
    border-radius: 0;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
}

.retro-hero {
    text-align: center;
    margin-bottom: 60px;
    animation: slide-down 0.8s ease-out;
}

.retro-circle {
    width: 320px;
    height: 320px;
    margin: 0 auto 30px;
    background: #e74c3c;
    border-radius: 50%;
    border: 8px solid #2c5f7f;
    box-shadow: 
        0 0 0 4px #f9f4e8,
        0 0 0 12px #e74c3c,
        0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.retro-circle::before {
    content: '✦';
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 32px;
    animation: star-twinkle 3s infinite;
}

.retro-circle-text {
    font-size: 64px;
    color: #fff;
    font-weight: 900;
    font-family: 'Impact', sans-serif;
    line-height: 0.9;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.retro-tagline {
    font-size: 32px;
    color: #2c5f7f;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 30px;
}

.retro-tagline span {
    color: #e74c3c;
    margin: 0 15px;
    font-size: 24px;
}

h1 {
    font-size: 56px;
    color: #2c5f7f;
    margin-bottom: 45px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 rgba(231, 76, 60, 0.3);
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
}

h2 {
    font-size: 38px;
    color: #e74c3c;
    margin: 50px 0 28px 0;
    font-weight: 900;
    padding: 18px 32px;
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    border-left: 8px solid #e74c3c;
    border-right: 8px solid #2c5f7f;
    text-shadow: 2px 2px 0 rgba(44, 95, 127, 0.1);
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
}

p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    text-align: justify;
    font-family: 'Georgia', serif;
}

.hero-img {
    margin: 55px 0;
    text-align: center;
    padding: 25px;
    background: #fff;
    border: 6px solid #2c5f7f;
    box-shadow: 
        0 0 0 4px #f9f4e8,
        0 0 0 10px #e74c3c,
        0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hero-img::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed #2c5f7f;
    pointer-events: none;
}

.hero-img img {
    max-width: 100%;
    border: none;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 50px 0;
    border: 6px solid #2c5f7f;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
}

th, td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 3px solid #f9f4e8;
    font-family: 'Arial', sans-serif;
}

th {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

td {
    color: #2c3e50;
    font-size: 16px;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) td {
    background: #f9f4e8;
}

tr:hover td {
    background: #e8e0d0;
}

ol {
    margin: 48px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: retro;
}

ol li {
    margin-bottom: 26px;
    font-size: 18px;
    counter-increment: retro;
    position: relative;
    padding: 24px 24px 24px 90px;
    background: #fff;
    border: 4px solid #2c5f7f;
    box-shadow: 
        inset 0 0 0 2px #f9f4e8,
        0 6px 20px rgba(0, 0, 0, 0.12);
    color: #34495e;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

ol li:hover {
    transform: translateX(12px);
    box-shadow: 
        inset 0 0 0 2px #f9f4e8,
        0 10px 30px rgba(0, 0, 0, 0.18);
}

ol li::before {
    content: counter(retro);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #e74c3c;
    color: #fff;
    font-weight: 900;
    font-size: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #2c5f7f;
    box-shadow: 
        0 0 0 3px #f9f4e8,
        0 6px 18px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.update-date, .bonus-subtitle {
    background: linear-gradient(135deg, #2c5f7f 0%, #1f4d6b 100%);
    padding: 24px 40px;
    border-radius: 0;
    margin: 45px 0;
    border: 5px solid #e74c3c;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    box-shadow: 
        0 0 0 3px #f9f4e8,
        0 10px 30px rgba(0, 0, 0, 0.2);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    background: linear-gradient(135deg, #2c5f7f 0%, #1f4d6b 100%);
    text-align: center;
    padding: 38px;
    color: #f9f4e8;
    margin-top: 80px;
    border-top: 5px solid #e74c3c;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    
    .logo {
        width: 100%;
        border-right: none;
        border-bottom: 3px solid #2c5f7f;
    }
    
    .header-bottom {
        flex-wrap: wrap;
    }
    
    .nav-item {
        border-right: none;
        border-bottom: 2px solid #ddd;
    }
    
    h1 {
        font-size: 38px;
    }
    
    .retro-circle {
        width: 240px;
        height: 240px;
    }
    
    .retro-circle-text {
        font-size: 48px;
    }
}
