@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Montserrat:wght@300;400;700&display=swap');

/* 
   Theming & Reset 
   Theme: Noxus Red Rebrand
   Colors: #050505 (Deep Black), #db0c15 (Primary Red), #c20000 (Secondary Red)
*/

:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --primary-color: #db0c15;
    --secondary-color: #c20000;
    --text-primary: #E0E0E0;
    --text-secondary: #A0A0A0;
    --accent-silver: #C0C0C0;
    --heading-font: 'Michroma', sans-serif;
    --text-font: 'Montserrat', sans-serif;
    --spacing-section: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--text-font);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--spacing-section) 0;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

/* Typography Defaults */
h1,
h2,
h3 {
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(219, 12, 21, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-silver);
    color: var(--accent-silver);
}

.btn-secondary:hover {
    background: var(--accent-silver);
    color: var(--bg-dark);
}

/* Age Gate Modal */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-gate-content {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    background: var(--bg-card);
}

.age-gate-content h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.age-gate-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    z-index: 100;
}

.logo,
.navbar-brand {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.nav-cta {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    color: var(--accent-silver);
    border-bottom: 1px solid transparent;
}

.nav-cta:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

/* GLOBAL HEADER REFINEMENT & CRITICAL FIXES */
/* Garante que a logo do canto tenha 60px */
.navbar-brand img {
    height: 60px !important;
    width: auto !important;
}

/* ForÃ§a a linha vermelha em todas as pÃ¡ginas */
.navbar {
    border-bottom: 2px solid #db0c15 !important;
    padding-bottom: 15px !important;
}

/* ForÃ§a o menu a ficar em linha (horizontal) e nÃ£o empilhado */
.navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
    /* EspaÃ§o entre os itens */
}

