/* HOME PAGE STYLES */

/* === KEYFRAMES === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* === COLORS === */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #3498db;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --danger-color: #e74c3c;
    --purple-color: #9b59b6;
    --orange-color: #f39c12;
    --green-color: #2ecc71;
    --blue-color: #3498db;
    --red-color: #e74c3c;
    --yellow-color: #f1c40f;
    --dark-red-color: #c0392b;
}

/* === COMMON CLASSES === */
.gradient-text {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.blue-gradient {
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.orange-gradient {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.red-gradient {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.red-text { color: var(--red-color); }
.blue-text { color: var(--blue-color); }
.green-text { color: var(--green-color); }
.orange-text { color: var(--orange-color); }
.yellow-text { color: var(--yellow-color); }
.purple-text { color: var(--purple-color); }
.dark-red-text { color: var(--dark-red-color); }
.highlight-text { color: var(--warning-color); }
.muted-text { color: #aaa; }

.bold { font-weight: bold; }
.small-text { font-size: 11px; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-zalo {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-zalo:hover {
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
}

.btn-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* === SECTION HEADERS === */
.section-header {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon {
    margin-right: 12px;
    font-size: 32px;
}

/* === VIDEO BANNER === */
.video-banner {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === EVENT ANNOUNCEMENT === */
.event-announcement {
    margin-top: 50px;
}

.event-container {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(243, 156, 18, 0.3) 100%);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid rgba(241, 196, 15, 0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.event-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.event-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.event-title {
    color: #f1c40f;
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.event-icon {
    margin-right: 15px;
    color: #f39c12;
}

.section-title {
    margin-bottom: 20px;
    font-size: 24px;
}

.alpha-title {
    color: #e74c3c;
}

.beta-title {
    color: #3498db;
}

.event-date {
    color: #f1c40f;
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0;
}

/* === EVENT SECTIONS === */
.alpha-test-section, .open-beta-section {
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.alpha-test-section {
    background: rgba(231, 76, 60, 0.2);
    border-color: rgba(231, 76, 60, 0.4);
}

.open-beta-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.3) 100%);
    border-color: rgba(52, 152, 219, 0.4);
}

/* === EVENT BOXES === */
.event-box {
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.event-box.blue-border {
    background: rgba(0,0,0,0.3);
    border-left: 4px solid #3498db;
}

.event-box.red-border {
    background: rgba(0,0,0,0.3);
    border-left: 4px solid #e74c3c;
}

.event-box.green-border {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(39, 174, 96, 0.3) 100%);
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.event-box.purple-border {
    background: rgba(0,0,0,0.3);
    border-left: 4px solid #9b59b6;
}

.event-box.orange-border {
    background: rgba(0,0,0,0.3);
    border-left: 4px solid #f39c12;
}

.event-box.yellow-border {
    background: rgba(0,0,0,0.3);
    border-left: 4px solid #f1c40f;
}

.event-box-title {
    margin-bottom: 15px;
    font-size: 18px;
}

.event-description {
    color: #ddd;
    margin-bottom: 10px;
    font-size: 15px;
}

.event-reward {
    color: #2ecc71;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.reward-amount {
    color: #f1c40f;
}

/* === RANK GRIDS === */
.rank-grid, .reward-grid-2col, .bonus-grid {
    display: grid;
    gap: 15px;
    margin: 15px 0;
}

.rank-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.reward-grid-2col {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.rank-card {
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.rank-card.gold-rank {
    background: rgba(241, 196, 15, 0.2);
    border-color: rgba(241, 196, 15, 0.4);
}

.rank-card.silver-rank {
    background: rgba(149, 165, 166, 0.2);
    border-color: rgba(149, 165, 166, 0.4);
}

.rank-card.bronze-rank {
    background: rgba(205, 127, 50, 0.2);
    border-color: rgba(205, 127, 50, 0.4);
}

.rank-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.rank-position {
    font-weight: bold;
    margin-bottom: 5px;
}

.rank-prize {
    color: #2ecc71;
    font-size: 14px;
    font-weight: bold;
}

.reward-card {
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.reward-card.gold-gradient {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.2) 0%, rgba(243, 156, 18, 0.3) 100%);
    border-color: rgba(241, 196, 15, 0.4);
}

.reward-card.silver-gradient {
    background: linear-gradient(135deg, rgba(149, 165, 166, 0.2) 0%, rgba(127, 140, 141, 0.3) 100%);
    border-color: rgba(149, 165, 166, 0.4);
}

.reward-rank {
    font-size: 20px;
    margin-bottom: 8px;
}

.reward-details {
    color: #2ecc71;
    font-size: 14px;
    line-height: 1.4;
}

.bonus-item {
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
}

.bonus-input {
    color: #3498db;
    font-size: 16px;
    margin-bottom: 5px;
}

.bonus-output {
    color: #f39c12;
    font-size: 14px;
}

.super-vip-card {
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(241, 196, 15, 0.4);
}

.requirement {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.super-vip-reward {
    color: #2ecc71;
    font-size: 16px;
    font-weight: bold;
}

/* === ZALO & CTA SECTIONS === */
.zalo-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.3) 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(52, 152, 219, 0.4);
}

.zalo-title {
    color: #3498db;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px;
}

.zalo-description {
    color: #ddd;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.cta-section {
    margin-top: 25px;
}

.cta-section .btn {
    margin-right: 15px;
}

/* === ROADMAP SECTIONS === */
.roadmap-update, .server-roadmap, .server-info, .character-reset-info, .hidden-features {
    margin-top: 50px;
}

.roadmap-grid, .server-grid, .info-grid, .character-info-grid {
    display: grid;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-grid, .character-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.server-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* === CARDS === */
.roadmap-card, .info-card, .character-info-card {
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.roadmap-card:hover, .info-card:hover, .character-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.roadmap-card.full-width {
    grid-column: span 2;
}

/* === CARD COLORS === */
.green-card {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.2) 100%);
    border-color: rgba(46, 204, 113, 0.3);
}

.blue-card {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.2) 100%);
    border-color: rgba(52, 152, 219, 0.3);
}

.red-card {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.2) 100%);
    border-color: rgba(231, 76, 60, 0.3);
}

.purple-card {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(142, 68, 173, 0.2) 100%);
    border-color: rgba(155, 89, 182, 0.3);
}

.orange-card {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.15) 0%, rgba(243, 156, 18, 0.2) 100%);
    border-color: rgba(230, 126, 34, 0.3);
}

/* === CARD GLOWS === */
.card-glow {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.green-glow {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), transparent);
}

.blue-glow {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.3), transparent);
}

