body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #121212;
            color: #e0e0e0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow: hidden;
        }

        header {
            background-color: #1e1e1e;
            color: #fff;
            padding: 1rem;
            width: 100%;
            position: sticky;
            top: 0;
            text-align: center;
            border-bottom: 1px solid #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        .title {
            font-size: 1.5rem;
            color: #bb86fc;
            margin: 0;
            text-align: right;
            overflow: hidden;
            position: relative;
        }

        .search-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            overflow: hidden;
            outline: none;
        }

        .search-bar input {
            padding: 0.5rem;
            font-size: 1rem;
            border: 1px solid #333;
            border-radius: 5px;
            background-color: #1e1e1e;
            color: #fff;
            overflow: hidden;
            outline: none;
            border: none;
        }

        .search-bar button {
            padding: 0.5rem 1rem;
            font-size: 1rem;
            background-color: #bb86fc;
            border: none;
            border-radius: 5px;
            color: #fff;
            cursor: pointer;
            transition: background-color 0.3s;
            overflow: hidden;
        }

        .search-bar button:hover {
            background-color: #9a6dcc;
            overflow: hidden;
        }

        .nav-bar {
            display: flex;
            gap: 1rem;
            align-items: right;
            overflow: hidden;
            position: relative;
            right: 20px;
        }

        .nav-bar a {
            color: #bb86fc;
            text-decoration: none;
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: background-color 0.3s;
            overflow: hidden;
        }

        .nav-bar a:hover {
            background-color: #bb86fc;
            color: #fff;
            overflow: hidden;
        }

        main {
            flex: 1;
            max-width: 100%;
            padding: 1rem;
            overflow: hidden;
        }

        .youtube-container {
            position: relative;
            width: 90%;
            max-width: 600px;
            margin: 0 auto;
            padding-top: 56.25%;
            overflow: hidden;
        }

        .youtube-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 90%;
            height: 90%;
            border: none;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        footer {
            background-color: #1e1e1e;
            color: #666;
            padding: 0.5rem;
            font-size: 0.9rem;
            width: 100%;
            text-align: center;
            content: center;
            overflow: hidden;
        }
