:root {
    --bg-color: #050507;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --glass-border: rgba(255, 255, 255, 0.1);
}

html { scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body { background-color: var(--bg-color); color: var(--text-main); overflow-x: hidden; position: relative; -webkit-font-smoothing: antialiased; }
a, button { touch-action: manipulation; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--neon-cyan), var(--neon-purple)); border-radius: 10px; }

.parallax-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: -1; overflow: hidden; background: #050507; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); -webkit-filter: blur(100px); opacity: 0.35; will-change: transform; transition: transform 0.1s ease-out; }
.orb-1 { top: 20%; left: 10%; width: 400px; height: 400px; background: var(--neon-cyan); }
.orb-2 { bottom: 10%; right: 10%; width: 500px; height: 500px; background: var(--neon-purple); }

.music-player {
    position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 380px;
    background: rgba(14, 14, 20, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--neon-cyan); border-radius: 15px; padding: 12px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 15px; z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.2); transform: translateY(0);
}
.track-info { display: flex; flex-direction: column; }
.track-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.track-name { font-size: 0.95rem; font-weight: 700; color: var(--neon-cyan); }
.player-controls { display: flex; gap: 10px; align-items: center; }
.player-btn {
    background: transparent; border: 1px solid var(--glass-border); color: var(--text-main);
    width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    cursor: pointer; font-size: 1.1rem; transition: 0.3s;
}
.player-btn:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); box-shadow: 0 0 10px rgba(0,243,255,0.3); }

header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(5, 5, 7, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border); z-index: 1000; padding: 12px 5%; display: flex; justify-content: space-between; align-items: center;
}
.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; color: var(--text-main); text-decoration: none; text-shadow: 0 0 15px rgba(188, 19, 254, 0.6); }
nav ul { display: flex; gap: 20px; list-style: none; }
nav a { color: var(--text-main); text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; position: relative; padding-bottom: 3px; transition: color 0.3s; }
nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px; background: var(--neon-cyan); transition: width 0.3s; }
nav a:hover { color: var(--neon-cyan); } nav a:hover::after { width: 100%; }
.header-controls { display: flex; align-items: center; gap: 10px; }

.lang-switch { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--text-muted); border: 1px solid var(--glass-border); padding: 6px 12px; border-radius: 8px; font-weight: bold; cursor: pointer; font-size: 0.8rem; transition: 0.3s; text-decoration: none; }
.lang-switch:hover { color: var(--neon-cyan); border-color: var(--neon-cyan); }
.btn-donate { background: rgba(188, 19, 254, 0.15); color: var(--neon-purple); border: 1.5px solid var(--neon-purple); padding: 6px 18px; border-radius: 30px; font-weight: 900; text-decoration: none; text-transform: uppercase; font-size: 0.8rem; transition: 0.3s; }
.btn-donate:hover { background: var(--neon-purple); color: var(--text-main); box-shadow: 0 0 20px var(--neon-purple); }

.btn-twitch { background: #9146FF; color: #fff; border: 1px solid #9146FF; padding: 6px 15px; border-radius: 30px; font-weight: 700; text-decoration: none; font-size: 0.8rem; display: flex; align-items: center; gap: 5px; transition: 0.3s; cursor: pointer; }
.btn-twitch:hover { background: transparent; color: #9146FF; box-shadow: 0 0 15px rgba(145, 70, 255, 0.5); }

.user-widget { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); padding: 4px 15px 4px 4px; border-radius: 30px; border: 1px solid var(--neon-purple); }
.user-widget img { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--glass-border); }
.user-widget-info { display: flex; flex-direction: column; }
.user-widget-name { font-size: 0.8rem; font-weight: bold; color: #fff; }
.user-widget-stats { font-size: 0.7rem; color: var(--neon-cyan); font-weight: 700; }

section { padding: 90px 5%; max-width: 1400px; margin: 0 auto; position: relative; }
h2 { font-size: 2.2rem; margin: 0 auto 35px auto; width: fit-content; text-align: center; text-transform: uppercase; letter-spacing: 1px; color: var(--text-main); position: relative; }
h2::after { content: ''; position: absolute; bottom: -8px; left: 25%; width: 50%; height: 2px; background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent); }
.glass-panel { background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 16px; padding: 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.3); transition: transform 0.3s; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

#hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 120px; min-height: 90vh; }
.stream-title { font-size: 3.5rem; font-weight: 900; letter-spacing: 3px; margin-bottom: 5px; background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple), var(--neon-cyan)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: gradient-shift 3s linear infinite; }
@keyframes gradient-shift { to { background-position: 200% center; } }

.stream-offline { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; background: linear-gradient(45deg, #0a0a0f, #161625); z-index: 2; padding: 20px; text-align: center; }
iframe { width: 100%; height: 100%; border: none; }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media(min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.gear-list { list-style: none; margin-top: 15px; }
.gear-list li { margin-bottom: 12px; color: var(--text-muted); font-size: 1rem; display: flex; flex-direction: column; gap: 3px; padding: 10px; background: rgba(255,255,255,0.02); border-radius: 8px; transition: 0.3s; }
.gear-list li:hover { background: rgba(0,243,255,0.05); transform: translateX(5px); border-left: 2px solid var(--neon-cyan); }
@media(min-width: 600px) { .gear-list li { flex-direction: row; justify-content: space-between; } }
.gear-list span { color: var(--neon-cyan); font-weight: 700; }

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

.game-card { display: block; text-decoration: none; color: var(--text-main); position: relative; height: 350px; border-radius: 16px; overflow: hidden; background-size: cover; background-position: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); animation: float 6s ease-in-out infinite; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.game-card:nth-child(2) { animation-delay: 1s; } .game-card:nth-child(3) { animation-delay: 2s; }
.game-card:nth-child(4) { animation-delay: 0.5s; } .game-card:nth-child(5) { animation-delay: 1.5s; } .game-card:nth-child(6) { animation-delay: 2.5s; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
.game-card::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); transition: 0.4s; z-index: 1; }
.game-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 15px 35px rgba(188, 19, 254, 0.4); border: 1px solid var(--neon-purple); animation-play-state: paused; }

.game-info { position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 10; transition: 0.3s; display: flex; flex-direction: column; gap: 10px; }
.game-title { font-size: 1.6rem; font-weight: 900; transition: 0.3s; }
.game-card:hover .game-title { color: var(--neon-cyan); transform: translateY(-5px); }

.cloud-btn { 
    background: rgba(0, 243, 255, 0.15); border: 1px solid var(--neon-cyan); color: var(--neon-cyan);
    padding: 8px 15px; border-radius: 8px; font-size: 0.8rem; font-weight: bold; width: fit-content;
    backdrop-filter: blur(5px); opacity: 0; transform: translateY(10px); transition: all 0.3s ease; cursor: pointer;
}
.game-card:hover .cloud-btn { opacity: 1; transform: translateY(0); }
.cloud-btn:hover { background: var(--neon-cyan); color: var(--bg-color); }

.news-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width: 768px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1100px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card { display: flex; flex-direction: column; text-decoration: none; color: var(--text-main); background: rgba(14, 14, 20, 0.7); border: 1px solid var(--glass-border); border-radius: 16px; overflow: hidden; transition: 0.3s; position: relative; }
.news-card:hover { transform: translateY(-8px); border-color: var(--neon-cyan); box-shadow: 0 10px 25px rgba(0,243,255,0.15); }
.news-img { width: 100%; height: 180px; background-size: cover; background-position: center; }
.news-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.news-date { font-size: 0.75rem; color: var(--neon-cyan); margin-bottom: 8px; font-weight: 700; text-transform: uppercase; }
.news-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.news-snippet { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 15px; }
.news-link { font-size: 0.85rem; color: var(--neon-purple); font-weight: 700; text-transform: uppercase; }

.giveaways-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn { background: transparent; border: 1px solid var(--glass-border); color: var(--text-muted); padding: 10px 25px; border-radius: 30px; font-weight: 700; cursor: pointer; transition: 0.3s; text-transform: uppercase; font-size: 0.85rem; }
.tab-btn.active-pc { border-color: var(--neon-cyan); color: var(--neon-cyan); background: rgba(0, 243, 255, 0.1); box-shadow: 0 0 15px rgba(0, 243, 255, 0.2); }
.tab-btn.active-console { border-color: var(--neon-purple); color: var(--neon-purple); background: rgba(188, 19, 254, 0.1); box-shadow: 0 0 15px rgba(188, 19, 254, 0.2); }
.tab-btn:hover { border-color: #fff; color: #fff; }

.clips-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width: 768px) { .clips-grid { grid-template-columns: repeat(3, 1fr); } }
.clip-wrapper { aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; border: 1px solid var(--glass-border); background: #000; transition: 0.3s; }
.clip-wrapper:hover { border-color: var(--neon-cyan); transform: scale(1.02); box-shadow: 0 10px 25px rgba(0,243,255,0.2); }

.socials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; text-align: center; }
@media(min-width: 768px) { .socials-grid { grid-template-columns: repeat(4, 1fr); } }
.social-card { display: flex; flex-direction: column; justify-content: center; align-items: center; text-decoration: none; padding: 20px 10px; transition: 0.3s; }
.social-card:hover { transform: translateY(-8px); border-color: var(--neon-cyan); box-shadow: 0 10px 20px rgba(0,243,255,0.15); }
.stat-number { font-size: 2rem; font-weight: 900; color: var(--neon-cyan); margin: 10px 0; display: block; text-shadow: 0 0 10px rgba(0,243,255,0.3); }
.text-gradient-insta { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.contact-wrap { text-align: center; padding: 20px; }
.contact-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 25px; }
.btn-contact { display: inline-block; padding: 14px 25px; background: transparent; color: var(--neon-cyan); font-size: 1rem; font-weight: 900; text-decoration: none; border: 2px solid var(--neon-cyan); border-radius: 40px; transition: 0.3s; }
.btn-contact:hover { background: var(--neon-cyan); color: var(--bg-color); box-shadow: 0 0 20px var(--neon-cyan); transform: scale(1.05); }
.btn-tg { border-color: #24A1DE; color: #24A1DE; }
.btn-tg:hover { background: #24A1DE; box-shadow: 0 0 20px #24A1DE; }

.ai-chat-btn { position: fixed; bottom: 80px; right: 20px; width: 60px; height: 60px; background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple)); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2000; box-shadow: 0 0 20px rgba(188, 19, 254, 0.5); font-size: 1.5rem; transition: transform 0.3s; }
.ai-chat-btn:hover { transform: scale(1.1); }

.ai-chat-window { position: fixed; bottom: 150px; right: 20px; width: 320px; height: 400px; background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(15px); border: 1px solid var(--neon-purple); border-radius: 16px; display: flex; flex-direction: column; z-index: 2000; opacity: 0; pointer-events: none; transform: translateY(20px); transition: all 0.3s ease; box-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.ai-chat-window.open { opacity: 1; pointer-events: all; transform: translateY(0); }

.ai-header { padding: 15px; border-bottom: 1px solid var(--glass-border); font-weight: 900; display: flex; justify-content: space-between; align-items: center; }
.ai-header span { color: var(--neon-cyan); }
.ai-close { cursor: pointer; color: var(--text-muted); }
.ai-close:hover { color: #fff; }

.ai-body { flex-grow: 1; padding: 15px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.msg { padding: 10px 14px; border-radius: 12px; max-width: 85%; word-wrap: break-word; }
.msg-ai { background: rgba(0, 243, 255, 0.1); border: 1px solid rgba(0, 243, 255, 0.2); align-self: flex-start; color: #fff; }
.msg-user { background: rgba(188, 19, 254, 0.2); border: 1px solid rgba(188, 19, 254, 0.3); align-self: flex-end; color: #fff; }

.ai-footer { padding: 10px; border-top: 1px solid var(--glass-border); display: flex; gap: 10px; }
.ai-input { flex-grow: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 10px; border-radius: 8px; color: #fff; outline: none; }
.ai-input:focus { border-color: var(--neon-cyan); }
.ai-send { background: var(--neon-cyan); color: #000; border: none; padding: 0 15px; border-radius: 8px; font-weight: bold; cursor: pointer; }

@media (max-width: 900px) { header { flex-direction: column; gap: 12px; padding: 12px; } nav ul { flex-wrap: wrap; justify-content: center; gap: 12px; } }

#stream-chat-wrap:fullscreen { background: #000; max-width: 100%; height: 100vh; padding: 0; margin: 0; display: flex; align-items: stretch; }
#stream-chat-wrap:fullscreen .stream-wrapper, #stream-chat-wrap:fullscreen .chat-wrapper { height: 100vh !important; border-radius: 0 !important; border: none !important; }
#stream-chat-wrap:-webkit-full-screen { background: #000; max-width: 100%; height: 100vh; display: flex; align-items: stretch; }
#stream-chat-wrap:-webkit-full-screen .stream-wrapper, #stream-chat-wrap:-webkit-full-screen .chat-wrapper { height: 100vh !important; border-radius: 0 !important; border: none !important; }

/* =========================================
   СТИЛИ ДЛЯ ВЫПАДАЮЩЕГО МЕНЮ ПРОФИЛЯ
   ========================================= */

.profile-dropdown-wrap {
    position: relative;
    display: inline-block;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-trigger:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    background: rgba(0, 243, 255, 0.05);
}

.profile-trigger img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--neon-cyan);
}

.profile-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    width: 260px;
    background: rgba(14, 14, 20, 0.95);
    border: 1px solid var(--neon-cyan);
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
    
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.profile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.profile-menu-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 12px;
    font-weight: bold;
    color: #fff;
    font-size: 1rem;
    text-align: center;
}

.profile-menu-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,243,255,0.1), rgba(188,19,254,0.1));
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.profile-menu-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    transform: scale(1.02);
}

.profile-menu-btn.donate-boost {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,165,2,0.15));
    color: #FFD700;
}

