* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes pixel-blink {
    0%, 49%, 100% { opacity: 1; }
    50%, 99% { opacity: 0.3; }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes retro-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(76, 175, 80, 0.3); }
    50% { box-shadow: 0 0 20px rgba(76, 175, 80, 0.6); }
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
    background: #e8dcc0;
    color: #3e2723;
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        );
    pointer-events: none;
    z-index: 9999;
}

header {
    background: linear-gradient(180deg, #d4c5a9 0%, #c9b896 100%);
    padding: 20px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #8b6f47;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        #4caf50 10%,
        #4caf50 90%,
        transparent
    );
}

.logo img {
    height: 55px;
    filter: 
        drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.2))
        sepia(20%);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-btns {
    display: flex;
    gap: 15px;
}

.btn-red, .btn-outline {
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 3px 0 rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
}

.btn-red {
    background: linear-gradient(180deg, #e85d5d 0%, #d44444 100%);
    color: #fff;
    border: 2px solid #a83232;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-red:hover {
    background: linear-gradient(180deg, #f07070 0%, #e85d5d 100%);
    transform: translateY(1px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: linear-gradient(180deg, #7cb686 0%, #5fa069 100%);
    color: #fff;
    border: 2px solid #4a7a54;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    background: linear-gradient(180deg, #8dc897 0%, #7cb686 100%);
    transform: translateY(1px);
}

.promo-box {
    background: linear-gradient(180deg, #f4e4bc 0%, #e8d4a8 100%);
    padding: 10px 22px;
    border-radius: 6px;
    color: #d84315;
    text-decoration: none;
    border: 2px solid #c17a3f;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 3px 0 rgba(0, 0, 0, 0.15);
}

.container {
    max-width: 1100px;
    margin: 45px auto;
    padding: 0 35px;
    background: #f5ead8;
    border-radius: 12px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    padding: 40px 50px;
}

h1 {
    font-size: 42px;
    color: #d84315;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 0 rgba(255, 255, 255, 0.5),
        3px 3px 0 rgba(0, 0, 0, 0.15);
    padding: 25px;
    background: linear-gradient(135deg, #e8dcc0 0%, #d4c5a9 100%);
    border: 3px solid #8b6f47;
    border-radius: 10px;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

h2 {
    font-size: 28px;
    color: #4caf50;
    margin: 40px 0 22px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.15) 0%, transparent 100%);
    border-left: 6px solid #4caf50;
    border-radius: 4px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #4e342e;
    text-align: justify;
}

.hero-img {
    margin: 40px 0;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #d4c5a9 0%, #c9b896 100%);
    border: 4px solid #8b6f47;
    border-radius: 10px;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-img img {
    max-width: 100%;
    border: 3px solid #6d4c41;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.hero-img:hover img {
    transform: scale(1.02);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    background: #f5ead8;
    border: 3px solid #8b6f47;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

th, td {
    padding: 16px 22px;
    text-align: left;
    border-bottom: 2px solid #d4c5a9;
}

th {
    background: linear-gradient(180deg, #7cb686 0%, #5fa069 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

td {
    color: #4e342e;
    font-size: 15px;
    background: #faf6ed;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: #e8dcc0;
}

ol {
    margin: 35px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: retro;
}

ol li {
    margin-bottom: 20px;
    font-size: 17px;
    counter-increment: retro;
    position: relative;
    padding: 18px 18px 18px 70px;
    background: linear-gradient(135deg, #faf6ed 0%, #f5ead8 100%);
    border: 2px solid #c9b896;
    border-radius: 8px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 3px 8px rgba(0, 0, 0, 0.1);
    color: #4e342e;
    transition: all 0.3s;
}

ol li:hover {
    transform: translateX(8px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 5px 12px rgba(0, 0, 0, 0.15);
}

ol li::before {
    content: counter(retro);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #e85d5d 0%, #d44444 100%);
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #a83232;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.update-date, .bonus-subtitle {
    background: linear-gradient(135deg, #fff9e6 0%, #f4e4bc 100%);
    padding: 16px 26px;
    border-radius: 8px;
    margin: 30px 0;
    border: 3px solid #c17a3f;
    color: #d84315;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.12);
}

footer {
    background: linear-gradient(180deg, #d4c5a9 0%, #c9b896 100%);
    text-align: center;
    padding: 28px;
    color: #4e342e;
    margin-top: 60px;
    border-top: 4px solid #8b6f47;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 -4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 18px;
    }
    
    .container {
        padding: 30px 25px;
    }
    
    h1 {
        font-size: 32px;
    }
}
