:root { 
--color-bg: #050507; 
--color-surface: rgba(7, 7, 10, 0.95); 
--color-surface-alt: rgba(29, 29, 33, 0.93); 
--color-border: rgba(255, 215, 0, 0.18); 
--color-border-strong: rgba(255, 215, 0, 0.28); 
--color-border-soft: rgba(220, 220, 210, 0.18); 
--color-primary: #d4af37; 
--color-secondary: #c3c5c9; 
--color-text: #f9f8f5; 
--color-solid: #b48b23; 
--color-on-primary: #141414; 
--color-muted: rgba(255, 255, 255, 0.72); 
--color-header-translucent: rgba(7, 7, 10, 0.9); 
--color-primary-warm: #dfb549; 
--color-primary-glow: rgba(212, 175, 55, 0.25); 
--color-primary-shadow: rgba(212, 175, 55, 0.28); 
--color-primary-solid: #c2952c; 
--color-primary-tint: rgba(214, 175, 55, 0.14); 
--color-secondary-glow: rgba(195, 197, 201, 0.2); 
--color-secondary-tint: rgba(195, 197, 201, 0.18); 
--color-glass-strong: rgba(29, 29, 33, 0.35); 
--color-glass-mid: rgba(29, 29, 33, 0.2); 
--color-glass-soft: rgba(29, 29, 33, 0.12); 
--color-glass-faint: rgba(29, 29, 33, 0.06); 
--color-glass-ultra: rgba(29, 29, 33, 0.03); 
--radius-lg: 28px; 
--radius-md: 20px; 
--radius-sm: 12px; 
--shadow-xl: 0 30px 60px rgba(7, 7, 10, 0.18); 
--shadow-lg: 0 25px 45px rgba(7, 7, 10, 0.12); 
--shadow-md: 0 20px 40px rgba(7, 7, 10, 0.12); 
--shadow-sm: 0 12px 30px rgba(7, 7, 10, 0.1); 
--shadow-inset: 0 -20px 40px rgba(7, 7, 10, 0.05); 
} 

*, *::before, *::after { 
box-sizing: border-box; 
} 

body.brand2-body { 
margin: 0; 
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
background: var(--color-bg); 
color: var(--color-text); 
font-size: clamp(0.9rem, 1vw + 0.7rem, 1.05rem); 
line-height: 1.6; 
min-height: 100vh; 
} 

.container { 
width: min(1200px, 100%); 
margin: 0 auto; 
padding: 0 1.5rem; 
} 

.brand2-header { 
position: sticky; 
top: 0; 
z-index: 10; 
background: var(--color-header-translucent); 
backdrop-filter: blur(20px); 
border-bottom: 1px solid var(--color-border); 
} 

.header-bar { 
display: flex; 
align-items: center; 
gap: 1.5rem; 
min-height: 72px; 
position: relative; 
} 

.logo img { 
height: 48px; 
width: auto; 
} 

.primary-nav { 
display: flex; 
gap: 1rem; 
flex: 1; 
} 

.primary-nav a { 
color: var(--color-muted); 
text-decoration: none; 
font-weight: 500; 
padding: 0.5rem 0.25rem; 
} 

.primary-nav a:hover { 
color: var(--color-secondary); 
} 

.header-cta { 
display: flex; 
gap: 0.75rem; 
} 

.burger-toggle { 
display: none; 
width: 44px; 
height: 44px; 
border-radius: 50%; 
border: 1px solid var(--color-border); 
background: rgba(18, 12, 16, 0.9); 
align-items: center; 
justify-content: center; 
flex-direction: column; 
gap: 4px; 
cursor: pointer; 
transition: transform 0.2s ease, box-shadow 0.2s ease; 
} 

.burger-toggle span { 
width: 22px; 
height: 2px; 
background: var(--color-text); 
border-radius: 999px; 
transition: transform 0.2s ease; 
} 

.burger-toggle:active { 
transform: scale(0.94); 
} 

.header-cta .nav-chip { 
display: inline-flex; 
align-items: center; 
justify-content: center; 
padding: 0.55rem 1.4rem; 
border-radius: 999px; 
border: 1px solid var(--color-border); 
background: rgba(139, 69, 19, 0.92); 
font-weight: 600; 
font-size: 0.95rem; 
line-height: 1; 
color: var(--color-text); 
text-decoration: none; 
box-shadow: 0 10px 20px rgba(139, 69, 19, 0.12); 
transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease; 
} 

.header-cta .nav-chip:hover { 
transform: translateY(-1px); 
box-shadow: 0 15px 25px rgba(139, 69, 19, 0.18); 
} 

