        :root {
            --primary: #da7c25;
            --primary-dark: #132d75;
            --bg: #121212;
            --text: #f1f1f1;
            --card-bg: #1e1e1e;
            --card-hover: #292929;
            --muted: #aaa;
            --text-light:#f1f1f1;
        }

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

        .header {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 1rem;
            box-shadow: 0 4px 20px rgba(153, 153, 153, 0.425);
            margin-bottom: 5rem;
        }

        .info {
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            gap: 1.5rem;
        }

        .info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid white;
            text-align: center;
            line-height: 100px;
            margin: 3px;
        }

        .info h2 {
            font-size: 1.8rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.3;
        }

        .selector {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 3rem;
        }

        .selector a {
            display: flex;
            color: var(--text);
            box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.596);
            height: 50px;
            border-radius: 30px;
            border: 1px solid black;
            background-color: #292929;
            flex:1;
            transition: background-color 0.3s ease, transform 0.3s ease;
            text-align: center;
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }

        .selector a:hover {
            background-color: #222222;
            transform: translateY(-3px);
        }


        @media (max-width: 500px) {
            .header {
                flex-direction: column;
                text-align: center;
            }

            .selector {
                flex-direction: column;
                gap: 1rem;
            }

            .selector a {
                flex: none;
                width: 100%;
            }

        }
