        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
        
        :root {
            --main-color: #fd9901;
            --dark-color: #1a1a1a;
            --light-color: #f5f5f5;
            --hover-color: #fd9901;
            --text-color: #ffffff;
            --gold: #FFD700;
            --silver: #C0C0C0;
            --bronze: #CD7F32;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--text-color);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Шапка */
        header {
            background: linear-gradient(to right, #000000, #1a1a1a);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--main-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--text-color);
        }
        
        /* Навигация */
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        nav.desktop-nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav.desktop-nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        nav.desktop-nav ul li a:hover,
        nav.desktop-nav ul li a.active {
            color: var(--main-color);
        }
        
        nav.desktop-nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--main-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav.desktop-nav ul li a:hover::after,
        nav.desktop-nav ul li a.active::after {
            width: 100%;
        }
        
        /* Основной контент */


        .main-content {
	
            flex: 1;
            padding: 120px 20px 80px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }


        
        .section-title {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--main-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Подиум */
        .podium {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 20px;
            margin-bottom: 50px;
        }
        
        .podium-place {
            text-align: center;
            position: relative;
        }
        
        .podium-1 {
            width: 200px;
            height: 250px;
            background: linear-gradient(to bottom, var(--gold), #333);
            border-radius: 10px 10px 0 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding-top: 20px;
        }
        
        .podium-2 {
            width: 180px;
            height: 200px;
            background: linear-gradient(to bottom, var(--silver), #333);
            border-radius: 10px 10px 0 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding-top: 20px;
        }
        
        .podium-3 {
            width: 160px;
            height: 150px;
            background: linear-gradient(to bottom, var(--bronze), #333);
            border-radius: 10px 10px 0 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding-top: 20px;
        }
        
        .place-number {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .player-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            margin-bottom: 15px;
        }
        
        .player-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .player-money {
            color: var(--main-color);
            font-weight: 700;
        }
        
        /* Топ-20 список */
        .top-list {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            border: 1px solid rgba(255, 107, 0, 0.3);
        }
        
        .top-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 24px;
            color: var(--main-color);
        }
        
        .top-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .top-item:hover {
            background: rgba(255, 107, 0, 0.1);
        }
        
        .top-number {
            font-weight: 700;
            width: 40px;
            color: var(--main-color);
        }
        
        .top-name {
            flex: 1;
            font-weight: 600;
        }
        
        .top-money {
            font-weight: 700;
            color: var(--main-color);
        }
        
        /* Футер */
        footer {
            background: var(--dark-color);
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            color: rgba(236, 240, 241, 0.6);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: rgba(236, 240, 241, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--main-color);
        }
        
/* Бургер-меню для мобильных */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 70%;
            height: 100vh;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1001;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            padding: 80px 20px 20px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav ul {
            list-style: none;
        }
        
        .mobile-nav ul li {
            margin-bottom: 20px;
        }
        
        .mobile-nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 18px;
            display: block;
            padding: 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .mobile-nav ul li a:hover {
            background: rgba(255, 107, 0, 0.2);
            color: var(--main-color);
        }
        
        .mobile-nav ul li a.active {
            color: var(--text-color);
            background: rgba(255, 107, 0, 0.2);
        }
        
        .mobile-nav ul li a.active::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 100%;
            background: var(--main-color);
            left: 0;
            top: 0;
        }
        
        .close-mobile-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--text-color);
            cursor: pointer;
        }
        
        .account-btn {
            background-color: var(--main-color);
            color: var(--dark-color);
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
text-decoration: none;
     
        }
        
        .account-btn:hover {
            background-color: var(--hover-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
        }
        
        .mobile-account-btn {
            display: none;
            background-color: var(--main-color);
            color: var(--dark-color);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
            text-decoration: none;
        } 
  
    
        .forbes_container {
            background-color: #111;
            min-height: 100vh;
            padding-bottom: 10vh
        }

        .fobres-text-block {
            align-items: center;
            color: #fff;
            display: flex;
            font-size: 6vh;
            font-weight: 800;
            justify-content: center;
            padding: 10vh 0
        }

        .forbes-img-container {
            display: flex;
            justify-content: center;
            margin-bottom: 10vh
        }

        .forbes-img-one-text,.forbes-img-three-text,.forbes-img-two-text {
            align-items: center;
            display: flex;
            font-size: 6vh;
            font-weight: 200;
            justify-content: center;
            margin-bottom: 2vh
        }

        .forbes-img-one-text {
            color: #ff3500
        }

        .forbes-img-two-text {
            color: #9aa7d7
        }

        .forbes-img-three-text {
            color: #8a420e
        }

        .forbes-img-three,.forbes-img-two {
            margin-top: 15vh
        }

        .forbes-img-three {
            margin-left: 10vh
        }

        .forbes-img-two {
            margin-right: 10vh
        }

        .forbes-down-background-one {
            background-image: linear-gradient(211.23deg,#fda301 -179.92%,rgba(253,163,1,0) 73.53%);
            display: flex;
            justify-content: center;
            max-height: 40vh;
            max-width: 27vh;
            width: 97%
        }

        .forbes-down-background-one-block {
            align-items: center;
            width: 100%
        }

        .forbes-down-background-one-block,.forbes-down-background-two,.forbes-img-one-up,.forbes-img-three-up,.forbes-img-two-up {
            display: flex;
            justify-content: center
        }

        .forbes-down-background-two {
            background-image: linear-gradient(211.23deg,#d4daef -179.92%,rgba(212,218,239,0) 73.53%);
            max-height: 40vh;
            max-width: 27vh;
            width: 97%
        }

        .forbes-down-background-two-block {
            align-items: center;
            display: flex;
            justify-content: center;
            width: 100%
        }

        .forbes-down-background-three {
            background-image: linear-gradient(211.23deg,#976b1b -179.92%,rgba(151,107,27,0) 73.53%);
            display: flex;
            justify-content: center;
            max-height: 40vh;
            width: 97%
        }

        .forbes-down-background-three-block {
            align-items: center;
            display: flex;
            justify-content: center;
            width: 100%
        }

        .forbes-down-image {
            height: 40vh;
            max-width: 275px
        }

        .forbes-up-nickname {
            align-items: center;
            color: #fff;
            display: flex;
            font-size: 3vh;
            font-weight: 800;
            justify-content: center;
            letter-spacing: .3vh;
            padding-top: 5vh
        }

        .dashboard_headers {
            background-color: #111
        }

        .forbes-up-money {
            align-items: center;
            color: #fff;
            font-size: 2.5vh;
            font-weight: 100;
            padding-top: 2vh
        }

        .forbes-top-block,.forbes-up-money {
            display: flex;
            justify-content: center
        }

        .forbes-top-block {
            padding-top: 1vh
        }

        .forbes-top {
            align-items: center;
            display: flex;
            justify-content: space-between;
            padding: 0 20%;
            width: 100%
        }

        .forbes-number {
            border: .0625rem solid hsla(0,0%,100%,.1);
            border-radius: 50%;
            color: #fff;
            font-size: 3vh;
            font-weight: 200;
            height: 5.25vh;
            width: 5.25vh
        }

        .forbes-number,.forbes-top-one {
            align-items: center;
            display: flex;
            justify-content: center
        }

        .forbes-nick {
            color: #fff;
            font-size: 2vh;
            font-weight: 500;
            letter-spacing: .2vh;
            margin-left: 3vh
        }
		@media (max-width: 992px) {
            nav.desktop-nav, .account-btn {
                display: none;
            }
            
            .mobile-menu-btn, .mobile-account-btn {
                display: block;
            }
			.forbes-img-one, .forbes-img-two, .forbes-img-three {
				width: 15%; /* Чуть меньше ширина */
			}
			
			.forbes-img-one-text, .forbes-img-two-text, .forbes-img-three-text {
				font-size: 1.5vh;
			}
			
			.forbes-down-image {
				height: 12vh;
			}
			
			.forbes-up-nickname {
				font-size: 1.0vh;
			}
			
			.forbes-up-money {
				font-size: 1.0vh;
			}
		}
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            color: var(--secondary);
            transform: scale(1.05);
        }
        
        .logo img {
            height: 4vh;
        }