    body {
  background-color: transparent;

html {
  background-color: #f0f8ff; 
}
        .container {
            max-width: 1024px;
            margin: 0 auto;
            padding: 20px;
            background: linear-gradient(180deg, #f0f9ff 0%, #e6f4ff 100%, 0.2);
        }
    
        .navv {
            position: sticky;
            top: 0;
            background: #007bff;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 25px;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0,123,255,0.2);
        }
    
        .navv-link {
            color: #fff;
            text-decoration: none;
            margin: 0 15px;
            font-weight: 600;
            transition: opacity 0.3s;
        }
    
        .navv-link:hover {
            opacity: 0.9;
        }
    
        .section {
            background: rgba(255,255,255,0.95);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0,123,255,0.08);
            border: 1px solid rgba(0,123,255,0.1);
        }
    
        .section-title {
            color: #0056b3;
            font-size: 1.5rem;
            border-bottom: 3px solid #007bff;
            padding-bottom: 12px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
		
		.section-titlee{
		    color: #0056b3;
		    font-size: 1.7rem;
			text-align: center;
		    align-items: center;
		    gap: 10px;
		}
    
        .match-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
    
        .match-table th {
            background: #007bff;
            color: white;
            padding: 14px;
            font-weight: 600;
        }
    
        .match-table td {
            padding: 14px;
			text-align: center;
            border-bottom: 1px solid #e3f2ff;
            background: rgba(255,255,255,0.98);
        }
        
        
.match-table tr:nth-child(even) td {
    background: #f0f7ff;
}
 

.match-table tr:hover td {
    background: #e3f2ff; 
}
    
        .player-ranking {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
    
        .player-card {
            background: linear-gradient(135deg, #f8fbff 0%, #e3f1ff 100%);
			text-align: center;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid rgba(0,123,255,0.15);
            transition: transform 0.3s;
        }
    
        @media (min-width: 768px) {
            .container {
                padding: 30px;
            }
            .section {
                padding: 30px;
            }
            .player-ranking {
                grid-template-columns: repeat(4, 1fr);
            }
        }
    
        @media (max-width: 480px) {
            .navv {
                flex-direction: column;
                text-align: center;
            }
            .navv-link {
                margin: 5px 0;
            }
            .player-ranking {
                grid-template-columns: 1fr;
            }
        }
        

        .goumai-btn {
            --main-color: #00a1d6;
            --hover-color: #00b5e5;
            --shadow-color: rgba(0, 161, 214, 0.3);
            
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--main-color) 0%, var(--hover-color) 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            box-shadow: 0 4px 6px var(--shadow-color);
            position: relative;
            overflow: hidden;
        }

        .goumai-btn::after {
            content: '';
            width: 24px;
            height: 24px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M7.2 6.4l6.4 6.4-6.4 6.4 1.6 1.6 8-8-8-8z"></path></svg>');
            transition: transform 0.3s ease;
        }

        .goumai-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px var(--shadow-color);
            background: linear-gradient(135deg, var(--hover-color) 0%, var(--main-color) 100%);
        }

        .goumai-btn:hover::after {
            transform: translateX(4px);
        }

        .goumai-btn:active {
            transform: translateY(0);
            box-shadow: 0 4px 6px var(--shadow-color);
        }

        .goumai-btn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
            animation: shine 3s infinite;
            opacity: 0.5;
        }

        @keyframes shine {
            0% { transform: translateX(-50%) rotate(45deg); }
            100% { transform: translateX(150%) rotate(45deg); }
        }
        
        @media screen and (max-width: 768px) {
    .match-table {
        font-size: 14px;
        min-width: unset;
    }
    
    .match-table th,
    .match-table td {
        padding: 10px 8px;
    }
}

@media screen and (max-width: 480px) {
    .match-table {
        font-size: 12px;
    }
    
    .match-table th,
    .match-table td {
        padding: 8px 6px;
    }
}
        
        .containerrr {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; 
    padding: 25px 0; 
    
    z-index: 999; 

}

