

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    transition: all .3s ease;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}



.container {
    width: 980px;
    margin: 0 auto;
}



.top {
    width: 100%;
    background: #1d1d1d;
    border-bottom: 3px solid #c89b3c;
}

.header-wrap {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}



.logo img {
    height: 58px;
}



.nav ul {
    display: flex;
    align-items: center;
}

.nav li {
    margin-left: 12px;
}

.nav a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    font-size: 15px;
    border-radius: 4px;
}

.nav a:hover,
.nav a.active {
    background: #c89b3c;
    color: #fff;
}



.main {
    padding: 12px 0 25px;
}



.banner {
    margin-bottom: 18px;
}

.banner-box {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
}

.banner-box img {
    width: 100%;
    height: 456px;
    object-fit: cover;
}

.card-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

.card {
    position: relative;
    width: 32%;
    height: 370px;
    overflow: hidden;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform .3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card1 {
    background-image: url("../images/2026fifa-1.jpg");
}

.card2 {
    background-image: url("../images/2026fifa-2.jpg");
}

.card3 {
    background-image: url("../images/2026fifa-3.jpg");
}



.card-mask {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    padding: 25px 20px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.78),
        rgba(0,0,0,0)
    );

    color: #fff;
}

.card-mask h2 {
    font-size: 24px;
    margin-bottom: 6px;
}

.card-mask p {
    font-size: 14px;
    color: rgba(255,255,255,.85);
}



.intro {
    padding: 28px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.intro h1 {
    margin-bottom: 18px;
    font-size: 30px;
    color: #222;
}

.intro p {
    margin-bottom: 16px;
    color: #555;
    line-height: 2;
    text-indent: 2em;
}



.footer {
    padding: 30px 0;
    background: #3f4345;
}

.footer-banner {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    margin-bottom: 8px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 24px;
}



@media screen and (max-width: 1024px) {

    .container {
        width: 94%;
    }

    .header-wrap {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

    .nav li {
        margin: 5px;
    }

    .card-list {
        flex-direction: column;
    }

    .card {
        width: 100%;
        margin-bottom: 15px;
    }

    .intro h1 {
        font-size: 24px;
    }
}



.article-page {
    margin-bottom: 30px;
}

.article-box {
    background: #fff;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.article-box h1 {
    font-size: 34px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.article-content h2 {
    font-size: 24px;
    color: #c89b3c;
    margin-top: 30px;
    margin-bottom: 18px;
    border-left: 5px solid #c89b3c;
    padding-left: 12px;
}

.article-content p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-image {
    margin: 30px 0;
    overflow: hidden;
    border-radius: 8px;
}

.article-image img {
    width: 100%;
    height: auto;
    transition: transform .4s ease;
}

.article-image img:hover {
    transform: scale(1.02);
}



@media screen and (max-width: 768px) {

    .article-box {
        padding: 20px;
    }

    .article-box h1 {
        font-size: 26px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content p {
        font-size: 15px;
    }

}



.banner-slider {
    position: relative;
    width: 100%;
    height: 456px;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    transition: opacity .6s ease;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 456px;
    object-fit: cover;
}



.slider-btn {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,.45);

    color: #fff;

    font-size: 22px;

    cursor: pointer;

    z-index: 10;

    transition: .3s;
}

.slider-btn:hover {
    background: rgba(0,0,0,.7);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}



.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 15px;

    transform: translateX(-50%);

    display: flex;
    gap: 10px;

    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: rgba(255,255,255,.5);

    cursor: pointer;

    transition: .3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}



.slide-content {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 35px 40px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.78),
        rgba(0,0,0,0)
    );

    color: #fff;

    z-index: 5;
}

.slide-content h2 {

    font-size: 32px;

    margin-bottom: 10px;

    font-weight: bold;
}

.slide-content p {

    font-size: 15px;

    color: rgba(255,255,255,.86);

    line-height: 1.8;
}





.article-layout {

    margin-top: 20px;

}



.article-list {

    width: 100%;

}



.post-item {

    display: flex;

    gap: 20px;

    background: #fff;

    border-radius: 8px;

    padding: 18px;

    margin-bottom: 20px;

    box-shadow: 0 2px 8px rgba(0,0,0,.06);

    transition: .3s;

}

.post-item:hover {

    transform: translateY(-4px);

}



.post-thumb {

    width: 260px;

    flex-shrink: 0;

}

.post-thumb img {

    width: 100%;

    height: 160px;

    object-fit: cover;

    border-radius: 6px;

}



.post-content {

    flex: 1;

}

.post-content h2 {

    margin-bottom: 10px;

}

.post-content h2 a {

    font-size: 24px;

    color: #222;

}

.post-content h2 a:hover {

    color: #c89b3c;

}

.post-meta {

    margin-bottom: 12px;

    font-size: 13px;

    color: #999;

}

.post-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 15px;

}



.read-more {

    display: inline-block;

    padding: 8px 18px;

    background: #c89b3c;

    color: #fff;

    border-radius: 4px;

}

