:root {
            --primary-color: #ff5722;
            --secondary-color: #212121;
            --accent-color: #ff9800;
            --text-color: #fafafa;
            --bg-color: #121212;
            --light-text-color: #bdbdbd;
            --font-family: 'Roboto', sans-serif;
        }

        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Bebas+Neue&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Bebas Neue', cursive;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-color);
            margin-bottom: 0.5em;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(18, 18, 18, 0.9);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            font-family: 'Bebas Neue', cursive;
            color: var(--primary-color);
            letter-spacing: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 20px;
        }

        .nav-link {
            color: var(--light-text-color);
            font-weight: bold;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }

        .bar {
            height: 3px;
            width: 100%;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }

        .content-section {
            background-color: var(--secondary-color);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .content-section h1 {
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
        }

        .content-section h2 {
            color: var(--accent-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .content-section p, .content-section ul {
            color: var(--light-text-color);
            margin-bottom: 20px;
        }

        .content-section ul {
            padding-left: 20px;
            list-style: disc;
        }
        
        .content-section li {
            margin-bottom: 10px;
        }

        footer {
            background-color: var(--secondary-color);
            color: var(--light-text-color);
            padding: 50px 0 20px;
            text-align: center;
            border-top: 5px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: left;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 2.5rem;
            color: var(--primary-color);
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 3px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin: 20px;
        }

        .footer-section h4 {
            color: var(--text-color);
            margin-bottom: 20px;
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            margin-top: 5px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: var(--light-text-color);
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: 100vh;
                flex-direction: column;
                background-color: var(--secondary-color);
                padding-top: 50px;
                transition: right 0.3s ease-in-out;
                z-index: 999;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            }
            .nav-menu.active {
                right: 0;
            }
            .nav-item {
                margin: 20px 0;
                text-align: center;
            }
            .hamburger {
                display: flex;
            }
            .footer-content {
                flex-direction: column;
                align-items: center;
            }
            .footer-section {
                text-align: center;
            }
        }

