* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #1a1a1a;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(to top, #1a1a1a 0%, #2a2a2a 100%);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-btns {
    display: flex;
    gap: 10px;
}

/* Header Buttons */
.btn-red {
    background: #ff0000;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-red:hover {
    background: #cc0000;
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 12px 40px;
    border: 2px solid #555;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.promo-box {
    border: 2px solid #00bcd4;
    padding: 10px 20px;
    color: #00bcd4;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.promo-box:hover {
    background: rgba(0, 188, 212, 0.1);
    border-color: #00e5ff;
}

.promo-box strong {
    font-size: 16px;
}

/* Container */
.container {
    background: #f5f5f5;
    padding: 40px 50px;
    margin: 20px;
    border-radius: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: bold;
}

h2 {
    font-size: 30px;
    margin: 35px 0 20px;
    color: #1a1a1a;
    font-weight: bold;
}

p {
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 15px;
    color: #333;
}

p strong {
    color: #ff0000;
    font-weight: bold;
}

.bonus-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.hero-img {
    text-align: center;
    margin: 40px 0;
}

.hero-img img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Lists */
ol {
    margin-left: 25px;
    margin-bottom: 25px;
}

ol li {
    margin: 12px 0;
    line-height: 1.8;
    font-size: 15px;
}

/* Update Date Box */
.update-date {
    background: linear-gradient(135deg, #ffc3a0 0%, #ffafbd 100%);
    color: #5a3a31;
    padding: 15px 25px;
    margin: 30px 0;
    border-radius: 10px;
    border-left: 5px solid #ff6b9d;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(255, 175, 189, 0.4);
}

.update-icon {
    font-size: 24px;
}

.update-date strong {
    font-size: 16px;
    color: #ff0000;
    font-weight: bold;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

th, td {
    border: 1px solid #e0e0e0;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
}

th {
    background: #f8f8f8;
    font-weight: bold;
    color: #333;
    width: 35%;
}

td {
    color: #555;
}

td strong {
    color: #ff0000;
    font-weight: bold;
}

tr:hover {
    background: #fafafa;
}

/* Footer */
footer {
    background: linear-gradient(to top, #2a2a2a 0%, #1a1a1a 100%);
    color: #888;
    padding: 25px;
    text-align: center;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .container {
        padding: 25px 20px;
        margin: 10px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    th, td {
        font-size: 13px;
        padding: 10px;
    }
    
    .update-date {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
