*{
    color: #ffffff;
}

.breadcrumb{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    color: #ffffff;
    gap: clamp(0.5rem, 1vw, 1rem);
    font-weight: 600;
}

.breadcrumb .page{
    text-decoration: none;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.breadcrumb .page.active{
    color: #ffffffd5;
}

.newsnav{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 1rem);
    font-size: clamp(0.9rem, 2vw, 1.25rem);
}

.newsnav label, .newsnav select{
    color: #ffffff;
    filter: brightness(120%);
}

.filter{
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex-wrap: wrap;
}

select{
    border: 1px solid #ffffff85;
    border-radius: 5px;
    transition: 1s ease;
    padding: 0.5rem;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    min-height: 2.5rem;
}

select {
    outline: none;
    transition: 1s ease;
    background-color: transparent;
    cursor: pointer;
}

.search{
    align-items: center;
    justify-content: center;
    display: flex;
    gap: clamp(0.5rem, 1vw, 1rem);
    flex-wrap: wrap;
}

.search input{
    border: 1px solid #ffffff85;
    border-radius: 5px;
    padding: 0.5rem 0.8rem;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    min-height: 2.5rem;
    background-color: transparent;
    color: #ffffff;
    min-width: 150px;
}

.search input::placeholder{
    color: aquamarine;
}

.search button{
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    padding: 0.5rem 1rem;
    min-height: 2.5rem;
    min-width: 2.5rem;
    transition: all 0.3s ease;
}

.search button:hover {
    color: #05F2DB;
}

hr{
    height: 1px;
    width: 100%;
    opacity: 50%;
    margin: clamp(0.5rem, 1vw, 1rem) 0;
}

.icon{
    background-color: rgba(0, 0, 0, 0.116);
    border-radius: 5px;
    padding: clamp(0.3rem, 1vw, 0.5rem);
    transition: all 0.3s ease;
}

.icon:hover {
    background-color: rgba(5, 242, 218, 0.1);
}

.news-body-container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    width: 100%;
    flex-wrap: wrap;
}

.left{
    width: clamp(100%, 80%, 100%);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.left .upper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.5rem, 1vw, 1rem);
    width: 100%;
}

.right{
    width: clamp(100%, 20%, 100%);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.right .red-dot{
    background-color: red;
    border-radius: 50%;
    width: clamp(12px, 1.5vw, 20px);
    height: clamp(12px, 1.5vw, 20px);
    animation: pulse infinite 2s ease;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,87,76,0);
      }
      15% {
        box-shadow: 0 0 0 4px rgba(255,87,76,.4);
      }
      85% {
        box-shadow: 0 0 0 4px rgba(255,87,76,0);
      }
}

.right .icon{
    padding: clamp(0.3rem, 1vw, 0.5rem);
    background-color: #ffffff0a;
}

.live .icon{
    padding: clamp(0.5rem, 1vw, 0.8rem);
}

.body .header{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 1rem);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    width: 100%;
}

.featured , .trending , .feed, .live, .training , .tournaments, .mention, .teams{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.news-box, .list{
    background: #ffffff0a;
    width: 100%;
    backdrop-filter: blur(12px);
    padding: clamp(0.3rem, 1vw, 0.6rem);
    border-radius: 10px;
    display: flex;
    gap: clamp(0.3rem, 0.8vw, 0.5rem);
    flex-wrap: wrap;
    align-items: flex-start;
}

.news-card{
    background: #0000001a;
    padding: clamp(0.3rem, 0.8vw, 0.5rem);
    border-radius: 10px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    flex: 1 1 calc(25% - 10px);
    min-width: 200px;
}

@media (max-width:1200px) {
    .news-card {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 150px;
    }
}

@media (max-width:768px) {
    .news-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 130px;
    }
}

@media (max-width:520px) {
    .news-card {
        flex: 1 1 calc(50% - 5px);
        min-width: 45vw;
    }
}

.news-card.featured{
    border: 1px solid #ffd90289;
}

.news-card.trend{
    border: 1px solid #00ff4093;
}

.news-card.feed{
    border: 1px solid #ffffff99;
}

.news-card .info p{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
}

.news-card .info a{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    font-weight: 700;
    transition: 0.3s ease-in-out;
    display: block;
}

.news-card .info a:hover{
    color: aqua;
    transition: 0.3s ease-in-out;
}

.news-card .img{
    overflow: hidden;
    transition: 0.2s ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: clamp(100px, 15vw, 180px);
    width: 100%;
}

.news-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card:hover img{
    transform: scale(1.1);
    transition: 0.2s ease;
}

.tags{
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.news-card .tags p, .news-card .footer p{
    font-size: clamp(0.6rem, 1vw, 0.8rem);
    color: #e4e3e385;
    padding-left: 0.5rem;
}

.info{
    padding: clamp(0.2rem, 0.5vw, 0.3rem);
}

.featured .icon{
    border: 1px solid #ffd90289;
}

.trending .icon{
    border: 1px solid #00ff4093;
}

.feed .icon{
    border: 1px solid #ffffff99;
}

.newsnav .active a{
    padding: 0.3rem;
    border-bottom: 2px solid #05F2DB;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(0.5rem, 1vw, 1rem);
}

@media (max-width:768px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width:480px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.more{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    cursor: pointer;
    background: #ffffff14;
    border-radius: 5px;
    padding: clamp(0.6rem, 1.5vw, 1.2rem);
    transition: 0.3s ease;
    min-height: 2.5rem;
}

.more:hover {
    background: rgba(5, 242, 218, 0.1);
    border-color: #05F2DB;
}

.more:hover i{
    transform: translateX(10px);
    color: #05F2DB;
    transition: 0.3s ease;
}

.more:hover p{
    color: #05F2DB;
    transition: 0.3s ease;
}

.right .more{
    border: 1px solid #fda5acbc;
    background: rgba(0, 0, 0, 0.512);
    width: 100%;
}

.right .more:hover {
    border-color: #F20519;
}

.right .more:hover p,
.right .more:hover i{
    color: #F20519;
    transition: 0.3s ease;
}

.list{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fda5acbc;
    padding: clamp(0.6rem, 1.5vw, 1rem);
    min-height: 2.5rem;
}

.list p{
    color: #ffffff;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

@media (max-width:1308px) {
    .news-body-container{
        flex-direction: column;
    }

    .right{
        width: 100%;
    }

    .left {
        width: 100%;
    }
}