      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
body {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
  position: relative; /* needed for stacking context */
}

/* Background image overlay with blur + dark overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../cc.webp") center/cover no-repeat;
  z-index: -1;           /* keep behind content */
  filter: blur(2px);      /* blur effect */
}

        



        
        /* 3D Sticky Sidebar */
        .sidebar {
            width: 280px;
            
            
            padding: 25px 15px;
            
            height: 100vh;
            position: sticky;
            top: 0;
            overflow-y: auto;
            transform-style: preserve-3d;
            perspective: 1000px;
            
            z-index: 100;
        }

        .sidebar_inner {
            background: linear-gradient(97deg, #000000 0%, #23232300 100%);
    border-radius: 20px;
    padding: 25px 15px;
    box-shadow: 0 0 15px 0px rgb(255 255 255 / 8%), inset 7px 11px 20px 4px rgb(0 0 0);
        }

        .sidebar.active {
  height: 100%; /* or auto if you want full height */
}

.sidebar_inner.active {
  height: 100%; /* or auto if you want full height */
}
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            
            padding-bottom: 20px;
            
            transform: translateZ(20px);
            justify-content: center;
        }
        
        .logo {
            width: 150px;
            height: 150px;
            
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            
            transform: rotate(0deg);
            transition: all 2.3s ease;
        }

        .menu-icon {
            display: none;
        }

        .logo img {
  width: 150px;   /* adjust size */
  height: auto;   /* keep aspect ratio */
  display: block;
  margin: 0 auto; /* center it */
}

        
        .logo:hover {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 20px rgba(255, 0, 51, 0.8);
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(45deg, #ff0033, #ff9999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .menu-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 40px;
        }
        
        .menu-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            transform: translateZ(10px);
            border-left: 3px solid transparent;
        }
        
        .menu-item:hover {
            background: rgba(255, 0, 51, 0.2);
            transform: translateZ(20px) translateX(10px);
            border-left: 3px solid #ff0033;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .menu-item.active {
            background: rgba(255, 0, 51, 0.25);
            
            border-left: 3px solid #ff0033;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .menu-item i {
            font-size: 20px;
            width: 24px;
            text-align: center;
            color: #ff0033;
        }
        
        .menu-item span {
            font-weight: 600;
            font-size: 16px;
        }
        
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff0033, transparent);
            margin: 25px 0;
            transform: translateZ(10px);
        }
        
        .teams-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ff0033;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: translateZ(15px);
            text-shadow: 0 0 5px rgba(255, 0, 51, 0.5);
        }
        
        .team-logos {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .team-logo {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 15px 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: translateZ(10px);
            border: 1px solid #333;
        }
        
        .team-logo:hover {
            background: rgba(255, 0, 51, 0.2);
            transform: translateZ(20px) scale(1.05);
            border: 1px solid #ff0033;
            box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
        }
        
        .team-logo span {
            font-weight: 700;
            font-size: 16px;
            color: #fff;
        }
        
        .stats-container {
            background: linear-gradient(135deg, rgba(255, 0, 51, 0.1), rgba(0, 0, 0, 0.2));
            border-radius: 15px;
            padding: 20px;
            transform: translateZ(15px);
            border: 1px solid #333;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        .stats-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ff0033;
            text-align: center;
        }
        
        .stats-value {
            font-size: 32px;
            font-weight: 800;
            text-align: center;
            background: linear-gradient(45deg, #ff0033, #ff9999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 10px;
        }
        
        .stats-label {
            font-size: 14px;
            text-align: center;
            color: #ccc;
        }
        
        .main-content {
    flex: 1;
    padding: 30px;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
        
/* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 1px;
            display: none;
        }
        
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #ff0033;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #ff3355;
        }

.top-banner {
				display:none;
			}




       /* Responsive design */
        @media (max-width: 1100px) {
            body {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                height: 0px;
                position: relative;
                border-radius: 0;
				padding:0px;
            }

            .sidebar_inner {
                height: 260px;
				border-radius:0px;
				
            }
            
            .menu-items {
                flex-direction: row;
                flex-wrap: wrap;
                margin-top: 30px;
            }

            .menu-items {
                flex-direction: row;
            }
            
            .team-logos {
                grid-template-columns: repeat(4, 1fr);
            }

            .logo-container {
                
            }

            .logo {
                
                height:50px;
				display: none;
                
                

            }

            .logo img {
                width: 100px;
                margin: 0;
                
            }

            .menu-icon {
                display:block;
                
                padding: 0px;
            }

            .main-content {
                
                padding: 10px;
				z-index: 1000;
            }

            .search-box {
                width: 40%;
				
            }

            .featured12-split-container {
            flex-direction: column;
            perspective: unset;
        }

        .featured12-card-image {
            height: 210px;
            
        }

        .postlist-grid {
            grid-template-columns: repeat(2, 1fr);
        }
			
			.top-banner {
				display:block;
			}
			
			.menu-item {
				padding:10px 15px;
				font-size:12px;
			}
			
			.menu-item span {
    			font-weight: 500;
				font-size: 13px;
			}


        }
        
        @media (max-width: 768px) {
            .content-header {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            
            
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .player-info {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .player-stats {
                grid-template-columns: 1fr;
            }
            
            .team-logos {
                grid-template-columns: repeat(2, 1fr);
            }
			

            
           

            

            
        }
