
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
 margin: 0;
    padding: 0;}


#mainNav {
    display: flex;               
    justify-content: center;     
    align-items: center;         
    background-color: #171717; 
}

#mainNav .navbar-brand {
    color: #15803d;              
    font-size: 28px;             
    font-weight: bold;           
    text-decoration: none;
    text-align: center;
}

#mainNav .container {
    display: flex;
    justify-content: center;  
    align-items: center;      
}

#mainNav .navbar-brand:hover {
    color: white;           
    text-decoration: none;
}

@media(max-width:768px) {
    #mainNav {
        padding: 10px 15px;
    }
    #mainNav .navbar-brand {
        font-size: 18px;
    }
}

    .navbar {
      transition: background .3s, box-shadow .3s;
    }


     .container {
    max-width: 1600px;           
    width: 95%;                  
    margin: 40px auto 40px auto; 
    padding: 20px 30px;          
    background-color: #171717;   
    box-sizing: border-box;      
    border-radius: 8px;          
    color: #fff;             
}

    .main-flex {
      display: flex;
      gap: 20px;
    }

    .match-sidebar {
      width: 300px;
      overflow-y: scroll;
      scrollbar-width: none;
    }

    .match-sidebar::-webkit-scrollbar {
      display: none;
    }

    .match-box {
      background: #262626;
      color: white;
      border-radius: 5px;
      padding: 10px;
      margin-bottom: 8px;
      cursor: pointer;
      transition: .2s;
      font-weight: 600;
    }

    .match-box:hover {
background-color: #404040;    }

    .team-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
    }

    .team-logo {
      width: 34px;
      height: 34px;
    }

    .center-area {
      flex: 1;
    }

    .default-screen {
      background: #000;
      color: #fff;
      width: 100%;
      height: 520px;
      border-radius: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 22px;
      font-weight: 600;
    }

    .iframe-wrap {
      width: 100%;
      height: 520px;
      border: 2px solid #000;
      border-radius: 12px;
      overflow: hidden;
      display: none;
    }

    .iframe-wrap iframe {
      width: 100%;
      height: 100%;
    }

    .backlinks {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
    }

    .backlink-box {
      background: #262626;
      padding: 8px 14px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
    }

    .backlink-box:hover {
      background: #404040;
    }

    .ads-right {
      width: 300px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }


.note {
    background-color: #15803d;  
    color: #fff;                
    font-weight: 600;           
    font-size: 15px;            
    padding: 12px 20px;         
    border-radius: 5px;         
    display: flex;              
    align-items: center;        
    gap: 10px;                  
    margin-bottom: 15px;        
}

@media (max-width: 768px) {

    .container {
        width: 95%;            
        padding: 15px 10px;     
        border-radius: 6px;     
    }

    .main-flex {
        display: block;         
        gap: 15px;              
    }

    .match-sidebar {
        width: 100%;            
        height: auto;           
        margin-bottom: 15px;    
        overflow-y: visible;    
    }

    .center-area {
        width: 100%;            
        margin-bottom: 20px;    
    }

    .iframe-wrap,
    .default-screen {
        width: 100%;            
        height: auto;          
        min-height: 300px;      
    }

    .iframe-wrap iframe {
        width: 100%;
        height: 300px;         
    }

    .ads-right {
        width: 100%;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .ads-right .ad,
    .center-area .ad,
    .mb-3.text-center,
    .mt-3.text-center {
        width: 100%;          
        height: auto;          
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .backlinks {
        flex-direction: column;
        gap: 10px;
    }

    .backlink-box {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .note {
        font-size: 14px;       
        padding: 10px 15px;
        border-radius: 5px;
    }
}