/*
Theme Name: Fortune Tiger Brasil
Theme URI: https://fortune-tiger.bar
Author: Fortune Tiger Brasil
Author URI: https://fortune-tiger.bar
Description: Tema SEO otimizado para Fortune Tiger e jogos de casino. Desenvolvido para o mercado brasileiro com foco em conversão e performance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fortune-tiger
Tags: gaming, casino, slot-games, brazil, portuguese, responsive, custom-logo, custom-menu, footer-widgets, translation-ready
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* ============================================
   CSS Reset & Base Styles
   ============================================ */

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

:root {
    --primary: #C41E3A;
    --primary-dark: #9a1830;
    --secondary: #FFD700;
    --secondary-dark: #D4B100;
    --bg-dark: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-elevated: #252525;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --text-accent: #FFD700;
    --success: #4CAF50;
    --danger: #F44336;
    --info: #2196F3;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', 'Roboto Slab', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   Header & Navigation
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.main-navigation {
    display: none;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.main-navigation a {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--bg-dark);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    color: var(--bg-dark);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #388E3C);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    color: white;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at top, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text h1 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ============================================
   Game Container
   ============================================ */

.game-container {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.game-frame {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    background: #000;
}

.game-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    cursor: pointer;
    transition: var(--transition);
}

.game-facade:hover {
    background: linear-gradient(180deg, #252525 0%, #1a1a1a 100%);
}

.game-facade.hidden {
    display: none;
}

.facade-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.facade-text {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
    padding: 60px 0;
    background: var(--bg-card);
}

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

.stat-card {
    background: var(--bg-elevated);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   Content Section
   ============================================ */

.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.main-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-content h2 {
    color: var(--secondary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.main-content ul,
.main-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.main-content li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.main-content strong {
    color: var(--text-light);
}

/* Table Styles */
.symbol-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.symbol-table th,
.symbol-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.symbol-table th {
    background: var(--bg-elevated);
    color: var(--secondary);
    font-weight: 600;
}

.symbol-table tr:hover td {
    background: rgba(255, 215, 0, 0.05);
}

/* ============================================
   Sidebar
   ============================================ */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-card h3 {
    margin-bottom: 16px;
    color: var(--secondary);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--success);
    font-size: 1.25rem;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.faq-grid {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
}

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

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

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

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 80px 0;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(196, 30, 58, 0.2) 0%, transparent 60%),
        var(--bg-dark);
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background: var(--bg-card);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-section h4 {
    color: var(--secondary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.875rem;
}

.disclaimer-box {
    background: var(--bg-elevated);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-left: 3px solid var(--secondary);
}

/* ============================================
   Sticky CTA (Mobile)
   ============================================ */

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cta .btn {
    width: 100%;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* ============================================
   Blog Post Styles
   ============================================ */

.single-post {
    padding: 120px 0 60px;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-category {
    color: var(--secondary);
    font-weight: 600;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
}

.post-content h2 {
    color: var(--secondary);
    margin-top: 32px;
}

.post-content h3 {
    color: var(--text-light);
    margin-top: 24px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 24px 0;
}

.post-content blockquote {
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-muted);
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-elevated);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 40px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.author-info h4 {
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.875rem;
    margin: 0;
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    margin-bottom: 24px;
}

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

.related-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.related-card-image {
    height: 160px;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.related-card-content {
    padding: 20px;
}

.related-card-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.related-card-content p {
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   Table of Contents
   ============================================ */

.table-of-contents {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.table-of-contents h4 {
    color: var(--secondary);
    margin-bottom: 16px;
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.table-of-contents a:hover {
    color: var(--secondary);
}

/* ============================================
   Affiliate Cards
   ============================================ */

.affiliate-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.affiliate-card:hover {
    border-color: var(--secondary);
}

.affiliate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.affiliate-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.affiliate-rating {
    color: var(--secondary);
}

.affiliate-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.affiliate-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.affiliate-feature.positive {
    color: var(--success);
}

.affiliate-feature.negative {
    color: var(--danger);
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (min-width: 768px) {
    .main-navigation {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-text {
        text-align: left;
    }

    .hero-description {
        margin-left: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .content-grid {
        grid-template-columns: 2fr 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .sticky-cta {
        display: block;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .main-content {
        padding: 24px;
    }

    .post-content {
        padding: 24px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Accessibility
   ============================================ */

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 9999;
}

.skip-link:focus {
    top: 16px;
}

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

:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   WordPress Specific
   ============================================ */

.wp-block-image {
    margin: 24px 0;
}

.wp-block-image figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.wp-caption {
    background: var(--bg-card);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary);
    color: white;
}

.pagination .current {
    background: var(--secondary);
    color: var(--bg-dark);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    color: var(--text-light);
    font-family: inherit;
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form button {
    padding: 12px 20px;
    background: var(--secondary);
    color: var(--bg-dark);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

/* ============================================
   Latest Tips Sidebar
   ============================================ */

.tip-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: var(--transition);
}

.tip-item:hover .tip-image img {
    transform: scale(1.1);
}

.tip-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-elevated);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tip-content {
    flex: 1;
}

.tip-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.3;
    color: var(--text-light);
}

.tip-content h4 a {
    color: var(--text-light);
    text-decoration: none;
}

.tip-content h4 a:hover {
    color: var(--secondary);
}

.tip-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}