/** * Mobile Menu Header Configuration. * * @package Astra * @link https://wpastra.com/ * @since 4.5.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Register mobile-menu header builder Customizer Configurations. * * @since 4.5.2 * @return array Astra Customizer Configurations with updated configurations. */ function astra_header_mobile_menu_configuration() { $_section = 'section-header-mobile-menu'; $_configs = array( /** * Option: Header Builder Tabs */ array( 'name' => $_section . '-ast-context-tabs', 'section' => $_section, 'type' => 'control', 'control' => 'ast-builder-header-control', 'priority' => 0, 'description' => '', ), // Section: Primary Header. array( 'name' => $_section, 'type' => 'section', 'title' => __( 'Off-Canvas Menu', 'astra' ), 'panel' => 'panel-header-builder-group', 'priority' => 40, ), /** * Option: Theme Menu create link */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-create-menu-link]', 'default' => astra_get_option( 'header-mobile-menu-create-menu-link' ), 'type' => 'control', 'control' => 'ast-customizer-link', 'section' => $_section, 'priority' => 30, 'link_type' => 'section', 'linked' => 'menu_locations', 'link_text' => __( 'Configure Menu from Here.', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing ast-bottom-section-divider' ), ), // Option: Submenu Divider Checkbox. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-border' ), 'type' => 'control', 'control' => 'ast-toggle-control', 'section' => $_section, 'priority' => 150, 'title' => __( 'Item Divider', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'transport' => 'postMessage', 'divider' => array( 'ast_class' => 'ast-top-section-divider' ), ), // Option: Menu Color Divider. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-divider-colors-divider]', 'section' => $_section, 'type' => 'control', 'control' => 'ast-heading', 'title' => __( 'Item Divider', 'astra' ), 'priority' => 150, 'settings' => array(), 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), 'divider' => array( 'ast_class' => 'ast-section-spacing' ), ), // Option: Submenu item Border Size. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-b-size]', 'type' => 'control', 'control' => 'ast-slider', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-b-size' ), 'section' => $_section, 'priority' => 150, 'transport' => 'postMessage', 'title' => __( 'Divider Size', 'astra' ), 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), 'suffix' => 'px', 'input_attrs' => array( 'min' => 1, 'step' => 1, 'max' => 10, ), 'divider' => array( 'ast_class' => 'ast-bottom-dotted-divider ast-section-spacing' ), ), // Option: Submenu item Border Color. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-b-color]', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-b-color' ), 'type' => 'control', 'control' => 'ast-color', 'transport' => 'postMessage', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ), 'title' => __( 'Divider Color', 'astra' ), 'section' => $_section, 'priority' => 150, 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), ), // Option Group: Menu Color. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Link', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 90, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_title' => __( 'Menu Color', 'astra' ), 'ast_class' => 'ast-section-spacing', ), ), array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Background', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 90, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_title' => '', 'ast_class' => class_exists( 'Astra_Ext_Extension' ) && Astra_Ext_Extension::is_active( 'colors-and-background' ) ? 'ast-bottom-dotted-divider' : '', ), ), // Option: Menu Color. array( 'name' => 'header-mobile-menu-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Normal', 'astra' ), 'section' => $_section, 'title' => __( 'Normal', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 7, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Background image, color. array( 'name' => 'header-mobile-menu-bg-obj-responsive', 'default' => astra_get_option( 'header-mobile-menu-bg-obj-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-background', 'section' => $_section, 'transport' => 'postMessage', 'tab' => __( 'Normal', 'astra' ), 'data_attrs' => array( 'name' => 'header-mobile-menu-bg-obj-responsive' ), 'title' => __( 'Normal', 'astra' ), 'priority' => 9, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Hover Color. array( 'name' => 'header-mobile-menu-h-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-h-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'tab' => __( 'Hover', 'astra' ), 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'title' => __( 'Hover', 'astra' ), 'section' => $_section, 'responsive' => true, 'rgba' => true, 'priority' => 19, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Hover Background Color. array( 'name' => 'header-mobile-menu-h-bg-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-h-bg-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'title' => __( 'Hover', 'astra' ), 'section' => $_section, 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Hover', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 21, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Active Menu Color. array( 'name' => 'header-mobile-menu-a-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-a-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'sub-control', 'section' => $_section, 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Active', 'astra' ), 'title' => __( 'Active', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 31, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Active Menu Background Color. array( 'name' => 'header-mobile-menu-a-bg-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-a-bg-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'section' => $_section, 'title' => __( 'Active', 'astra' ), 'tab' => __( 'Active', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 33, 'context' => Astra_Builder_Helper::$general_tab, ), /** * Option: WOO Off Canvas Menu Submenu Color Section divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-typo-divider]', 'type' => 'control', 'control' => 'ast-heading', 'section' => $_section, 'title' => __( 'Font', 'astra' ), 'priority' => 120, 'settings' => array(), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing', ), ), // Option Group: Menu Typography. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'default' => astra_get_option( 'header-mobile-menu-header-menu-typography' ), 'type' => 'control', 'control' => 'ast-settings-group', 'title' => __( 'Menu Font', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 120, 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing', ), ), // Option: Menu Font Family. array( 'name' => 'header-mobile-menu-font-family', 'default' => astra_get_option( 'header-mobile-menu-font-family', 'inherit' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'type' => 'sub-control', 'section' => $_section, 'transport' => 'postMessage', 'control' => 'ast-font', 'font_type' => 'ast-font-family', 'title' => __( 'Font Family', 'astra' ), 'priority' => 22, 'connect' => 'header-mobile-menu-font-weight', 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-sub-bottom-dotted-divider' ), ), // Option: Menu Font Weight. array( 'name' => 'header-mobile-menu-font-weight', 'default' => astra_get_option( 'header-mobile-menu-font-weight', 'inherit' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'control' => 'ast-font', 'transport' => 'postMessage', 'font_type' => 'ast-font-weight', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ), 'title' => __( 'Font Weight', 'astra' ), 'priority' => 23, 'connect' => 'header-mobile-menu-font-family', 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-sub-bottom-dotted-divider' ), ), // Option: Menu Font Size. array( 'name' => 'header-mobile-menu-font-size', 'default' => astra_get_option( 'header-mobile-menu-font-size' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'priority' => 24, 'title' => __( 'Font Size', 'astra' ), 'control' => 'ast-responsive-slider', 'transport' => 'postMessage', 'context' => Astra_Builder_Helper::$general_tab, 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_slider' ), 'suffix' => array( 'px', 'em', 'vw', 'rem' ), 'input_attrs' => array( 'px' => array( 'min' => 0, 'step' => 1, 'max' => 200, ), 'em' => array( 'min' => 0, 'step' => 0.01, 'max' => 20, ), 'vw' => array( 'min' => 0, 'step' => 0.1, 'max' => 25, ), 'rem' => array( 'min' => 0, 'step' => 0.1, 'max' => 20, ), ), ), /** * Option: Font Extras */ array( 'name' => 'font-extras-header-mobile-menu', 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'control' => 'ast-font-extras', 'priority' => 24, 'default' => astra_get_option( 'font-extras-header-mobile-menu' ), 'title' => __( 'Font Extras', 'astra' ), ), /** * Option: Divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-menu-spacing-divider]', 'section' => $_section, 'title' => __( 'Spacing', 'astra' ), 'type' => 'control', 'control' => 'ast-heading', 'priority' => 150, 'settings' => array(), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing' ), ), // Option - Menu Space. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-menu-spacing]', 'default' => astra_get_option( 'header-mobile-menu-menu-spacing' ), 'type' => 'control', 'control' => 'ast-responsive-spacing', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), 'transport' => 'postMessage', 'section' => $_section, 'priority' => 150, 'title' => __( 'Menu Spacing', 'astra' ), 'linked_choices' => true, 'unit_choices' => array( 'px', 'em', '%' ), 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-bottom-section-divider ast-section-spacing' ), ), /** * Option: Margin Space */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $_section . '-margin]', 'default' => astra_get_option( $_section . '-margin' ), 'type' => 'control', 'transport' => 'postMessage', 'control' => 'ast-responsive-spacing', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), 'section' => $_section, 'priority' => 220, 'title' => __( 'Margin', 'astra' ), 'linked_choices' => true, 'unit_choices' => array( 'px', 'em', '%' ), 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'context' => Astra_Builder_Helper::$design_tab, ), ); $_configs = array_merge( $_configs, Astra_Builder_Base_Configuration::prepare_visibility_tab( $_section ) ); if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { array_map( 'astra_save_header_customizer_configs', $_configs ); } return $_configs; } if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { add_action( 'init', 'astra_header_mobile_menu_configuration' ); }{"id":3798,"date":"2026-03-24T00:55:12","date_gmt":"2026-03-23T21:55:12","guid":{"rendered":"https:\/\/mizantechinstitute.com\/group5dm\/?p=3798"},"modified":"2026-03-25T01:54:25","modified_gmt":"2026-03-24T22:54:25","slug":"krypto-kasyno-nowoczesne-rozwizanie-dla-graczy","status":"publish","type":"post","link":"https:\/\/mizantechinstitute.com\/group5dm\/krypto-kasyno-nowoczesne-rozwizanie-dla-graczy\/","title":{"rendered":"Krypto Kasyno_ Nowoczesne Rozwi\u0105zanie dla Graczy"},"content":{"rendered":"

Krypto Kasyno: Bezpieczna Gra z Kryptowalutami<\/p>\n

Krypto Kasyno: Nowoczesne Rozwi\u0105zanie dla Graczy<\/h1>\n

Kryptowaluty zrewolucjonizowa\u0142y wiele aspekt\u00f3w naszego \u017cycia, w tym r\u00f3wnie\u017c \u015bwiat hazardu online. Wprowadzenie walut cyfrowych do kasyn internetowych otworzy\u0142o nowe mo\u017cliwo\u015bci dla graczy, oferuj\u0105c im wi\u0119ksz\u0105 anonimowo\u015b\u0107 i bezpiecze\u0144stwo transakcji. Warto zwr\u00f3ci\u0107 uwag\u0119 na to, jak krypto kasyno<\/a> staje si\u0119 coraz bardziej popularne w\u015br\u00f3d entuzjast\u00f3w hazardu. Dzi\u0119ki temu gracze mog\u0105 cieszy\u0107 si\u0119 nowoczesnymi rozwi\u0105zaniami technologicznymi, kt\u00f3re zapewniaj\u0105 szybsze i bardziej efektywne do\u015bwiadczenia.<\/p>\n

Dlaczego Kryptowaluty S\u0105 Popularne w Kasynach Online?<\/h2>\n

Jednym z g\u0142\u00f3wnych powod\u00f3w, dla kt\u00f3rych kryptowaluty zyskuj\u0105 na popularno\u015bci w kasynach online, jest ich zdolno\u015b\u0107 do zapewnienia wi\u0119kszej prywatno\u015bci. Tradycyjne metody p\u0142atno\u015bci cz\u0119sto wymagaj\u0105 podawania danych osobowych, co mo\u017ce by\u0107 niekomfortowe dla wielu u\u017cytkownik\u00f3w. Kryptowaluty, takie jak Bitcoin czy Ethereum, umo\u017cliwiaj\u0105 dokonywanie transakcji bez konieczno\u015bci ujawniania to\u017csamo\u015bci, co jest du\u017cym atutem dla graczy ceni\u0105cych sobie anonimowo\u015b\u0107.<\/p>\n

Dodatkowo, transakcje kryptowalutowe s\u0105 zazwyczaj szybsze i ta\u0144sze ni\u017c tradycyjne metody p\u0142atno\u015bci. Dzi\u0119ki technologii blockchain, transakcje s\u0105 przetwarzane niemal natychmiastowo, co eliminuje konieczno\u015b\u0107 oczekiwania na zatwierdzenie p\u0142atno\u015bci przez bank. To sprawia, \u017ce korzystanie z kryptowalut w kasynach online jest nie tylko wygodne, ale tak\u017ce bardziej efektywne.<\/p>\n

Sprawdzamy Krypto Kasyna \u2013 Ty Wybierasz Najlepsze<\/h2>\n

krypto kasyno<\/a><\/p>\n

Bezpiecze\u0144stwo i Transparentno\u015b\u0107 w Krypto Kasynach<\/h2>\n

Bezpiecze\u0144stwo jest jednym z kluczowych aspekt\u00f3w, kt\u00f3re przyci\u0105gaj\u0105 graczy do krypto kasyn. Transakcje kryptowalutowe s\u0105 zabezpieczone za pomoc\u0105 zaawansowanych technologii kryptograficznych, co minimalizuje ryzyko oszustw i kradzie\u017cy. Dodatkowo, technologia blockchain zapewnia pe\u0142n\u0105 transparentno\u015b\u0107 ka\u017cdej transakcji, co oznacza, \u017ce gracze mog\u0105 \u0142atwo \u015bledzi\u0107 swoje wp\u0142aty i wyp\u0142aty.<\/p>\n

Warto r\u00f3wnie\u017c zwr\u00f3ci\u0107 uwag\u0119 na to, \u017ce krypto kasyna cz\u0119sto oferuj\u0105 dodatkowe funkcje bezpiecze\u0144stwa, takie jak uwierzytelnianie dwusk\u0142adnikowe czy szyfrowanie danych. Dzi\u0119ki temu u\u017cytkownicy mog\u0105 mie\u0107 pewno\u015b\u0107, \u017ce ich dane osobowe i finansowe s\u0105 chronione na najwy\u017cszym poziomie. Wi\u0119cej informacji na temat tego, jak krypto kasyna dbaj\u0105 o bezpiecze\u0144stwo swoich u\u017cytkownik\u00f3w, mo\u017cna znale\u017a\u0107 na stronie https:\/\/stjanehotel.com\/pl-pl\/<\/a>, kt\u00f3ra dostarcza szczeg\u00f3\u0142owych analiz i porad.<\/p>\n

Przysz\u0142o\u015b\u0107 Krypto Kasyn<\/h2>\n

Rozw\u00f3j kryptowalut i technologii blockchain wskazuje na to, \u017ce krypto kasyna b\u0119d\u0105 odgrywa\u0107 coraz wi\u0119ksz\u0105 rol\u0119 w przysz\u0142o\u015bci hazardu online. W miar\u0119 jak coraz wi\u0119cej os\u00f3b zaczyna korzysta\u0107 z walut cyfrowych, kasyna b\u0119d\u0105 musia\u0142y dostosowa\u0107 si\u0119 do zmieniaj\u0105cych si\u0119 potrzeb swoich klient\u00f3w. Mo\u017cemy spodziewa\u0107 si\u0119, \u017ce w przysz\u0142o\u015bci krypto kasyna b\u0119d\u0105 oferowa\u0107 jeszcze bardziej zaawansowane technologie, kt\u00f3re uczyni\u0105 gr\u0119 jeszcze bardziej ekscytuj\u0105c\u0105 i bezpieczn\u0105.<\/p>\n

Kolejnym krokiem w rozwoju krypto kasyn mo\u017ce by\u0107 integracja z innymi technologiami, takimi jak rzeczywisto\u015b\u0107 wirtualna czy sztuczna inteligencja. Te innowacje mog\u0105 jeszcze bardziej wzbogaci\u0107 do\u015bwiadczenia graczy, oferuj\u0105c im nowe sposoby na interakcj\u0119 z gr\u0105 i innymi graczami. Wszystko to wskazuje na to, \u017ce krypto kasyna maj\u0105 przed sob\u0105 \u015bwietlan\u0105 przysz\u0142o\u015b\u0107, pe\u0142n\u0105 mo\u017cliwo\u015bci i innowacji.<\/p>\n

Podsumowuj\u0105c, krypto kasyna to nie tylko nowoczesne rozwi\u0105zanie dla mi\u0142o\u015bnik\u00f3w hazardu, ale tak\u017ce symbol post\u0119pu technologicznego w bran\u017cy. Dzi\u0119ki zastosowaniu kryptowalut, gracze mog\u0105 cieszy\u0107 si\u0119 wi\u0119ksz\u0105 anonimowo\u015bci\u0105, bezpiecze\u0144stwem oraz szybko\u015bci\u0105 transakcji. \u015awiat hazardu online stale si\u0119 rozwija, a krypto kasyna s\u0105 tego doskona\u0142ym przyk\u0142adem. Warto \u015bledzi\u0107 ten trend i by\u0107 na bie\u017c\u0105co z nowymi mo\u017cliwo\u015bciami, kt\u00f3re oferuj\u0105.<\/p>\n","protected":false},"excerpt":{"rendered":"

Krypto Kasyno: Bezpieczna Gra z Kryptowalutami Krypto Kasyno: Nowoczesne Rozwi\u0105zanie dla Graczy Kryptowaluty zrewolucjonizowa\u0142y wiele aspekt\u00f3w naszego \u017cycia, w tym r\u00f3wnie\u017c \u015bwiat hazardu online. Wprowadzenie walut cyfrowych do kasyn internetowych otworzy\u0142o nowe mo\u017cliwo\u015bci dla graczy, oferuj\u0105c im wi\u0119ksz\u0105 anonimowo\u015b\u0107 i bezpiecze\u0144stwo transakcji. Warto zwr\u00f3ci\u0107 uwag\u0119 na to, jak krypto kasyno staje si\u0119 coraz bardziej popularne […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[47],"tags":[],"class_list":["post-3798","post","type-post","status-publish","format-standard","hentry","category-casino"],"_links":{"self":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/3798","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/comments?post=3798"}],"version-history":[{"count":1,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/3798\/revisions"}],"predecessor-version":[{"id":3799,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/3798\/revisions\/3799"}],"wp:attachment":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/media?parent=3798"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/categories?post=3798"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/tags?post=3798"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}