.header-cta .nav-chip.btn-register { 
background: linear-gradient(135deg, var(--color-primary), var(--color-primary-warm)); 
color: var(--color-on-primary); 
border: none; 
} 

.header-cta .nav-chip.btn-login { 
background: rgba(183, 11, 13, 0.1); 
color: var(--color-primary); 
border: 1px solid rgba(183, 11, 13, 0.4); 
} 

.header-cta .nav-chip { 
display: inline-flex; 
align-items: center; 
justify-content: center; 
padding: 0.55rem 1.4rem; 
border-radius: 999px; 
border: 1px solid var(--color-border); 
background: rgba(139, 69, 19, 0.92); 
font-weight: 600; 
font-size: 0.95rem; 
line-height: 1; 
color: var(--color-text); 
text-decoration: none; 
box-shadow: 0 10px 20px rgba(139, 69, 19, 0.12); 
transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease; 
} 

.header-cta .nav-chip:hover { 
transform: translateY(-1px); 
box-shadow: 0 15px 25px rgba(139, 69, 19, 0.18); 
} 

.header-cta .nav-chip.btn-register { 
background: linear-gradient(135deg, var(--color-primary), var(--color-primary-warm)); 
color: var(--color-on-primary); 
border: none; 
} 

.header-cta .nav-chip.btn-login { 
background: rgba(183, 11, 13, 0.1); 
color: var(--color-primary); 
border: 1px solid rgba(183, 11, 13, 0.4); 
} 

.btn { 
display: inline-flex; 
align-items: center; 
justify-content: center; 
border-radius: 999px; 
padding: 1.1rem 2rem; 
font-weight: 600; 
font-size: 1rem; 
text-decoration: none; 
color: var(--color-text); 
border: 1px solid transparent; 
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; 
} 

.btn-primary { 
background: linear-gradient(135deg, var(--color-primary), var(--color-primary-warm)); 
background-size: 150% 150%; 
box-shadow: 0 10px 30px var(--color-primary-shadow); 
color: var(--color-on-primary); 
} 

.btn-primary:hover { 
transform: translateY(-2px); 
background-position: 100% 0; 
box-shadow: 0 15px 35px var(--color-primary-shadow); 
} 

.btn-ghost, .btn-outline { 
border-color: var(--color-border); 
background: transparent; 
} 

.btn-ghost:hover, .btn-outline:hover { 
border-color: var(--color-secondary); 
color: var(--color-secondary); 
} 

.hero-block { 
position: relative; 
padding: 4rem 0 2.5rem; 
background: radial-gradient(circle at top right, var(--color-primary-glow), transparent 40%), radial-gradient(circle at top left, var(--color-secondary-glow), transparent 45%); 
} 

.hero-gift { 
position: absolute; 
top: 2.5rem; 
right: clamp(1rem, 4vw, 3rem); 
display: inline-flex; 
align-items: center; 
gap: 0.4rem; 
padding: 0.6rem 1rem; 
border-radius: 16px; 
border: 1px solid #641226 !important; 
color: white;
font-weight: 600; 
text-decoration: none; 
box-shadow: 0 15px 30px rgba(125, 1, 33, 0.2); 
animation: gift-flicker 1.8s ease-in-out infinite; 
z-index: 2; 
} 

.hero-gift img { 
width: clamp(1.8rem, 4vw, 2.4rem); 
height: auto; 
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25)); 
transform-origin: center; 
} 

@keyframes gift-flicker { 
0%, 100% { 
box-shadow: 0 15px 30px rgba(125, 1, 33, 0.15); 
} 
50% { 
box-shadow: 0 18px 34px rgba(214, 177, 58, 0.25); 
} 
} 

@media (max-width: 768px) { 
.header-bar { 
flex-wrap: wrap; 
justify-content: center; 
gap: 0.75rem; 
padding: 0.5rem 1rem 1rem 3rem; 
} 

.burger-toggle { 
display: inline-flex; 
order: 0; 
position: absolute; 
left: 0; 
} 

.logo { 
order: 1; 
margin: 0 auto; 
text-align: center; 
overflow: hidden; 
} 

.logo img { 
margin: 0 auto; 
} 

.header-cta { 
order: 2; 
width: 100%; 
display: grid; 
grid-template-columns: repeat(2, minmax(0, 1fr)); 
gap: 0.5rem; 
} 

.primary-nav { 
position: absolute; 
top: 100%; 
left: 0; 
right: 0; 
background: rgba(18, 12, 16, 0.95); 
border-bottom: 1px solid var(--color-border); 
flex-direction: column; 
padding: 0; 
max-height: 0; 
overflow: hidden; 
opacity: 0; 
transform: translateY(-10px); 
transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.2s ease; 
z-index: 20; 
} 

body.nav-open .primary-nav { 
max-height: 400px; 
opacity: 1; 
transform: translateY(0); 
padding: 1rem 1.5rem 1.25rem; 
} 

.primary-nav a { 
padding: 0.75rem 0; 
font-size: 1.05rem; 
} 

.hero-gift { 
top: 1rem; 
right: 1rem; 
} 
} 

