/* ========== CSS RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Colors */
    --primary: #65060e;
    --primary-dark: #6b060c;
    --accent: #cc2400;
    --warning: #fffe4a;
    --accent-alt: #d30104;
    --success: #34c706;
    --info: #2318f7;
    --secondary: #b99fff;
    --surface: #f8fffe;
    --text-primary: #1b1b1b;
    --text-on-primary: #ffffff;
    --muted: #6b6b6b;
    --outline: #e5e7eb;
    
    /* Typography */
    --font-primary: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    --h1: clamp(26px, 6vw, 44px);
    --h2: clamp(20px, 5vw, 32px);
    --h3: clamp(17px, 4vw, 24px);
    --body: clamp(15px, 3.5vw, 18px);
    --small: clamp(13px, 3vw, 14px);
    --button: clamp(15px, 3.5vw, 16px);
    
    /* Weight */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    
    /* Line heights */
    --lh-tight: 1.15;
    --lh-snug: 1.25;
    --lh-normal: 1.5;
    
    /* Radii */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Shadows */
    --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-elevated: 0 16px 40px rgba(0,0,0,0.14);
    
    /* Layout */
    --header-height: 56px;
    --bottom-bar-height: 64px;
    --sticky-cta-height: 56px;
    --container-padding: 16px;
    --grid-gap: 12px;
    
    /* Safe areas */
    --safe-top: env(safe-area-inset-top, 0);
    --safe-bottom: env(safe-area-inset-bottom, 0);
}

@media (min-width: 768px) {
    :root {
        --header-height: 72px;
        --container-padding: 24px;
        --grid-gap: 16px;
    }
}

@media (min-width: 1024px) {
    :root {
        --container-padding: 32px;
        --grid-gap: 20px;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--body);
    line-height: var(--lh-normal);
    color: var(--text-primary);
    background: var(--surface);
    overflow-x: hidden;
}

/* ========== UTILITIES ========== */
.container {
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin: 0 auto;
}

@media (min-width: 480px) {
    .container { max-width: 560px; }
}
@media (min-width: 768px) {
    .container { max-width: 720px; }
}
@media (min-width: 1024px) {
    .container { max-width: 960px; }
}
@media (min-width: 1280px) {
    .container { max-width: 1200px; }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus ring */
*:focus-visible {
    outline: 2px solid var(--info);
    outline-offset: 2px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
    font-weight: var(--weight-bold);
    line-height: var(--lh-tight);
    color: var(--text-primary);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

p { line-height: var(--lh-normal); }

small, .small-text { font-size: var(--small); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 24px;
    font-size: var(--button);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.btn-filled {
    background: var(--accent);
    color: var(--text-on-primary);
    border-color: var(--accent);
}

.btn-filled.warning {
    background: var(--warning);
    color: var(--text-primary);
    border-color: var(--warning);
    font-weight: var(--weight-bold);
}

.btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.btn-outline {
    background: transparent;
    color: var(--text-on-primary);
    border-color: currentColor;
}

.btn-outline.dark {
    color: var(--text-primary);
}

.btn-link {
    background: transparent;
    color: var(--accent);
    text-decoration: underline;
    padding: 8px 0;
    min-height: auto;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    border-radius: var(--radius-xs);
    -webkit-tap-highlight-color: transparent;
}

.icon-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--primary);
    color: var(--text-on-primary);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding-top: var(--safe-top);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--container-padding);
}

.header-logo {
    height: 32px;
    width: auto;
}

@media (min-width: 768px) {
    .header-logo {
        height: 40px;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Mobile Menu */
.menu-toggle {
    position: relative;
    width: 28px;
    height: 28px;
}

.menu-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
    left: 0;
}

.menu-toggle span:nth-child(1) { top: 6px; }
.menu-toggle span:nth-child(2) { top: 13px; }
.menu-toggle span:nth-child(3) { top: 20px; }

.menu-toggle.active span:nth-child(1) {
    top: 13px;
    transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    top: 13px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: calc(var(--header-height) + var(--safe-top));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    color: var(--text-on-primary);
    padding: 24px var(--container-padding);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu a {
    display: block;
    padding: 16px 12px;
    color: var(--text-on-primary);
    text-decoration: none;
    font-size: var(--h3);
    font-weight: var(--weight-medium);
    border-radius: var(--radius-xs);
    transition: background 0.2s ease;
}

.mobile-menu a:hover {
    background: rgba(255,255,255,0.1);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-alt) 100%);
    color: var(--text-on-primary);
    padding: 48px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    font-size: var(--small);
    font-weight: var(--weight-medium);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    color: var(--text-on-primary);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: var(--body);
    line-height: var(--lh-snug);
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.trust-strip {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--small);
}

