        /* Container utama */
        .grok_tabs-container {
            max-width: 1200px;
            margin: 20px auto;
            border: 1px solid #217a72;
            background-color: #393e3f;
        }

        /* Styling tab buttons */
        .grok_tab-buttons {
            overflow: hidden;
            border-bottom: 1px solid #217a72;
        }

        .grok_tab-button {
            float: left;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 10px 12px;
            background-color: #393e3f;
            color: white;
            transition: 0.3s;
            width: 16.66%;
            text-align: center;
            box-sizing: border-box;
            font-size: 14px;
        }

        .grok_tab-button:hover {
            background-color: #217a72;
        }

        .grok_tab-button.active {
            background-color: #217a72;
        }

        /* Styling konten tab */
        .grok_tab-content {
            display: none;
            padding: 15px;
            color: white;
            background-color: #393e3f;
        }

        .grok_tab-content.active {
            display: block;
        }

        /* Styling box responsif untuk video */
        .grok_content-box {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* Rasio 16:9 */
            height: 0;
            overflow: hidden;
        }

        .grok_content-box iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid #ffffff;
            border-radius: 5px;
        }