* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes texture-move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

@keyframes fade-slide {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

body {
    font-family: 'Franklin Gothic', 'Arial Narrow', sans-serif;
    background: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23d4c5a0" width="100" height="100"/><circle cx="50" cy="50" r="1" fill="%23c4b590"/></svg>'),
        linear-gradient(135deg, #d4c5a0 0%, #c9b896 100%);
    background-size: 100px 100px, 100%;
    color: #3e2a1f;
    line-height: 1.6;
    animation: texture-move 30s linear infinite;
}

header {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

.header-top {
    display: flex;
    align-items: stretch;
    border-bottom: 4px solid #2d6456;
}

.logo {
    background: #d84a38;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 4px solid #b83a28;
    min-width: 280px;
}

.logo img {
    height: 0;
    display: none;
}

.logo-text {
    font-size: 56px;
    color: #f9ead0;
    font-weight: 900;
    font-family: 'Impact', sans-serif;
    font-style: italic;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    transform: skewX(-5deg);
}

.header-info {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    flex: 1;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f9ead0;
}

.header-title {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.header-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 1.4;
}

.header-address {
    font-size: 12px;
    margin-top: 10px;
    color: #d4c5a0;
    font-style: italic;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}

.header-btns {
    display: flex;
    gap: 0;
}

/* НОРМАЛЬНЫЕ КНОПКИ С ТЕКСТОМ */
.btn-red, .btn-outline {
    padding: 15px 28px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 900;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    background: #e67e42;
    color: #2a2a2a;
    border-right: 3px solid #d86d32;
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
}

.btn-red {
    background: #d84a38;
    color: #f9ead0;
    border-right: 3px solid #b83a28;
}

.btn-red:hover {
    background: #c43e2c;
}

.btn-outline {
    background: #2d6456;
    color: #f9ead0;
    border-right: 3px solid #1d4436;
}

.btn-outline:hover {
    background: #1d4436;
}

.promo-box {
    background: #e67e42;
    padding: 15px 28px;
    border-radius: 0;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.promo-box:hover {
    background: #d86d32;
}

/* НАВИГАЦИЯ */
.header-nav {
    background: #2d6456;
    display: flex;
    gap: 0;
    border-top: 2px solid #3d7466;
}

.nav-item {
    padding: 15px 35px;
    text-decoration: none;
    color: #f9ead0;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-right: 2px solid #1d4436;
    transition: all 0.3s;
}

.nav-item:hover {
    background: #1d4436;
    color: #fff;
}

.nav-item:last-child {
    border-right: none;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 50px 40px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    animation: fade-slide 0.8s ease-out;
}

.hero-image {
    background: linear-gradient(135deg, #f9a94b 0%, #e67e42 100%);
    padding: 30px;
    border: 5px solid #2a2a2a;
    box-shadow: 
        0 0 0 3px #d4c5a0,
        0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
}

.hero-image-title {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border: none;
}

.hero-content {
    background: linear-gradient(135deg, #f9ead0 0%, #f0dfc0 100%);
    padding: 35px;
    border: 5px solid #d84a38;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    background: #d84a38;
    color: #f9ead0;
    padding: 12px 25px;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
    border: 4px solid #2a2a2a;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 26px;
    color: #d84a38;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 3px solid #2d6456;
    padding-bottom: 10px;
}

.hero-number {
    font-size: 68px;
    color: #2a2a2a;
    font-weight: 900;
    line-height: 1;
    margin: 15px 0;
    text-shadow: 2px 2px 0 rgba(216, 74, 56, 0.3);
}

.hero-text {
    font-size: 18px;
    color: #3e2a1f;
    line-height: 1.5;
    font-weight: 600;
}

h1 {
    font-size: 52px;
    color: #2a2a2a;
    margin-bottom: 40px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 25px;
    background: #f9ead0;
    border: 5px solid #d84a38;
    border-left: 20px solid #2d6456;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 36px;
    color: #d84a38;
    margin: 45px 0 25px 0;
    font-weight: 900;
    padding: 18px 30px;
    background: linear-gradient(90deg, rgba(216, 74, 56, 0.15) 0%, transparent 100%);
    border-left: 12px solid #2d6456;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.7;
    color: #3e2a1f;
    font-family: 'Georgia', serif;
}

.hero-img {
    margin: 50px 0;
    text-align: center;
    padding: 25px;
    background: #2a2a2a;
    border: 6px solid #e67e42;
    box-shadow: 
        0 0 0 4px #d4c5a0,
        0 15px 45px rgba(0, 0, 0, 0.3);
}

.hero-img img {
    max-width: 100%;
    border: 4px solid #d4c5a0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 50px 0;
    border: 5px solid #2a2a2a;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: #f9ead0;
}

th, td {
    padding: 18px 28px;
    text-align: left;
    border-bottom: 3px solid #d4c5a0;
    font-family: 'Arial', sans-serif;
}

th {
    background: linear-gradient(135deg, #2d6456 0%, #1d4436 100%);
    color: #f9ead0;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

td {
    color: #3e2a1f;
    font-size: 16px;
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) td {
    background: #f0dfc0;
}

tr:hover td {
    background: #e6d5b0;
}

ol {
    margin: 45px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: tommy;
}

ol li {
    margin-bottom: 24px;
    font-size: 18px;
    counter-increment: tommy;
    position: relative;
    padding: 22px 22px 22px 85px;
    background: #f9ead0;
    border: 4px solid #2a2a2a;
    border-left: 10px solid #e67e42;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #3e2a1f;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

ol li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

ol li::before {
    content: counter(tommy);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: #d84a38;
    color: #f9ead0;
    font-weight: 900;
    font-size: 28px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #2a2a2a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.update-date, .bonus-subtitle {
    background: linear-gradient(135deg, #e67e42 0%, #d86d32 100%);
    padding: 22px 38px;
    border-radius: 0;
    margin: 42px 0;
    border: 5px solid #2a2a2a;
    color: #f9ead0;
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    box-shadow: 
        0 0 0 3px #d4c5a0,
        0 10px 30px rgba(0, 0, 0, 0.25);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
    padding: 38px;
    color: #f9ead0;
    margin-top: 75px;
    border-top: 5px solid #d84a38;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
    }
    
    .logo {
        border-right: none;
        border-bottom: 4px solid #b83a28;
        min-width: auto;
    }
    
    .header-right {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .header-btns {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .btn-red, .btn-outline, .promo-box {
        flex: 1;
        text-align: center;
        border-right: none;
        border-bottom: 3px solid rgba(0, 0, 0, 0.2);
    }
    
    .header-nav {
        flex-wrap: wrap;
    }
    
    .nav-item {
        flex: 1;
        text-align: center;
        border-right: none;
        border-bottom: 2px solid #1d4436;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 36px;
    }
}