.profile-menu-btn.donate-boost:hover {
    background: #FFD700;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    border-color: #FFD700;
}

.profile-logout {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.3);
    margin-top: 5px;
}

.profile-logout:hover {
    background: #ff4757;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.4);
    border-color: #ff4757;
}

/* =========================================
   СТИЛИ ДЛЯ МОДАЛЬНОГО ОКНА ИНВЕНТАРЯ
   ========================================= */

.inventory-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inventory-modal.open {
    display: flex;
    opacity: 1;
}

.inventory-modal-content {
    background: rgba(14, 14, 20, 0.95);
    border: 1px solid var(--neon-purple);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 25px;
    box-shadow: 0 10px 50px rgba(188, 19, 254, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.inventory-modal.open .inventory-modal-content {
    transform: scale(1);
}

.inventory-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.inventory-close:hover {
    color: #fff;
}

.inventory-items-wrap {
    overflow-y: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 10px;
}

/* =========================================
   🔥 СТИЛИ ДЛЯ СТРИМА, ЧАТА И БАННЕРА GGSEL 🔥
   ========================================= */

/* Железная сцепка для стрима и чата, чтобы не падали вниз */
.stream-chat-container { 
    display: flex; 
    flex-wrap: nowrap;
    width: 100%; 
}

/* Эффект постоянного свечения для баннера GGSEL */
.hover-banner {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 100, 0.4);
    box-shadow: 0 0 25px rgba(0, 255, 100, 0.15);
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.hover-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 255, 100, 0.6) !important;
}

/* Адаптация под средние экраны (баннер уходит вниз) */
@media (max-width: 1100px) {
    .live-section-wrapper {
        flex-direction: column !important;
        align-items: center !important;
    }
    .ggsel-banner {
        width: 100% !important;
        max-width: 500px !important;
        height: 250px !important; 
        margin-top: 20px;
    }
    .ggsel-banner a {
        height: 250px !important;
    }
}

/* Адаптация под телефоны (чат уходит под плеер) */
@media (max-width: 900px) {
    .stream-chat-container { 
        flex-wrap: wrap; 
    }
    .stream-chat-container > .stream-wrapper, 
    .stream-chat-container > .chat-wrapper { 
        flex: 1 1 100% !important; 
        min-width: 100% !important; 
        border-left: none !important; 
    }
}