    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #050505;
            color: white;
            overflow-x: hidden;
        }

        /* global link style */
        a {
            color: rgba(30, 144, 217, 0.8);
            text-decoration: none;
        }

        section {
            position: relative;
            width: 100%;
        }

        /* Main section - Home page */
        .section_hero {
            height: 100vh;
            overflow: hidden;
        }

        .hero_bg {
            position: absolute;
            inset: 0;
            background-image: url('../img/bg_5.jpg');
            background-size: cover;
            background-position: center;
            transform: scale(1.2);
            will-change: transform;
        }

        .hero_overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero_content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 2rem;
        }

        .topbar {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            border-radius: 1rem;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
        }

        .logo {
            min-width:0;
        }
            
        .main_logo {
            display: block;
            width: 100%;
            max-width: 20rem;
            height: auto;
            padding: 0.75rem;
        }

        .menu {
            padding: 1.2rem 3rem;
            display: flex;
            align-items: center;
            gap: 4rem;
            width: fit-content;
            height: fit-content;
            list-style: none;
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 0.2rem;
            color: rgba(255, 255, 255, 1.0);
        }

        .menu li {
            cursor: pointer;
            transition: 0.3s ease;
        }

        .menu li:hover {
            color: white;
            transform: translateY(-2px);
        }

        .hero_image_wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
            padding: 2rem 0;
        }

        .hero_image {
            width: 100%;
            max-width: 1200px;
            height: 60vh;
            object-fit: cover;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
        }

        .hero_bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            padding-bottom: 1rem;
            text-align: center;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            border-radius: 1rem;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
        }

        .scroll_indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.25rem;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .mouse {
            width: 28px;
            height: 50px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 999px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .mouse_dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: white;
            animation: scrollBounce 1.5s infinite;
        }

        @keyframes scrollBounce {
            0% {
                transform: translateY(0);
                opacity: 1;
            }

            50% {
                transform: translateY(12px);
                opacity: 0.4;
            }

            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* FEATURES */

        .section_features {
            padding-top: 8rem;
            min-height: 200vh;
            position: relative;
        }

        .features_bg {
            position: absolute;
            inset: 0;
            background-image: url('../img/main_bg.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            transform: translateY(0px);
            will-change: transform;
        }

        .features_content {
            position: sticky;
            top: 0;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding: 2rem 6rem;
        }

        .features_inner {
            width: 100%;
            max-width: 1300px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            padding-bottom: 12rem;
        }

        .features_left {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .features_title {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-bottom: 4rem;
        }

        .features_title small {
            white-space: nowrap;
            align-self: center;
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.3rem;
            font-weight: 600;
        }

        .features_title h1 {
            font-size: 2rem;
            font-weight: 400;
            opacity: 0.75;
        }

        .flame_emoji {
            height: 2rem;
            width: 2rem;
            position: relative;
            top: 0.2rem;
        }

        .feature_list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .feature_item {
            white-space: nowrap;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 0.3rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.03);
            transform: scale(0.90);
            transition: all 0.45s ease;
        }

        .feature_item.active {
            opacity: 1;
            transform: scale(1);
            border-color: rgba(255, 60, 60, 0.8);
            background: rgba(255, 60, 60, 0.12);
            box-shadow: 0 10px 40px rgba(255, 60, 60, 0.15);
        }

        .feature_dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ff3c3c;
            margin-top: 0.7rem;
            flex-shrink: 0;
        }

        .feature_item span:last-child {
            font-size: clamp(1rem, 2vw, 1.6rem);
            line-height: 1.5;
        }

        .image_container {
            position: relative;
            width: 32vw;
            aspect-ratio: 1.78359;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        }

        .feature_image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1.08);
            transition: opacity 0.7s ease, transform 1s ease;
        }

        .feature_image.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        /* DISCORD BANNER */

        .discord_banner{
            display: grid;
            grid-template-columns: 14rem 1fr;
            grid-template-rows: 1fr 1fr;
            height: 9rem;
            background-color: rgba(80, 111, 252, 0.4);
            border-radius: 1rem;
        }

        .discord_headline{
            padding-left: 1rem;
            padding-top: 0.2rem;
            font-size: 2rem;
        }

        .discord_horizontal{
            display: flex;
            flex-direction: row;
        }

        .discord_logo_wrapper{
            padding: 0.8rem;
            padding-left: 3.6rem;
        }

        .discord_logo{
            width: 6rem;
            aspect-ratio: 1.3158;
        }

        .discord_lines{
            white-space: nowrap;
            padding: 1.2rem;
            line-height: 2rem;
            font-size: 1.5rem;
        }


        /* COMMUNITY */

        .community_bg {
            position: absolute;
            inset: 0;
            background-image: url('../img/bg_1.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            transform: translateY(0px);
            will-change: transform;
        }

        .community_section {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .community_grid{
            display: grid;
            align-items: center;
            grid-template-columns: 1fr 1fr;
        }

        .community_card{
            padding: 4rem;
            align-items: center;
        }

        .community_card h2 {
            width: auto;
            margin-bottom: 2rem;
           
            line-height: 1.1;
            font-size: 2rem;
            font-weight: 400;
        }

        /* HALL_OF_FAME */

       .stats_bg {
            position: absolute;
            inset: 0;
            background-image: url('../img/bg_3.jpg');
            background-size:cover;
            opacity: 0.2;
            transform: translateY(0px);
            will-change: transform;
            z-index: 0;
        }

        .section_drivers {
            height: 160vh;
            overflow: hidden;
            position: relative;
        }

       .drivers_title {
            padding-bottom: 2rem;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 400;
        }

        .drivers_title h1{
            gap: 1rem;
            padding-top: 12rem;
            padding-bottom: 1rem;
            text-align: center;
            font-size: 2rem;
            font-weight: 600;
        }

        .stats_table_wrapper {
            width: auto;
            align-self: center;
            margin: 0 auto;
            overflow: visible;
            display: flex;
            justify-content: center;
        }

        .stats_table {
            width: auto;
            border-collapse: separate;
            border-spacing: 0 0.2rem;
            font-family: monospace;
            color: white;
        }

        .stats_table th {
            text-align: left;
            padding: 0.2rem;
            padding-right: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
            background: rgba(255,255,255,0.06);
        }

        .stats_table td {
            padding: 0.2rem;
            padding-right: 2rem;
            white-space: nowrap;
        }

        .stats_table tr {
            padding: 0.1rem;
        }

        /* CARD ROW STYLE */
        .stats_table tbody tr {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.25s ease;
        }

        /* rounded corners per row */
        .stats_table tbody tr td:first-child {
            border-top-left-radius: 12px;
            border-bottom-left-radius: 12px;
        }

        .stats_table tbody tr td:last-child {
            border-top-right-radius: 12px;
            border-bottom-right-radius: 12px;
        }

        /* hover glow */
        .stats_table tbody tr:hover {
            background: rgba(255, 60, 60, 0.10);
            transform: scale(1.01);
            box-shadow: 0 10px 30px rgba(255, 60, 60, 0.15);
        }

        .tooltip {
            position: relative;
            display: inline-block;
            cursor: help;
            color: rgba(233, 123, 0, 1.0)
        }

        .tooltip:hover .tooltip_text {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-4px);
        }

        .tooltip_text {
            position: absolute;
            bottom: 140%;
            left: 50%;
            transform: translateX(-50%);
            width: max-content;
            max-width: 320px;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            background: rgba(20,20,20,0.95);
            color: white;
            font-size: 0.85rem;
            line-height: 1.4;
            opacity: 0;
            visibility: hidden;
            transition:
                opacity 0.2s ease,
                transform 0.2s ease;
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.08);
            z-index: 100;
        }

        .full_stats{
            position: relative;
            padding-top: 4rem;
            width: 100%;
            text-align: center;
            z-index: 2;
            opacity: 1;
        }

        .stats_img{
            width: 100%;
            max-width: 1400px;
        }

        .league_img{
            width: 100%;
            max-width: 1400px;
        }

        /* LEAGUE */
        .section_league {
            overflow: hidden;
        }

        .league_title {
            text-align: center;
            padding-top: 4rem;
            font-size: 2rem;
            font-weight: 400;
        }

        .league_title h1{
            gap: 1rem;
            padding-bottom: 1rem;
            padding-right: 1rem;
            text-align: right;
            font-size: 1rem;
            font-weight: 100;
            color:rgba(37, 154, 226, 0.4)
        }

        /* MOBILE */
        @media (max-width: 900px) {
            
            /* shrink base font size */
            html {
                font-size: 12px;
            }

            .hero_content {
                padding: 1.2rem;
            }

            .menu {
                gap: 1rem;
                font-size: 1.8rem;
            }

            .hero_image {
                height: 42vh;
            }

            .features_title h1 {
                font-size: 1.5rem;
                font-weight: 300;
                opacity: 0.75;
            }

            .features_content {
                padding: 1rem;
                align-items: center;
                align-content: center;
            }

            .features_inner {
                grid-template-columns: 1fr;
            }

            .feature_dot {
                display: none;
            }

            .section_drivers{
                display: none;
            }

            .feature_item,
            .feature_item.active {
                opacity: 1;
                transform: none;
                color: white;
                background: none;
            }

            .image_container {
                width: 100%;
                aspect-ratio: 16 / 9;
                height: auto;
            }

            .features {
                padding: 1rem 1.2rem;
            }
            
            .community_grid {
                grid-template-columns: 1fr;
            }

            .community_list li {
                padding-left: 0;
            }

            .community_list li::before {
                display: none;
            }

            .body {
                background: red;
            }

            .topbar {
                flex-direction: column;
                align-items: center;
            }

            .main_logo{
                max-width: 240px;
            }

            .community_card {
                padding: 2rem;
            }

            .community_card h2 {
                font-size: 2rem;
            }
            .discord_banner{
                display: grid;
                grid-template-columns: 7rem 1fr;
                height: 7rem;
            }
           .discord_headline{
                font-size: 1.1rem;
            }
            .discord_logo_wrapper{
                padding: 0.8rem;
                padding-left: 1.6rem;
            }
            .discord_logo{
                width: 5rem;
                aspect-ratio: 1.3158;
            }
            .discord_lines{
                font-size: 0.9rem;
                line-height: 1.4rem;
            }
            .hide_on_mobile{
                display: none;
            }
        }
    