.red-glow {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3), transparent);
}

.purple-glow {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.3), transparent);
}

.orange-glow {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.3), transparent);
}

/* === CARD HEADERS === */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.green-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.blue-icon {
    background: linear-gradient(135deg, #2980b9, #3498db);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.red-icon {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.purple-icon {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
}

.orange-icon {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.card-icon i {
    color: white;
    font-size: 18px;
}

.card-title {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

/* === CARD CONTENT === */
.card-content {
    space-y: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.feature-icon {
    margin-right: 8px;
    width: 16px;
}

.transparent-box {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #f39c12;
}

.roadmap-description {
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* === INFO LISTS === */
.info-list {
    space-y: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

.info-label {
    color: #ddd;
}

.info-value {
    font-weight: bold;
}

.feature-list {
    space-y: 12px;
}

.feature-box {
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border-left: 3px solid;
}

.feature-box.purple-border {
    border-left-color: #9b59b6;
}

.feature-box.yellow-border {
    border-left-color: #f39c12;
}

.feature-box.green-border {
    border-left-color: #2ecc71;
}

.feature-box.red-border {
    border-left-color: #e74c3c;
}

.feature-box p {
    color: #ddd;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* === RESET TABLE === */
.reset-table-container {
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.6) 0%, rgba(30, 30, 45, 0.6) 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    overflow-x: auto;
}

.table-title {
    color: #f39c12;
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-title i {
    margin-right: 10px;
}

.table-wrapper {
    overflow-x: auto;
}

.reset-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.reset-table thead tr {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.reset-table th {
    padding: 15px 10px;
    color: white;
    font-weight: bold;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.reset-table td {
    padding: 12px 10px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.reset-row {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.reset-row.green-row {
    background: rgba(46, 204, 113, 0.1);
}

.reset-row.blue-row {
    background: rgba(52, 152, 219, 0.1);
}

.reset-row.purple-row {
    background: rgba(155, 89, 182, 0.1);
}

.reset-row.orange-row {
    background: rgba(230, 126, 34, 0.1);
}

.reset-row.red-row {
    background: rgba(231, 76, 60, 0.1);
}

.reset-row.dark-red-row {
    background: rgba(192, 57, 43, 0.1);
}

.table-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.table-note p {
    color: #f39c12;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.table-note i {
    margin-right: 8px;
}

/* === HIDDEN FEATURES / TABS === */
.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.tab-btn.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
}

.equipment-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.equipment-card {
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.equipment-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.equipment-icon i {
    color: white;
    font-size: 16px;
}

.equipment-name {
    margin: 0;
    font-size: 16px;
}

.equipment-type {
    font-size: 12px;
    color: #aaa;
}

.equipment-stats {
    space-y: 8px;
}

.equipment-stats.detailed-stats .stat-row {
    font-size: 12px;
    padding: 3px 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
}

.stat-row.special-stat {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    padding-top: 8px;
}

.stat-level {
    color: #ddd;
}

.stat-value {
    color: #f39c12;
}

/* === NEWS SECTIONS === */
.featured-news, .latest-news {
    margin-top: 50px;
}

.featured-news-container {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.2) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(231, 76, 60, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.featured-news-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3) 0%, rgba(231, 76, 60, 0) 80%);
    border-radius: 0 0 0 150px;
    z-index: 0;
}

.featured-news-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.featured-news-image {
    flex: 0 0 300px;
}

.news-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 3px solid rgba(231, 76, 60, 0.5);
    transition: transform 0.3s;
}

.news-image:hover {
    transform: scale(1.03);
}

.featured-news-text {
    flex: 1;
}

.featured-news-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
}

.news-link {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s;
}

.news-link:hover {
    color: #ff6b6b;
}

.news-meta {
    margin-bottom: 20px;
    font-size: 14px;
    color: #aaa;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 5px;
}

.news-summary {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
    color: #ddd;
}

.no-news {
    text-align: center;
    padding: 40px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.1);
}

.no-news-icon {
    font-size: 40px;
    color: #aaa;
    margin-bottom: 15px;
}

.no-news-text {
    margin: 0;
    color: #aaa;
    font-size: 16px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.news-card {
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.6) 0%, rgba(30, 30, 45, 0.6) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.news-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card-image:hover {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(231, 76, 60, 0.9);
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

.news-card-content {
    padding: 25px;
}

.news-card-date {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.news-card-date i {
    margin-right: 5px;
}

.news-card-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.4;
}

.news-card-summary {
    margin-bottom: 20px;
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.read-more:hover {
    transform: translateX(5px);
}

.read-more i {
    font-size: 12px;
    margin-left: 5px;
}

.news-view-all {
    text-align: center;
    margin-top: 40px;
}

/* === ABOUT GAME === */
.about-game {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.7) 0%, rgba(30, 30, 45, 0.7) 100%);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.about-game-bg {
    position: absolute;
    right: -80px;
    bottom: -60px;
    opacity: 0.15;
    z-index: 0;
    width: 400px;
    height: 400px;
    background: url('assets/images/character.png') no-repeat center;
    background-size: contain;
    transform: rotate(10deg);
}

.about-game-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.about-game-content {
    position: relative;
    z-index: 1;
}

.about-description {
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 16px;
    color: #ddd;
}

.about-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .roadmap-update, .server-roadmap, .server-info, .character-reset-info, .hidden-features {
        margin-top: 30px;
    }
    
    .roadmap-card, .info-card, .character-info-card {
        margin-bottom: 20px;
    }
    
    .card-title {
        font-size: 18px !important;
    }
    
    .reset-table {
        font-size: 11px;
    }
    
    .reset-table th, .reset-table td {
        padding: 8px 4px;
        font-size: 10px;
    }
    
    .about-game {
        padding: 25px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .tab-navigation {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .tab-btn {
        width: 200px !important;
        text-align: center !important;
    }
    
    .equipment-card {
        min-width: 250px !important;
    }
    
    .roadmap-card.full-width {
        grid-column: span 1 !important;
    }
    
    .featured-news-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .featured-news-image {
        flex: none;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .rank-grid, .reward-grid-2col, .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section .btn {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        width: 100% !important;
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
    
    .reset-table {
        font-size: 10px !important;
    }
    
    .reset-table th, .reset-table td {
        padding: 6px 3px !important;
    }
    
    .event-title {
        font-size: 24px;
    }
    
    .section-header {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .header-icon {
        margin-right: 0;
    }
}
