.container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .container-my {
            max-width: 1200px;
            margin: 0 auto;
        }
        .grid-my {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            justify-content: center;
        }
        .clubs-card {
            background: white;
            padding: 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        .clubs-photocontainer {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
        }
        .clubs-photo {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #343a40;
            background: linear-gradient(45deg, #fff, #fff);
        }
        .clubs-name {
            font-size: 1rem;
            font-weight: bold;
            color: #343a40;
            margin-bottom: 1px;
        }

        .title {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .players-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            justify-content: center;
        }

        .player-card {
            background: white;
            padding: 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .photo-container {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
        }

        .player-photo {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #343a40;
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .player-number {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ffffff;
            color: rgb(0, 0, 0);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            border: 2px solid #343a40;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        .player-name {
            font-size: 1rem;
            font-weight: bold;
            color: #343a40;
            margin-bottom: 1px;
        }

        .player-position {
            font-size: 0.8rem;
            font-weight: 500;
            padding: 5px 10px;
            display: inline-block;
        }

        /* Адаптивность для мобильных устройств */
        @media (max-width: 768px) {
            .players-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 10px;
            }
            
            .title {
                font-size: 2rem;
            }
            
            .photo-container {
                width: 120px;
                height: 120px;
            }
        }

        @media (max-width: 480px) {
            .players-grid {
                grid-template-columns: 1fr;
            }
            
            body {
                padding: 20px 10px;
            }
        }
                .tournament-container {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Два равных столбца */
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tournament-table {
            background: #f5f5f5;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .table-title {
            background: #28281e;
            color: white;
            padding: 12px;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
        }

        .table-header {
            display: grid;
            grid-template-columns: 30px 1fr 40px 40px 40px;
            gap: 1px;
            background: #939378;
            color: white;
            padding: 8px 10px;
            font-size: 12px;
        }

        .table-row {
            display: grid;
            grid-template-columns: 30px 1fr 40px 40px 40px;
            gap: 1px;
            padding: 8px 10px;
            align-items: center;
            border-bottom: 1px solid #ddd;
            background: white;
        }

        .table-row:nth-child(even) {
            background: #f9f9f9;
        }

        .position {
            font-weight: bold;
            text-align: center;
        }

        .table-team-name {
            font-weight: 500;
        }

        .stats {
            text-align: center;
            font-size: 14px;
        }
        .stats-row {
      width: 120px;
    text-align: right;
    margin-left: auto;
        }

                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .player-card1 {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .player-header1 {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 25px;
        }
        
        .player-photo1 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 4px solid white;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .player-photo1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .player-info1 {
            flex: 1;
        }
        
        .player-name1 {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .player-position1 {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .player-number1 {
            font-size: 60px;
            font-weight: bold;
            opacity: 0.8;
        }
        
        .player-details {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            padding: 25px;
            background-color: #f9f9f9;
            border-bottom: 1px solid #eee;
        }
        
        .detail-item {
            display: flex;
            flex-direction: column;
        }
        
        .detail-label {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .detail-value {
            font-size: 16px;
            font-weight: 500;
        }
        
        .additional-info {
            padding: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1e3c72;
        }
        
        .additional-text {
            line-height: 1.6;
            color: #555;
        }
        
        .stats-section {
            padding: 25px;
        }
        
        .stats-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 10px 0;
        }
        
        .stats-toggle:hover {
            background-color: #f5f5f5;
            border-radius: 5px;
        }
        
        .stats-content {
            display: none;
            margin-top: 20px;
            overflow-x: auto;
        }
        
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        
        .stats-table th {
            background-color: #1e3c72;
            color: white;
            padding: 12px 15px;
            text-align: left;
        }
        
        .stats-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .stats-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .stats-table tr:hover {
            background-color: #f0f0f0;
        }
        
        .toggle-icon {
            font-size: 20px;
            transition: transform 0.3s;
        }
        
        .expanded .toggle-icon {
            transform: rotate(180deg);
        }
        
        @media (max-width: 600px) {
            .player-header {
                flex-direction: column;
                text-align: center;
            }
            
            .player-number {
                margin-top: 15px;
            }
            
            .player-details {
                grid-template-columns: 1fr;
            }
        }