 
body { 
/* CSS Variables that may have been missed get put on body */ 
    --color_blue_alpha:  rgba(53, 155, 233, .2);  
    --accent_text_color:  var(--tg-theme-accent-text-color, #64b5ef);  
    --bg_color:  var(--tg-theme-bg-color, #1e1e1e);  
    --button_color:  var(--tg-theme-button-color, #50a8eb);  
    --button_text_color:  var(--tg-theme-button-text-color, #ffffff);  
    --destructive_text_color:  var(--tg-theme-destructive-text-color, #ee686f);  
    --header_bg_color:  var(--tg-theme-header-bg-color, #232326);  
    --hint_color:  var(--tg-theme-hint-color, #7d7d7d);  
    --link_color:  var(--tg-theme-link-color, #57a7e0);  
    --secondary_bg_color:  var(--tg-theme-secondary-bg-color, #000000);  
    --section_bg_color:  var(--tg-theme-section-bg-color, #181819);  
    --section_header_text_color:  var(--tg-theme-section-header-text-color, #6cb6f8);  
    --subtitle_text_color:  var(--tg-theme-subtitle-text-color, #fdfdff);  
    --text_color:  var(--tg-theme-text-color, #ffffff); 
    --logo-height:  28px;  
    --header-vertical-padding:  8px;  
    --logo-padding:  6px;  
    --header-content-height:  calc(var(--logo-height) + var(--logo-padding) * 2);  
    --header-background-alpha:  .75;  
    --header-background-color:  rgb(255 255 255 / var(--header-background-alpha)); 
    --header-background-color:  rgb(28 28 29 / var(--header-background-alpha)); 
    --header-top-offset:  calc( var(--safe-area-top-offset) + var(--header-vertical-padding) );  
    --icon-size:  40px;  
} 

 

div { 
    scrollbar-width: none; 
    -ms-overflow-style: none;
} 
 
:root { 
    --full-width: 100vw; 
    --full-height: 100vh; 
    --navbar-height: 0px; 
    --gamebar-height: 0px; 
    --desktop-breakpoint-width: 600px; 
    --full-page-height: calc( var(--full-height) - var(--navbar-height, 0px) - var(--gamebar-height, 0px) - var( --dev-page-bottom-offset, 0px ) ); 
    --page-background: var(--bg_color); 
    --safe-area-top-offset: calc( var(--tg-safe-area-inset-top, 0px) + var(--tg-content-safe-area-inset-top, 0px) ); 
    --safe-area-left-offset: calc( var(--tg-safe-area-inset-left, 0px) + var(--tg-content-safe-area-inset-left, env(safe-area-inset-left, 0px)) ); 
    --safe-area-right-offset: calc( var(--tg-safe-area-inset-right, 0px) + var(--tg-content-safe-area-inset-right, env(safe-area-inset-right, 0px)) ); 
    --safe-area-bottom-offset: calc( var(--tg-safe-area-inset-bottom, 0px) + var(--tg-content-safe-area-inset-bottom, 0px) ); 
    --page-top-padding: calc(var(--safe-area-top-offset) + 8px); 
    --page-bottom-padding: calc(var(--safe-area-bottom-offset) + 20px); 
    --page-horizontal-padding: max( var(--safe-area-left-offset), var(--safe-area-right-offset), 16px ); 
    --page_padding: var(--page-top-padding) var(--page-horizontal-padding) var(--page-bottom-padding); 
    --z-index-navbar: 5001; 
} 

@media screen and (min-width: 600px){ 
  :root { 
    --page-horizontal-padding: max( calc((var(--full-width) - var(--desktop-breakpoint-width)) / 2), var(--safe-area-left-offset), var(--safe-area-right-offset), 16px );
  } 
}     

:root { 
    --full-width: 100dvw; 
    --full-height: 100dvh;
} 

:root[ui-kit="material"][data-theme="dark"] { 
    --color_blue_alpha: rgba(53, 155, 233, .2); 
    --accent_text_color: var(--tg-theme-accent-text-color, #64b5ef); 
    --bg_color: var(--tg-theme-bg-color, #1e1e1e); 
    --button_color: var(--tg-theme-button-color, #50a8eb); 
    --button_text_color: var(--tg-theme-button-text-color, #ffffff); 
    --destructive_text_color: var(--tg-theme-destructive-text-color, #ee686f); 
    --header_bg_color: var(--tg-theme-header-bg-color, #232326); 
    --hint_color: var(--tg-theme-hint-color, #7d7d7d); 
    --link_color: var(--tg-theme-link-color, #57a7e0); 
    --secondary_bg_color: var(--tg-theme-secondary-bg-color, #000000); 
    --section_bg_color: var(--tg-theme-section-bg-color, #181819); 
    --section_header_text_color: var(--tg-theme-section-header-text-color, #6cb6f8); 
    --subtitle_text_color: var(--tg-theme-subtitle-text-color, #fdfdff); 
    --text_color: var(--tg-theme-text-color, #ffffff);
} 

.container-jkp { 
    display: flex;
    flex-direction: column;
    border-radius: 0 0 30px 30px;
    background: linear-gradient(195deg, #000000, #2c2c2c);
} 

.header-kbg  { 
    margin-bottom: 16px; 
    padding: var(--page_padding); 
    padding-top: 0; 
    padding-bottom: 8px;
} 

div:-webkit-scrollbar { 
    display: none;
} 

.container-4cx { 
    position: relative; 
    z-index: 1; 
    margin-bottom: 12px;
} 

.container-qcv { 
    margin-bottom: 12px;
} 

.container-lgo { 
    position: relative; 
    overflow: hidden;
} 

.container-6nx { 
    margin: 0 auto;
} 

.container-hzv { 
    --logo-height: 28px; 
    --header-vertical-padding: 8px; 
    --logo-padding: 6px; 
    --header-content-height: calc(var(--logo-height) + var(--logo-padding) * 2); 
    --header-background-alpha: .75; 
    --header-background-color: rgb(255 255 255 / var(--header-background-alpha));
} 

[data-theme="dark"] .container-hzv  { 
    --header-background-color: rgb(28 28 29 / var(--header-background-alpha));
} 

.wrapper-7on { 
    display: flex; 
    align-items: center; 
    justify-content: center;
} 

._full-nfp { 
    width: 100vw; 
    margin-right: calc(50% - 50vw); 
    margin-left: calc(50% - 50vw);
} 

._ga-b6v { 
    margin-top: -8px;
} 

.content-k5n { 
    position: relative; 
    z-index: 1; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
} 

.logo-wf5 { 
    width: 120px; 
    height: 100%; 
    margin: 0 auto; 
    object-fit: contain;
} 

.container-hzv .wrapper-bx4  { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    --header-top-offset: calc( var(--safe-area-top-offset) + var(--header-vertical-padding) ); 
    margin: 12px calc(-1 * var(--page-horizontal-padding)) 0; 
    padding: var(--header-top-offset) var(--page-horizontal-padding) var(--header-vertical-padding); 
    background-color: var(--header-background-color); 
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
} 

.container-hzv .wrapper-rrl  { 
    will-change: opacity,filter; 
    position: relative; 
    z-index: calc(var(--z-index-navbar) + 1); 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    width: 100%; 
    height: var(--header-content-height); 
    margin-top: calc(-1 * var(--header-content-height) - var(--logo-padding) / 2);
} 

svg { 
    transform-box: fill-box;
} 

.wrapper-7on svg  { 
    max-width: 100%; 
    height: auto;
} 

.text-ji4 { 
    display: flex; 
    flex: 1; 
    flex-direction: column; 
    gap: 16px; 
    max-width: 211px;
} 

.wrapper-2sw { 
    position: relative; 
    display: flex; 
    flex-shrink: 0; 
    align-items: center; 
    justify-content: center; 
    width: 160px; 
    height: 150px;
} 

.container-hzv .wrapper-bx4 .logo-1js  { 
    position: -webkit-sticky; 
    position: sticky; 
    top: 0; 
    gap: 3px; 
    height: var(--logo-height); 
    color: #fff; 
    -webkit-user-select: none; 
    user-select: none; 
    -webkit-tap-highlight-color: transparent; 
    -webkit-touch-callout: none; 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center;
} 

.container-hzv .wrapper-rrl ._le-jo1  { 
    display: flex; 
    flex: 1 0; 
    gap: 8px; 
    align-items: center; 
    justify-content: flex-start;
} 

.container-hzv .wrapper-rrl .logo-z9z  { 
    -webkit-user-select: none; 
    user-select: none; 
    -webkit-tap-highlight-color: transparent; 
    -webkit-touch-callout: none; 
    flex-shrink: 0; 
    width: 112px; 
    height: 100%;
} 

.container-hzv .wrapper-rrl ._ri-4i3  { 
    display: flex; 
    flex: 1 0; 
    gap: 8px; 
    align-items: center; 
    justify-content: flex-end;
} 

.title-7sn { 
    margin: 0; 
    color: #fff;
} 

button { 
    -webkit-tap-highlight-color: rgba(0,0,0,0);
} 

.button-q9q { 
    cursor: pointer; 
    align-self: flex-start; 
    padding: 5px 12px; 
    border: none; 
    border-radius: 30px; 
    font-family: SF Pro Rounded,sans-serif; 
    font-size: 15px; 
    font-weight: 600; 
    line-height: 20px; 
    color: #5d3423; 
    letter-spacing: .44px; 
    white-space: nowrap; 
    background: #e8b25c;
} 

.image-b55 { 
    width: 100%; 
    height: 100%; 
    object-fit: contain;
} 

.container-hzv .wrapper-bx4 .title-9an  { 
    font-size: 18px; 
    font-weight: 600; 
    line-height: 23px;
} 

html[ui-kit="material"] .container-hzv .wrapper-bx4 .title-9an  { 
    letter-spacing: 0;
} 

a { 
    -webkit-tap-highlight-color: rgba(0,0,0,0);
} 

a ,a:link  { 
    color: inherit; 
    text-decoration: none;
} 

.container-hzv .wrapper-rrl .avatar-yvr  { 
    position: relative; 
    display: flex; 
    flex-shrink: 0; 
    height: 40px;
} 

a , body a:hover, body a:active,a:link  {  
    text-decoration: none;
} 

body a, body a:visited, body a:hover, body a:active, body a:link, iframe a, iframe a:visited, iframe a:hover, iframe a:active, iframe a:link { 
 
    text-decoration: none;
	    color: white;
} 

.container-hzv .wrapper-rrl .search-ji6  { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    isolation: isolate; 
    transition: transform .2s ease-out; 
    overflow: hidden; 
    flex-shrink: 0; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    color: var(--text_color); 
    background-color: var(--secondary_bg_color);
} 

@media (hover: hover){ 
   .container-hzv .wrapper-rrl .search-ji6:not(:disabled):hover { 
    transform: scale(1.01); 
    transition: transform .1s ease-in;
  } 
}     

.container-8cz { 
    --icon-size: 40px; 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    width: var(--icon-size); 
    height: var(--icon-size); 
    padding: 8px; 
    border-radius: 12px; 
    background-color: var(--color_blue_alpha);
} 

.container-hzv .wrapper-rrl ._wa-jrk  { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    isolation: isolate; 
    transition: transform .2s ease-out; 
    overflow: hidden; 
    flex-shrink: 0; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    color: var(--text_color); 
    background-color: var(--secondary_bg_color);
} 

@media (hover: hover){ 
  .container-hzv .wrapper-rrl ._wa-jrk:not(:disabled):hover { 
    transform: scale(1.01); 
    transition: transform .1s ease-in;
  } 
}     

.avatar-ppt { 
    border-radius: 50%; 
    object-fit: cover;
} 

.avatar-ppt._mi-3tw { 
    width: 40px; 
    height: 40px;
} 

.container-hzv .wrapper-rrl .avatar-yvr .icon-efq  { 
    position: absolute; 
    top: 4px; 
    left: 32px; 
    width: 32px; 
    height: 32px;
} 

.container-hzv .wrapper-rrl .search-ji6 svg  { 
    color: var(--text_color);
} 

.container-8cz ._wallet-icon_1936y_16  { 
    color: var(--button_color);
} 

.container-hzv .wrapper-rrl ._wa-jrk svg  { 
    color: var(--text_color);
} 

.container-o3z ._hexagon_1gtkj_4  { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%); 
    width: 40px; 
    height: 40px; 
    fill: var(--text_color); 
    stroke: var(--secondary_bg_color);
} 

.container-o3z ._le-tjr  { 
    font-family: ui-rounded,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif; 
    font-size: 15px; 
    font-weight: 700; 
    line-height: 18px; 
    position: absolute; 
    z-index: 3; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%); 
    color: var(--secondary_bg_color);
} 

html[ui-kit="material"] .container-o3z ._le-tjr  { 
    letter-spacing: 0;
} 


/* These were inline style tags. Uses id+class to override almost everything */
#style-SoPjc.style-SoPjc {  
   --header-background-alpha: 0;  
}  
#style-dPimo.style-dPimo {  
   transform: none;  
}  
#style-WShEB.style-WShEB {  
   opacity: 1;  
    filter: blur(0px);  
}  
 