.hero-grid { 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
gap: 2rem; 
align-items: stretch; 
} 

.hero-content h1 { 
  font-size: clamp(2.1rem, 3.8vw, 3.2rem); 
  margin: 0 0 1rem; 
  line-height: 1.1; 
} 

.hero-highlight { 
display: block; 
font-size: 0.9em; 
color: var(--color-secondary); 
 margin: 0 0 0.35rem;
} 

.hero-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1.3;
  font-weight: 600;
}

.hero-subtitle {
  margin: 0;
  color: var(--color-muted);
  max-width: 48ch;
}

.hero-badge { 
display: inline-flex; 
align-items: center; 
gap: 0.4rem; 
padding: 0.3rem 0.9rem; 
border-radius: 999px; 
border: 1px solid var(--color-glass-mid); 
background: var(--color-surface); 
text-transform: uppercase; 
font-size: 0.8rem; 
color: var(--color-secondary); 
margin-bottom: 1rem; 
} 

.hero-actions { 
display: flex; 
flex-wrap: wrap; 
gap: 1rem; 
margin: 1.5rem 0; 
} 

.hero-stats { 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
gap: 1rem; 
margin-top: 2rem; 
} 

.hero-stat { 
background: var(--color-surface); 
border-radius: var(--radius-md); 
padding: 1rem; 
} 

.hero-stat dt { 
  font-size: 1.3rem; 
  font-weight: 700; 
}

.hero-stat dd {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
  line-height: 1.4;
}

.hero-card { 
background: var(--color-surface); 
border-radius: var(--radius-lg); 
border: 1px solid var(--color-border); 
box-shadow: var(--shadow-xl); 
} 

.hero-card__inner { 
padding: 2.3rem; 
} 

.hero-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hero-card__header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.hero-chip {
  padding: 0.35rem 0.8rem;
border-radius: 999px; 
background: var(--color-surface-alt); 
} 

.hero-card__list { 
list-style: none; 
padding: 0; 
margin: 0 0 1.5rem; 
display: flex; 
flex-direction: column; 
gap: 0.75rem; 
} 

.hero-card__list li { 
display: flex; 
justify-content: space-between; 
padding: 0.6rem 0.2rem; 
border-bottom: 1px solid var(--color-border-soft); 
} 

.hero-spotlight { 
display: flex; 
flex-wrap: wrap; 
gap: 1.5rem; 
background: var(--color-surface-alt); 
border-radius: var(--radius-lg); 
padding: 1.5rem; 
border: 1px solid var(--color-border); 
margin-top: 2.5rem; 
} 

.hero-spotlight ul { 
margin: 0; 
padding-left: 1rem; 
color: var(--color-muted); 
} 

.feature-band { 
padding: 2.5rem 0; 
} 

.feature-grid { 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
gap: 1.5rem; 
} 

.feature-card { 
background: var(--color-surface); 
border-radius: var(--radius-md); 
padding: 1.5rem; 
border: 1px solid var(--color-border); 
} 

.feature-icon { 
width: 56px; 
height: 56px; 
border-radius: 16px; 
background: var(--color-glass-ultra); 
border: 1px solid var(--color-border-soft); 
display: inline-flex; 
align-items: center; 
justify-content: center; 
margin-bottom: 1rem; 
} 

.feature-icon img { 
width: 28px; 
height: 28px; 
} 

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.promotions, .roadmap, .games, .live-feed, .banking, .faq, .cta { 
padding: 3rem 0; 
} 

.promo-grid, .roadmap-grid, .games-grid, .faq-grid { 
display: grid; 
gap: 1.5rem; 
} 

.promo-grid { 
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
} 

.promo-card { 
background: var(--color-surface-alt); 
border-radius: var(--radius-lg); 
padding: 1.75rem; 
border: 1px solid var(--color-border); 
box-shadow: var(--shadow-lg); 
display: flex; 
flex-direction: column; 
gap: 0.75rem; 
} 

.promo-label { 
font-size: 0.75rem; 
text-transform: uppercase; 
letter-spacing: 0.1em; 
color: var(--color-secondary); 
} 

.roadmap-grid { 
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
} 

