* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes rotate-rays {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vintage-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(139, 69, 19, 0.3); }
    50% { text-shadow: 0 0 20px rgba(139, 69, 19, 0.5); }
}

body {
    font-family: 'Rockwell', 'Courier Bold', serif;
    background: #e8dcc4;
    color: #4a2c2a;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            #d4c5a0 0deg 2deg,
            #e8dcc4 2deg 4deg
        );
    animation: rotate-rays 180s linear infinite;
    z-index: -1;
    opacity: 0.4;
}

header {
    background: linear-gradient(180deg, #b85c3a 0%, #9d4a2f 100%);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 4px solid #7a3521;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-btns {
    display: flex;
    gap: 0;
}

.btn-red, .btn-outline {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-right: 2px solid #7a3521;
    background: #b85c3a;
    color: #f5ead0;
    position: relative;
    font-family: 'Arial', sans-serif;
}

.btn-red:hover, .btn-outline:hover {
    background: #9d4a2f;
    color: #fff;
}

.btn-red::after, .btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f5ead0;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.btn-red:hover::after, .btn-outline:hover::after {
    transform: scaleX(1);
}

.logo {
    padding: 16px 32px;
    background: #b85c3a;
    border-right: 2px solid #7a3521;
}

.logo img {
    height: 0;
    display: none;
}

.promo-box {
    background: #d4a574;
    padding: 16px 32px;
    border-radius: 0;
    color: #4a2c2a;
    text-decoration: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.promo-box:hover {
    background: #c49563;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
}

.vintage-logo {
    text-align: center;
    margin-bottom: 50px;
    animation: fade-in-up 1s ease-out;
}

.vintage-logo-circle {
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
    background: radial-gradient(circle, #e8dcc4 0%, #d4c5a0 70%, #8b6f47 100%);
    border-radius: 50%;
    border: 8px solid #6d4c28;
    box-shadow: 
        0 0 0 4px #d4c5a0,
        0 15px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vintage-logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    border: 3px solid rgba(107, 76, 40, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vintage-logo-text {
    font-size: 72px;
    color: #6d4c28;
    font-weight: 900;
    text-shadow: 
        2px 2px 0 #d4a574,
        4px 4px 0 rgba(0, 0, 0, 0.2);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.vintage-badge {
    background: linear-gradient(135deg, #6d4c28 0%, #8b6f47 100%);
    border: 6px solid #d4c5a0;
    border-radius: 15px;
    padding: 25px 50px;
    margin: 0 auto 40px;
    max-width: 800px;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
}

.vintage-badge::before,
.vintage-badge::after {
    content: '◉';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #d4c5a0;
}

.vintage-badge::before {
    left: 20px;
}

.vintage-badge::after {
    right: 20px;
}

.vintage-subtitle {
    font-size: 28px;
    color: #6d4c28;
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    animation: vintage-glow 3s infinite;
}

h1 {
    font-size: 68px;
    color: #b85c3a;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 
        3px 3px 0 #d4a574,
        6px 6px 0 rgba(0, 0, 0, 0.15);
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
}

h1::before,
h1::after {
    content: '';
    display: inline-block;
    width: 120px;
    height: 4px;
    background: #6d4c28;
    vertical-align: middle;
    margin: 0 30px;
}

h2 {
    font-size: 38px;
    color: #6d4c28;
    margin: 50px 0 28px 0;
    font-weight: 700;
    padding: 20px 35px;
    background: linear-gradient(90deg, rgba(109, 76, 40, 0.1) 0%, transparent 100%);
    border-left: 8px solid #b85c3a;
    text-shadow: 2px 2px 0 rgba(212, 165, 116, 0.5);
    font-family: 'Georgia', serif;
}

p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #5a3e2a;
    text-align: justify;
    font-family: 'Georgia', serif;
}

.hero-img {
    margin: 55px 0;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #d4c5a0 0%, #c4b590 100%);
    border: 8px solid #6d4c28;
    border-radius: 10px;
    box-shadow: 
        inset 0 3px 0 rgba(255, 255, 255, 0.3),
        0 12px 35px rgba(0, 0, 0, 0.25);
    position: relative;
}

.hero-img::before,
.hero-img::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid #8b6f47;
}

.hero-img::before {
    top: -4px;
    left: -4px;
    border-right: none;
    border-bottom: none;
}

.hero-img::after {
    bottom: -4px;
    right: -4px;
    border-left: none;
    border-top: none;
}

.hero-img img {
    max-width: 100%;
    border: 4px solid #8b6f47;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 50px 0;
    border: 6px solid #6d4c28;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    background: #f5ead0;
}

th, td {
    padding: 18px 28px;
    text-align: left;
    border-bottom: 2px solid #d4c5a0;
    font-family: 'Georgia', serif;
}

th {
    background: linear-gradient(180deg, #8b6f47 0%, #6d4c28 100%);
    color: #f5ead0;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

td {
    color: #4a2c2a;
    font-size: 16px;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) td {
    background: #ebe3cf;
}

tr:hover td {
    background: #d4c5a0;
}

ol {
    margin: 45px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: vintage;
}

ol li {
    margin-bottom: 24px;
    font-size: 18px;
    counter-increment: vintage;
    position: relative;
    padding: 22px 22px 22px 85px;
    background: #f5ead0;
    border: 4px solid #8b6f47;
    border-left: 8px solid #b85c3a;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.15);
    color: #5a3e2a;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

ol li:hover {
    transform: translateX(10px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.2);
}

ol li::before {
    content: counter(vintage);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #b85c3a 0%, #9d4a2f 100%);
    color: #f5ead0;
    font-weight: 900;
    font-size: 26px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #6d4c28;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 6px 15px 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, #d4a574 0%, #c49563 100%);
    padding: 22px 38px;
    border-radius: 8px;
    margin: 40px 0;
    border: 4px solid #8b6f47;
    color: #4a2c2a;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

footer {
    background: linear-gradient(180deg, #b85c3a 0%, #9d4a2f 100%);
    text-align: center;
    padding: 35px;
    color: #f5ead0;
    margin-top: 75px;
    border-top: 4px solid #7a3521;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        0 -6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }
    
    .btn-red, .btn-outline {
        border-right: none;
        border-bottom: 2px solid #7a3521;
    }
    
    h1 {
        font-size: 42px;
    }
    
    h1::before,
    h1::after {
        width: 60px;
        margin: 0 15px;
    }
}