.read-more:hover {

    opacity: .9;

}



.pagination {

    margin-top: 30px;

    margin-bottom: 30px;

    text-align: center;

}

.pagination a,
.pagination span {

    display: inline-block;

    margin: 0 5px;

    padding: 8px 14px;

    background: #fff;

    border-radius: 4px;

    color: #333;

    box-shadow: 0 2px 6px rgba(0,0,0,.06);

}

.pagination .now-page {

    background: #c89b3c;

    color: #fff;

}



.side-box {

    background: #fff;

    border-radius: 8px;

    padding: 25px;

    margin-bottom: 25px;

    box-shadow: 0 2px 8px rgba(0,0,0,.06);

}



.side-box h3 {

    margin-bottom: 18px;

    font-size: 24px;

    color: #222;

    border-left: 5px solid #c89b3c;

    padding-left: 12px;

}



.random-list li {

    margin-bottom: 14px;

    line-height: 1.9;

}

.side-date {

    display: inline-block;

    margin-right: 10px;

    color: #999;

    font-size: 13px;

}



.tag-cloud {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.tag-cloud a {

    display: inline-block;

    padding: 8px 14px;

    background: #f3f3f3;

    border-radius: 4px;

    color: #666;

    transition: .3s;

}

.tag-cloud a:hover {

    background: #c89b3c;

    color: #fff;

}



@media screen and (max-width: 768px){

    .post-item {

        flex-direction: column;

    }

    .post-thumb {

        width: 100%;

    }

}

@media screen and (max-width: 768px){

    .article-layout {

        flex-direction: column;

    }

    .article-list,
    .sidebar {

        width: 100%;

    }

    .post-item {

        flex-direction: column;

    }

    .post-thumb {

        width: 100%;

    }

}



.article-page {

    margin-top: 20px;

}



.breadcrumb {

    margin-bottom: 20px;

    padding: 15px 20px;

    background: #fff;

    border-radius: 8px;

    font-size: 14px;

    color: #666;

    box-shadow: 0 2px 8px rgba(0,0,0,.05);

}

.breadcrumb a {

    color: #c89b3c;

}



.article-box {

    background: #fff;

    border-radius: 8px;

    padding: 35px;

    margin-bottom: 25px;

    box-shadow: 0 2px 8px rgba(0,0,0,.06);

}



.article-title {

    font-size: 36px;

    color: #222;

    line-height: 1.5;

    margin-bottom: 20px;

    text-align: center;

}



.article-meta {

    text-align: center;

    color: #999;

    font-size: 14px;

    margin-bottom: 35px;

}



.article-content {

    font-size: 17px;

    color: #444;

    line-height: 2.1;

}

.article-content p {

    margin-bottom: 22px;

    text-indent: 2em;

}

.article-content img {

    max-width: 100%;

    height: auto;

    border-radius: 8px;

    margin: 25px auto;

    display: block;

}



.article-tags {

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #eee;

}

.article-tags span {

    font-weight: bold;

    color: #333;

}

.article-tags a {

    display: inline-block;

    margin: 8px 8px 0 0;

    padding: 8px 14px;

    background: #f3f3f3;

    border-radius: 4px;

    color: #666;

    transition: .3s;

}

.article-tags a:hover {

    background: #c89b3c;

    color: #fff;

}



.article-prev-next {

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #eee;

}

.article-prev-next div {

    margin-bottom: 14px;

    font-size: 16px;

    line-height: 1.8;

}

.article-prev-next a {

    color: #c89b3c;

}

.article-prev-next a:hover {

    text-decoration: underline;

}



@media screen and (max-width:768px){

    .article-box {

        padding: 22px;

    }

    .article-title {

        font-size: 28px;

    }

    .article-content {

        font-size: 16px;

    }

}




.latest-posts {

    margin-top: 28px;

    margin-bottom: 35px;

}



.section-title {

    margin-bottom: 22px;

}

.section-title h2 {

    position: relative;

    font-size: 30px;

    color: #222;

    padding-left: 16px;

}

.section-title h2::before {

    content: '';

    position: absolute;

    left: 0;
    top: 5px;

    width: 6px;
    height: 34px;

    background: #c89b3c;

    border-radius: 3px;

}



.latest-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

}



.latest-item {

    background: #fff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 2px 8px rgba(0,0,0,.06);

    transition: .3s;

}

.latest-item:hover {

    transform: translateY(-5px);

}



.latest-thumb {

    overflow: hidden;

}

.latest-thumb img {

    width: 100%;

    height: 210px;

    object-fit: cover;

    transition: transform .4s ease;

}

.latest-item:hover img {

    transform: scale(1.05);

}



.latest-item h3 {

    padding: 18px;

    line-height: 1.8;

}

.latest-item h3 a {

    font-size: 20px;

    color: #222;

}

.latest-item h3 a:hover {

    color: #c89b3c;

}



@media screen and (max-width:768px){

    .latest-grid {

        grid-template-columns: 1fr;

    }

}