/* Unified Premium Light Theme and Aesthetics */
:root {
    --bg-main: #f8fafc; /* slate-50 */
    --bg-slate: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.95);
    --border-light: rgba(15, 23, 42, 0.08); /* slate-900 at 8% opacity */
    --text-main: #0f172a; /* slate-900 */
    --text-muted: #475569; /* slate-600 */
    --primary: #059669; /* emerald-600 */
    --primary-hover: #047857; /* emerald-700 */
    --secondary: #d97706; /* amber-600 */
    --secondary-hover: #b45309; /* amber-700 */
    --danger: #dc2626;
    --success: #059669;
    --font-gaming: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .fs-4, .name, .hero-title, .section-title {
    font-family: var(--font-gaming);
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

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

/* Glassmorphism Utilities with Soft Shadows */
.glass-panel {
    background-color: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
}

/* Header Navbar Overhaul */
header.bg-primary {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    width: 38px;
    height: 38px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main) !important;
    background-color: rgba(15, 23, 42, 0.04);
}

.nav-link.active {
    border-bottom: 2px solid var(--primary);
    border-radius: 8px 8px 0 0;
}


/* Marquee Bar styling */
.bg-dark.pt-2 {
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--border-light);
}

marquee {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
}

/* Premium Hero Section */
.hero-section {
    padding: 60px 0 40px 0;
    text-align: center;
    background: radial-gradient(circle at top, rgba(5, 150, 105, 0.05) 0%, rgba(248, 250, 252, 0) 60%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

/* Stats Badges */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.stat-item {
    padding: 15px;
    text-align: center;
}

.stat-value {
    font-family: var(--font-gaming);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Interactive Category Filter Chips */
.chips-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.chip-btn {
    background-color: var(--bg-slate);
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.chip-btn:hover {
    color: var(--text-main);
    border-color: rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

.chip-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

/* Search bar styling */
.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.search-input {
    width: 100%;
    background-color: #ffffff !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-main) !important;
    padding: 15px 20px 15px 50px !important;
    border-radius: 50px !important;
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
}

.search-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.1) !important;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Game Grid Layout - 3 columns on desktop, 1 on mobile */
.games-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

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

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


/* Glassmorphic Game Cards */
.rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    font-family: var(--font-gaming);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-bottom-right-radius: 16px;
    z-index: 10;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}
.rank-badge.rank-1 {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: #000000;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.rank-badge.rank-2 {
    background: linear-gradient(135deg, #e0e0e0 0%, #b8b8b8 100%);
    color: #000000;
    box-shadow: 0 4px 12px rgba(184, 184, 184, 0.2);
}
.rank-badge.rank-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(160, 82, 45, 0.25);
}

.premium-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    background-color: var(--bg-slate);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    padding: 20px !important;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.12), 0 1px 3px rgba(5, 150, 105, 0.05);
    border-color: rgba(5, 150, 105, 0.4);
}

.premium-card:hover .rank-badge {
    transform: scale(1.05);
}

.card-top-info {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.card-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.premium-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.card-game-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.2;
}

.rating-pill {
    background: rgba(217, 119, 6, 0.08);
    color: var(--secondary);
    border: 1px solid rgba(217, 119, 6, 0.15);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}

.card-meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.meta-box {
    display: flex;
    flex-direction: column;
}

.meta-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.meta-value {
    font-weight: 700;
    color: var(--text-main);
}

.meta-value.bonus {
    color: var(--secondary);
}

.meta-value.redeem {
    color: var(--primary);
}

.card-actions {
    margin-top: auto;
}

.btn-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    font-weight: 700;
    border: none;
    padding: 12px;
    border-radius: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}


.btn-premium:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

/* Carousel / Game Slider Styles */
.game-slider-wrapper {
    position: relative;
    padding: 0 50px;
    margin-bottom: 40px;
}

.game-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.game-slider::-webkit-scrollbar {
    display: none;
}

.game-slide {
    flex: 0 0 auto;
    width: 90px;
    text-align: center;
    transition: var(--transition-smooth);
}

.game-slide:hover {
    transform: scale(1.1) translateY(-4px);
}

.game-slide img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    border: 1px solid var(--border-light);
}

.game-slide .game-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 10px;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-main) !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.slider-btn:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

/* Premium Quick Shortcuts Navigation Dashboard */
.shortcuts-container {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 45px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
}

.shortcuts-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.shortcuts-title i {
    color: var(--primary);
}

.shortcuts-subtitle {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }
}

.shortcut-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.shortcut-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border-color: rgba(5, 150, 105, 0.2);
}