.trust-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .trust-strip {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* ========== STICKY CTA (Mobile only) ========== */
.sticky-cta {
    position: fixed;
    bottom: calc(var(--bottom-bar-height) + var(--safe-bottom) + 8px);
    left: var(--container-padding);
    right: var(--container-padding);
    height: var(--sticky-cta-height);
    background: var(--accent);
    color: var(--text-on-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-elevated);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: var(--weight-bold);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* ========== USP STRIP ========== */
.usp-strip {
    padding: 24px 0;
    background: var(--primary-dark);
    color: var(--text-on-primary);
    overflow: hidden;
}

.usp-scroller {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 var(--container-padding);
}

.usp-scroller::-webkit-scrollbar {
    display: none;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    padding: 16px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.usp-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .usp-scroller {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        overflow: visible;
    }
    
    .usp-item {
        min-width: auto;
    }
}

@media (min-width: 1024px) {
    .usp-scroller {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== SECTIONS ========== */
section {
    padding: 32px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 40px;
}

.section-text-left {
    text-align: left;
    color: var(--muted);
    margin: 0 0 40px;
    line-height: var(--lh-normal);
}

/* ========== CARDS GRID ========== */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .cards-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--primary);
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
    font-size: var(--body);
}

/* ========== BONUSES ========== */
.bonus-disclaimer {
    background: #fff3cd;
    border-left: 4px solid var(--warning);
    padding: 16px;
    margin-bottom: 24px;
    border-radius: var(--radius-xs);
    font-size: var(--small);
    color: var(--text-primary);
}

.bonus-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.bonus-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.bonus-header h3 {
    font-size: var(--h3);
    margin: 0;
}

.bonus-toggle {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.bonus-item.active .bonus-toggle {
    transform: rotate(180deg);
}

.bonus-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bonus-item.active .bonus-content {
    max-height: 500px;
}

.bonus-details {
    padding: 0 20px 20px;
    color: var(--muted);
}

.bonus-extras {
    background: var(--surface);
    padding: 20px;
    margin-top: 24px;
    border-radius: var(--radius-sm);
}

.bonus-extras h4 {
    margin-bottom: 12px;
    font-size: var(--body);
}

.bonus-extras ul {
    list-style: none;
    padding: 0;
}

.bonus-extras li {
    padding: 8px 0 8px 24px;
    position: relative;
}

.bonus-extras li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: var(--weight-bold);
}

.payment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.payment-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--muted);
}

.payment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: var(--weight-bold);
}

.bonus-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* ========== GAMES TABS ========== */
.games-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.games-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--outline);
    border-radius: var(--radius-sm);
    font-size: var(--body);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.tab-btn.active {
    background: var(--primary);
    color: var(--text-on-primary);
    border-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.game-card {
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, #ea6666 0%, #3d0d0d 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--weight-semibold);
    text-align: center;
    padding: 16px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.game-card:hover {
    transform: scale(1.05);
}

.games-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.games-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    font-size: var(--small);
}

/* ========== PAYMENTS ========== */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: flex-start;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    min-width: 100px;
    text-align: center;
}

.payment-icon {
    width: 48px;
    height: 48px;
}

.payment-name {
    font-size: var(--small);
    font-weight: var(--weight-medium);
}

.payment-note {
    font-size: var(--small);
    color: var(--success);
}

.payment-timelines {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--outline);
}

.timeline-item:last-child {
    border-bottom: none;
}

/* ========== REGISTRATION GUIDE ========== */
.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 32px;
}

.step-item {
    counter-increment: step-counter;
    position: relative;
    padding: 20px 20px 20px 60px;
    background: white;
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--weight-bold);
    font-size: var(--small);
}

/* ========== REASSURANCE ========== */
.reassurance {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.reassurance h2 {
    color: white;
}

.reassurance .section-text-left {
    color: white;
}

.reassurance-body {
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: var(--lh-snug);
}

.reassurance-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 32px;
}

.reassurance-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reassurance-bullets li::before {
    content: '✓';
    color: var(--success);
    font-weight: var(--weight-bold);
    font-size: 20px;
}

/* ========== SUPPORT ========== */
.support-channels {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .support-channels {
        grid-template-columns: repeat(3, 1fr);
    }
}

.support-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.2s ease;
}

.support-card:hover {
    transform: translateY(-4px);
}

.support-card h3 {
    margin-top: 16px;
}

/* ========== RESPONSIBLE GAMING ========== */
.responsible-tools {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.responsible-tools ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.responsible-tools li {
    padding: 12px 12px 12px 40px;
    position: relative;
    background: white;
    border-radius: var(--radius-xs);
}

.responsible-tools li::before {
    content: '🛡️';
    position: absolute;
    left: 12px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: white;
    font-size: 24px;
    font-weight: var(--weight-bold);
    border-radius: 50%;
    margin-top: 24px;
}

/* ========== FAQ ========== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: var(--weight-semibold);
    -webkit-tap-highlight-color: transparent;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: var(--muted);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.8);
    padding: 48px 0 calc(24px + var(--bottom-bar-height) + var(--safe-bottom));
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h4 {
    color: white;
    font-size: var(--body);
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 0;
    font-size: var(--small);
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    font-size: var(--small);
}

.footer-legal {
    text-align: center;
    font-size: var(--small);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== BOTTOM BAR ========== */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(var(--bottom-bar-height) + var(--safe-bottom));
    padding-bottom: var(--safe-bottom);
    background: white;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
}

.bottom-bar nav {
    display: flex;
    width: 100%;
}

.bottom-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: var(--weight-medium);
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.bottom-bar-item.highlight {
    color: var(--primary);
}

.bottom-bar-item:hover,
.bottom-bar-item.active {
    color: var(--primary);
}

.bottom-bar-icon {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .bottom-bar {
        display: none;
    }
}

/* ========== ICONS (Simple SVG placeholders) ========== */
.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