/* Ajuste fino para os links nÃ£o ficarem colados */
.navbar-nav .nav-link {
    padding: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    /* Impede que o texto quebre */
    color: #ffffff !important;
    font-family: 'Michroma', sans-serif;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #db0c15 !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #000;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: 5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-logo {
    max-width: 550px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.navbar-brand img,
.nav-logo {
    height: 65px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-logo {
        width: 90%;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.hero-slogan {
    margin-top: -15px !important;
    /* Negative margin to pull it closer to the logo above */
    position: relative;
    /* Ensures z-index works if needed */
    z-index: 2;
}

.btn-hero {
    padding: 1rem 3rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(219, 12, 21, 0.5);
}

/* About Section */
.about {
    text-align: center;
    border-bottom: 1px solid #222;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Environments Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    height: 100%;
}

.card-link:hover .card {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-link:hover .card-icon svg {
    filter: drop-shadow(0 0 8px rgba(219, 12, 21, 0.8));
    transform: scale(1.1);
}

.card {
    background: var(--bg-card);
    padding: 2rem;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-icon {
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    fill: none;
    filter: drop-shadow(0 0 5px rgba(219, 12, 21, 0.4));
    transition: all 0.3s ease;
}

.card:hover .card-icon svg {
    filter: drop-shadow(0 0 8px rgba(219, 12, 21, 0.8));
    transform: scale(1.1);
}

.card h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Menu Page Styles (Zig-Zag) */
.menu-grid {
    margin-top: 4rem;
}

.menu-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.menu-row:nth-child(even) {
    flex-direction: row-reverse;
}

.menu-image {
    flex: 1;
}

.menu-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.menu-row:hover .menu-image img {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.menu-content {
    flex: 1;
}

.menu-content h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.menu-content p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 900px) {

    .menu-row,
    .menu-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .menu-content h2 {
        font-size: 1.8rem;
    }
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: #000;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-info h4 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    color: var(--accent-silver);
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.eighteen-plus {
    text-align: center;
    border: 2px solid var(--accent-silver);
    padding: 1rem;
    width: 100px;
}

.eighteen-plus span {
    display: block;
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-silver);
}

.eighteen-plus p {
    font-size: 0.5rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.copyright {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

/* Manifesto Section (Refactored) */
.manifesto {
    background: var(--bg-dark);
}

.manifesto-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-content-centered p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    border-left: none !important;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    margin: 3rem auto;
    max-width: 90%;
    display: block;
}

/* Service Section */
.service {
    background: #080808;
    border-top: 1px solid #1a1a1a;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid #222;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: var(--accent-silver);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hours-list .time {
    color: var(--primary-color);
}

.hours-list .time.closed {
    color: #444;
}

.hours-list small {
    font-size: 0.8rem;
    color: #666;
    margin-left: 0.5rem;
    font-family: var(--text-font);
}

.address {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    border: 1px solid var(--accent-silver);
    background-image: repeating-linear-gradient(45deg, #1a1a1a 0, #1a1a1a 1px, #222 0, #222 50%);
    filter: grayscale(100%) invert(100%) contrast(80%);
    position: relative;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.map-placeholder span {
    position: relative;
    z-index: 2;
    color: #fff;
    letter-spacing: 2px;
    font-family: var(--heading-font);
}

.map-btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 900px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
    }

    .manifesto-content {
        padding: 3rem 1.5rem;
    }

    .manifesto-image {
        height: 50vh;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Agenda Section */
.agenda {
    text-align: center;
    background: #0a0a0a;
}

.agenda-content {
    border: 1px solid var(--primary-color);
    padding: 3rem;
    box-shadow: 0 0 20px rgba(219, 12, 21, 0.1);
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
    max-width: 800px;
    margin: 0 auto;
}

.agenda p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-glow-border {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(219, 12, 21, 0.3);
}

.btn-glow-border:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 30px rgba(219, 12, 21, 0.6);
}

/* Health Section */
.health {
    background: #151515;
    border-top: 1px solid #333;
}

.health-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.health-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary-color);
    fill: none;
    opacity: 0.8;
}

.health-text h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.health-text p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.health-text .disclaimer {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Final Footer */
.footer-final {
    background: #000;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    font-weight: 700;
}

.footer-socials a {
    color: var(--accent-silver);
    margin: 0 1rem;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-socials a:hover {
    color: var(--primary-color);
}

.footer-final .copyright {
    color: #444;
    font-size: 0.8rem;
    margin-top: 0;
}

.warning-text {
    color: #555;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border: 1px solid #333;
    padding: 0.5rem 1rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .age-gate-content h2 {
        font-size: 2rem;
    }

    .health-grid {
        flex-direction: column;
        text-align: center;
    }
}

/* Navbar Links Branding */
.custom-nav-links .nav-link {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.custom-nav-links .nav-link:hover {
    color: #db0c15 !important;
}

/* Privacy Policy Page */
.policy-section {
    padding: 150px 20px 100px;
    background: var(--bg-dark);
    min-height: 80vh;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    color: #cccccc;
}

.policy-container h1 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-container h2 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.policy-container p {
    font-family: var(--text-font);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-link {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: var(--primary-color);
}

/* FORÃ‡A BRUTA: MENU PRETO ABSOLUTO */
.navbar,
.navbar.fixed-top,
.bg-black,
nav {
    background-color: #000000 !important;
    /* Preto Real */
    background: #000000 !important;
    box-shadow: none !important;
    /* Remove sombras cinzas */
    border: none !important;
}

/* --- CORREÃ‡ÃƒO DE EMERGÃŠNCIA: PRETO REAL --- */

/* ForÃ§a todas as classes de fundo "escuro" a serem Preto Absoluto #000000 */
.bg-black,
.bg-dark,
.navbar,
header,
body {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* Garante que imagens dentro desses containers nÃ£o herdem fundo cinza */
img {
    background: transparent !important;
}

/ *   = = =   H E R O   S E C T I O N   ( C A P A )   = = =   * /     . h e r o - n e w - b g    {
                 b a c k g r o u n d :    r a d i a l - g r a d i e n t ( c i r c l e   a t   c e n t e r ,    # 1 a 0 0 0 0   0 % ,    # 0 0 0 0 0 0   7 0 % ) ;
                     / *   G a r a n t e   t e l a   c h e i a   * /             h e i g h t :    1 0 0 v h ;
                 w i d t h :    1 0 0 % ;
                     / *   C e n t r a l i z a Ã § Ã £ o   t o t a l   * /             d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 a l i g n - i t e m s :    c e n t e r ;
                     o v e r f l o w :    h i d d e n ;
                 / *   I M P E D E   b a r r a s   d e   r o l a g e m   s e   o   t e x t o   f o r   m u i t o   g r a n d e   * /             p o s i t i o n :    r e l a t i v e ;
                 p a d d i n g :    0 ;
                 / *   R e m o v e   p a d d i n g s   q u e   a t r a p a l h a m   * /     
}

         / *   = = =   N O X U S :   P A R E D Ã ’O   D E   F O R A   A   F O R A   = = =   * /     . h e r o - l o g o - t e x t    {
                 f o n t - f a m i l y :    ' M i c h r o m a '  ,    s a n s - s e r i f ;
                 f o n t - w e i g h t :    4 0 0 ;
                     / *   2 2 v w   Ã ©   o   t a m a n h o   e x a t o   p a r a   5   l e t r a s   o c u p a r e m   a   l a r g u r a   t o t a l   * /             f o n t - s i z e :    2 2 v w ;
                     c o l o r :    # f f f ;
                 t e x t - t r a n s f o r m :    u p p e r c a s e ;
                     / *   P u x a   a s   l e t r a s   u m   p o u c o   p a r a   c a b e r e m   p e r f e i t a m e n t e   * /             l e t t e r - s p a c i n g :    - 1 v w ;
                     m a r g i n :    0 ;
                 l i n e - h e i g h t :    0 . 8 ;
                 w i d t h :    1 0 0 % ;
                 t e x t - a l i g n :    c e n t e r ;
                     / *   E F E I T O   N E O N   I N T E N S O   * /             t e x t - s h a d o w :                      0   0   5 p x   r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    1 ) ,                      0   0   3 0 p x   # d b 0 c 1 5 ,                      0   0   8 0 p x   # d b 0 c 1 5 ,                      0   0   1 5 0 p x   r g b a ( 2 1 9 ,    1 2 ,    2 1 ,    0 . 6 ) ;
                     p o s i t i o n :    r e l a t i v e ;
                 z - i n d e x :    2 ;
         
}

         / *   = = =   S U B T Ã  T U L O   = = =   * /     . h e r o - s u b t i t l e - n e w    {
                 f o n t - f a m i l y :    ' M i c h r o m a '  ,    s a n s - s e r i f ;
                 f o n t - s i z e :    c l a m p ( 0 . 8 r e m ,    2 v w ,    1 . 5 r e m ) ;
                 c o l o r :    # a a a ;
                 l e t t e r - s p a c i n g :    0 . 5 v w ;
                 m a r g i n - t o p :    1 0 p x ;
                 t e x t - t r a n s f o r m :    u p p e r c a s e ;
                 f o n t - w e i g h t :    3 0 0 ;
                 o p a c i t y :    0 . 8 ;
                 w i d t h :    1 0 0 % ;
                 t e x t - a l i g n :    c e n t e r ;
         
}

     

/* Button Noxus Back */
.btn-noxus-back {
    font-family: 'Michroma', sans-serif;
    color: #db0c15;
    /* Noxus Red */
    border: 1px solid #db0c15;
    padding: 10px 40px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    display: inline-block;
}

.btn-noxus-back:hover {
    background-color: #db0c15;
    color: #000;
    box-shadow: 0 0 15px #db0c15;
    /* Neon glow */
}


/* NEON & PROJECTION STYLES */
.neon-on {
    color: #fff !important;
    text-shadow: 0 0 10px #ef4444, 0 0 40px #dc2626, 0 0 80px #991b1b !important;
    filter: drop-shadow(0 0 0 transparent);
}

.neon-sub-on {
    color: rgba(254, 202, 202, 0.9) !important;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.8);
}

.u-on {
    color: #fff !important;
    text-shadow: 0 0 10px #ef4444, 0 0 40px #dc2626, 0 0 80px #7f1d1d !important;
    filter: drop-shadow(0 0 0 transparent);
}

.shadow-projection {
    filter: drop-shadow(25px 15px 4px rgba(0, 0, 0, 1));
}

.drop-shadow-glow {
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.8);
}

/* Layout Helpers (Responsive Huge Text) */
.noxus-logo-container {
    width: 100%;
    text-align: center;
    position: relative;
    mix-blend-mode: screen;
    padding: 0 10px;
    margin-bottom: 40px;
    min-height: 60vh;
    padding-top: 120px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.noxus-big-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12vw;
    /* Large responsive size */
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    cursor: default;
    user-select: none;
    font-family: 'Arial Black', sans-serif;
    /* Fallback */
}

.x-wrapper {
    position: relative flex;
    margin-right: 0.2em;
    height: 0.8em;
    display: flex;
    align-items: center;
}

/* Custom Tailwind-like Utilities */
.w-\[85\%\] {
    width: 85% !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.text-justify {
    text-align: justify !important;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}