.roadmap-step { 
background: var(--color-surface); 
border-radius: var(--radius-md); 
padding: 1.5rem; 
border: 1px dashed var(--color-border); 
} 

.step-index { 
display: inline-flex; 
width: 36px; 
height: 36px; 
border-radius: 50%; 
align-items: center; 
justify-content: center; 
background: var(--color-secondary-tint); 
margin-bottom: 1rem; 
} 

.games-group + .games-group { 
margin-top: 2.5rem; 
} 

.games-grid { 
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
} 

.game-card { 
background: var(--color-surface); 
border-radius: var(--radius-md); 
overflow: hidden; 
border: 1px solid var(--color-border); 
box-shadow: var(--shadow-md); 
display: flex; 
flex-direction: column; 
} 

.game-thumb { 
position: relative; 
aspect-ratio: 16 / 10; 
overflow: hidden; 
} 

.game-thumb img { 
width: 100%; 
height: 100%; 
object-fit: cover; 
} 

.pill { 
position: absolute; 
top: 12px; 
left: 12px; 
padding: 0.25rem 0.8rem; 
border-radius: 999px; 
font-size: 0.75rem; 
} 

.pill-exclusive { 
background: var(--color-primary); 
color: var(--color-on-primary); 
} 

.game-body { 
padding: 1.5rem; 
flex: 1; 
display: flex; 
flex-direction: column; 
gap: 1rem; 
align-items: center; 
justify-content: center; 
text-align: center; 
} 

.game-card h4 { 
margin: 0; 
font-size: 1.25rem; 
} 

.game-actions { 
display: flex; 
gap: 0.75rem; 
width: 100%; 
justify-content: center; 
} 

.game-actions .btn { 
flex: 1 1 48%; 
min-width: 140px; 
} 

.live-feed table { 
  width: 100%; 
  border-collapse: collapse; 
  min-width: 560px; 
} 

.live-feed th, .live-feed td { 
  padding: 0.9rem 1rem; 
  text-align: left; 
  border-bottom: 1px solid var(--color-border); 
} 

.table-scroll { 
  overflow-x: auto; 
  border: 1px solid var(--color-border); 
  border-radius: var(--radius-md); 
  background: var(--color-surface); 
} 



.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.article th,
.article td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  text-align: left;
}

.article thead {
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-weight: 600;
}

.article tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.article caption {
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .article table {
    display: block;
    width: 400px;
    overflow-x: auto;

    white-space: nowrap;
  }

  .article th,
  .article td {
    min-width: 150px;
  }

  .article caption {
    text-align: left;
  }
  .article { 
margin: 5px 5px 5px 5px; 
} 
}

.payment-grid { 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); 
gap: 1rem; 
} 

.payment-card { 
background: var(--color-on-primary); 
border-radius: var(--radius-md); 
border: 1px solid var(--color-border); 
padding: 1.25rem; 
min-height: 120px; 
display: flex; 
align-items: center; 
justify-content: center; 
box-shadow: var(--shadow-sm); 
} 

.payment-card img { 
max-width: 150px; 
height: 64px; 
object-fit: contain; 
} 

.payment-card .chip { 
padding: 0.5rem 1.25rem; 
border-radius: 999px; 
border: 1px solid var(--color-border); 
background: transparent; 
} 

.article { 
padding: 2.5rem 0; 
} 


.article :is(h2, h3, p) { 
max-width: 780px; 
} 

.article blockquote { 
margin: 1.5rem 0; 
padding: 1.5rem 2rem; 
border-left: 6px solid var(--color-primary); 
background: var(--color-surface-alt); 
border-radius: var(--radius-md); 
box-shadow: var(--shadow-sm); 
} 

.article blockquote p:last-child { 
margin-bottom: 0; 
} 

.article blockquote cite { 
display: block; 
margin-top: 0.75rem; 
font-style: normal; 
color: var(--color-muted); 
} 

.faq-grid { 
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
} 

.faq-card { 
background: var(--color-surface); 
border-radius: var(--radius-md); 
padding: 1.5rem; 
border: 1px solid var(--color-border); 
} 

.article .faq-grid { 
margin-top: 1.5rem; 
gap: 1.25rem; 
} 

.article .faq-card { 
box-shadow: var(--shadow-sm); 
border-radius: var(--radius-md); 
border: 1px solid var(--color-border); 
} 

.article .faq-card h4 { 
margin: 0 0 0.5rem; 
font-size: 1.1rem; 
} 

.article .faq-card p:last-child { 
margin-bottom: 0; 
} 

.cta { 
padding-bottom: 4rem; 
} 