.shortcut-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(5, 150, 105, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.shortcut-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.shortcut-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Latest Blogs Grid Section */
.blogs-section-title {
    margin: 50px 0 25px 0;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.premium-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: var(--transition-smooth);
    background-color: var(--bg-slate);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.premium-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.15);
}

.blog-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.premium-blog-card:hover .blog-img-wrapper img {
    transform: scale(1.06);
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.blog-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.blog-link:hover {
    color: var(--primary-hover);
}


/* Telegram banner overhaul */
.telegram-block {
    margin: 40px 0;
}

.telegram-card {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.25);
    flex-wrap: wrap;
    gap: 20px;
}

.telegram-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.telegram-icon {
    font-size: 3rem;
    color: #ffffff;
}

.telegram-text h4 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 6px;
}

.telegram-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.telegram-join-btn {
    background-color: #ffffff;
    color: #0088cc !important;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.telegram-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #f8fafc;
}

/* Custom Scroll to Top Button */
.scroll-btn {
    background-color: var(--primary);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
}

/* Specifications Table details page styles */
.table {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.table th, .table td {
    border-bottom: 1px solid var(--border-light);
    color: var(--text-main);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(15, 23, 42, 0.02);
}

/* Featured App spotlight badge styles */
.featured-box {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.04) 0%, rgba(217, 119, 6, 0.04) 100%);
    border: 1px solid rgba(5, 150, 105, 0.15);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.featured-box img {
    border: 2px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

/* Search Suggestions styling */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-slate);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-top: 8px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: none;
    overflow: hidden;
}

.suggestion-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.suggestion-item:hover {
    background-color: rgba(15, 23, 42, 0.02);
}

.suggestion-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.suggestion-info {
    display: flex;
    flex-direction: column;
}

.suggestion-name {
    font-weight: 600;
    color: var(--text-main);
}

.suggestion-bonus {
    font-size: 0.8rem;
    color: var(--secondary);
}

/* Responsive breakdowns & Phone UI Optimization */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        gap: 10px;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .telegram-card {
        flex-direction: column;
        text-align: center;
    }
    
    .telegram-info {
        flex-direction: column;
    }
    
    .slider-btn {
        display: none !important;
    }
    
    .game-slider-wrapper {
        padding: 0;
    }
}

/* Specific Phone Viewport sizing upgrades to "work bigger perfectly" */
@media (max-width: 576px) {
    body {
        font-size: 1.05rem; /* Larger base font size for phone UI readability */
    }
    
    .hero-title {
        font-size: 2.4rem; /* Prominent title */
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1.15rem; /* Readability first */
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .chip-btn {
        padding: 12px 24px; /* Larger hit target */
        font-size: 1.05rem;
    }
    
    .premium-card {
        padding: 24px !important; /* Spacious padding */
    }
    
    .card-game-title {
        font-size: 1.45rem; /* Bigger game titles */
    }
    
    .card-img-wrapper {
        width: 90px; /* Bigger application icons on mobile */
        height: 90px;
        border-radius: 20px;
    }
    
    .meta-label {
        font-size: 0.8rem;
    }
    
    .meta-value {
        font-size: 1.1rem;
    }
    
    .btn-premium {
        padding: 15px; /* Larger tap targets */
        font-size: 1.1rem;
    }
    
    .shortcuts-container {
        padding: 24px 15px;
    }
    
    .shortcut-card {
        padding: 24px 15px;
    }
    
    .shortcut-name {
        font-size: 1.25rem;
    }
    
    .shortcut-desc {
        font-size: 0.95rem;
    }
}

/* Vanilla Share Buttons styling */
.share-buttons-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-facebook {
    background-color: #1877f2;
}

.share-twitter {
    background-color: #000000;
}

.share-whatsapp {
    background-color: #25d366;
}

.share-telegram {
    background-color: #0088cc;
}

/* 4-column quick shortcuts navigation layout overrides */
@media (min-width: 992px) {
    .shortcuts-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
@media (max-width: 992px) and (min-width: 576px) {
    .shortcuts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 576px) {
    .shortcuts-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Calculator Grid & Cards Styling */
.calc-apps-grid {
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}
.calc-apps-grid::-webkit-scrollbar {
    width: 6px;
}
.calc-apps-grid::-webkit-scrollbar-thumb {
    background-color: var(--border-light);
    border-radius: 4px;
}
.calc-app-card {
    transition: var(--transition-smooth) !important;
}
.calc-app-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.05);
    border-color: rgba(5, 150, 105, 0.2) !important;
}
.calc-app-card.active {
    border-color: var(--primary) !important;
    background-color: rgba(5, 150, 105, 0.05) !important;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.1) !important;
}