.cta-card { 
background: linear-gradient(135deg, var(--color-primary-tint), var(--color-secondary-tint)); 
border-radius: var(--radius-lg); 
border: 1px solid var(--color-border); 
padding: 2.5rem; 
display: flex; 
flex-wrap: wrap; 
justify-content: space-between; 
gap: 1.5rem; 
} 

.brand2-footer { 
padding: 3rem 0; 
border-top: 1px solid var(--color-border); 
background: var(--color-surface); 
box-shadow: var(--shadow-inset); 
} 

.footer-grid { 
display: flex; 
flex-direction: column; 
gap: 1.5rem; 
} 

.provider-grid { 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
gap: 1.5rem; 
} 

.provider-card { 
position: relative; 
border: 1px solid rgba(35, 25, 30, 0.18); 
border-radius: var(--radius-md); 
padding: 2rem; 
background: #641226; 
display: flex; 
align-items: center; 
justify-content: center; 
box-shadow: 0 25px 60px rgba(35, 25, 30, 0.18), inset 0 1px 0 rgba(214, 177, 58, 0.6); 
overflow: hidden; 
isolation: isolate; 
} 

.provider-card::before, .provider-card::after { 
content: ''; 
position: absolute; 
inset: 0; 
z-index: 0; 
pointer-events: none; 
} 

.provider-card::before { 
background: radial-gradient(circle at 30% 20%, rgba(35, 25, 30, 0.95), transparent 70%); 
} 

.provider-card::after { 
background: linear-gradient(160deg, rgba(214, 177, 58, 0.6), transparent 45%); 
mix-blend-mode: screen; 
} 

.provider-logo { 
position: relative; 
z-index: 1; 
max-width: 100%; 
height: 86px; 
object-fit: contain; 
filter: drop-shadow(0 3px 6px rgba(35, 25, 30, 0.45)); 
opacity: 1; 
mix-blend-mode: normal; 
} 

.footer-nav { 
margin-top: 2rem; 
display: flex; 
gap: 1.5rem; 
flex-wrap: wrap; 
border-top: 1px solid var(--color-border); 
padding-top: 1.5rem; 
} 

.footer-links { 
display: flex; 
flex-wrap: wrap; 
gap: 0.75rem; 
} 

.footer-links a { 
color: var(--color-muted); 
text-decoration: none; 
font-size: 0.95rem; 
} 

.footer-links a:hover { 
color: var(--color-secondary); 
} 

.footer-links--secondary a { 
font-weight: 600; 
} 

.back-to-top { 
position: fixed; 
bottom: 1.5rem; 
right: 1.5rem; 
width: 48px; 
height: 48px; 
border-radius: 50%; 
border: none; 
background: linear-gradient(135deg, var(--color-primary), var(--color-primary-warm)); 
color: var(--color-on-primary); 
font-size: 1.25rem; 
font-weight: 700; 
box-shadow: 0 20px 40px rgba(125, 1, 33, 0.3); 
cursor: pointer; 
display: flex; 
align-items: center; 
justify-content: center; 
opacity: 0; 
pointer-events: none; 
transition: opacity 0.2s ease, transform 0.2s ease; 
z-index: 99; 
} 

.back-to-top.is-visible { 
opacity: 1; 
pointer-events: auto; 
transform: translateY(0); 
} 

.back-to-top:active { 
transform: scale(0.95); 
} 

@media (min-width: 769px) { 
.back-to-top { 
display: none; 
} 
} 

.trust-strip { 
margin-top: 2.5rem; 
padding: 1.75rem; 
border-radius: var(--radius-lg); 
border: 1px solid var(--color-border); 
background: var(--color-surface); 
box-shadow: var(--shadow-sm); 
} 

.trust-heading { 
font-size: 0.95rem; 
letter-spacing: 0.2em; 
text-transform: uppercase; 
color: var(--color-muted); 
margin-bottom: 1rem; 
text-align: center; 
} 

.trust-grid { 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
gap: 1rem; 
} 

.trust-badge { 
border: 1px dashed var(--color-border); 
border-radius: var(--radius-md); 
padding: 1rem 1.25rem; 
text-align: center; 
background: var(--color-surface-alt); 
} 

.trust-badge strong { 
display: block; 
font-size: 1rem; 
} 

.trust-badge span { 
display: block; 
margin-top: 0.35rem; 
font-size: 0.85rem; 
color: var(--color-muted); 
} 

@media (max-width: 768px) { 
.header-bar { 
flex-wrap: wrap; 
} 

.primary-nav { 
flex-wrap: wrap; 
} 

.hero-actions, .game-actions { 
flex-direction: column; 
} 
}
