/* EGT SLOTS - CLASSIC GOLDEN DESIGN */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FFD700;
    --secondary: #FF6347;
    --accent: #FFA500;
    --dark: #1a0a0f;
    --dark-light: #2a1a1f;
    --text: #ffffff;
    --text-muted: #c0a080;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* HEADER */
.egt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    height: 80px;
}

.header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-egt {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: pulse-egt 2s ease-in-out infinite;
}

@keyframes pulse-egt {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-icon-egt {
    font-size: 42px;
    filter: drop-shadow(0 0 10px #FFD700);
}

.nav-egt {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link-egt {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s;
    padding: 8px 0;
}

.nav-link-egt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.nav-link-egt:hover {
    color: var(--primary);
}

.nav-link-egt:hover::after {
    width: 100%;
}

.btn-egt-play {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-egt-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-egt-play:hover::before {
    width: 300px;
    height: 300px;
}

.btn-egt-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 40px rgba(255, 215, 0, 0.9);
}

/* COMPACT PAGE HEADER - Вместо Hero */
.page-header-egt {
    margin-top: 80px;
    padding: 60px 40px 40px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 99, 71, 0.08) 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.page-header-egt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 99, 71, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.page-header-egt-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header-egt-title {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FF6347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1.2;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.page-header-egt-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.page-header-egt-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.page-header-egt-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.page-header-egt-breadcrumb a:hover {
    color: var(--secondary);
}

.page-header-egt-breadcrumb span {
    color: var(--text-muted);
}

/* CATEGORY TABS */
.category-tabs-egt {
    max-width: 1600px;
    margin: 60px auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    background: var(--dark);
}

.tabs-grid-egt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tab-card-egt {
    background: rgba(42, 26, 31, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tab-card-egt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.5s;
}

.tab-card-egt:hover::before {
    left: 100%;
}

.tab-card-egt:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    transform: translateY(-5px);
}

.tab-card-egt.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

.tab-icon-egt {
    font-size: 56px;
    margin-bottom: 15px;
    display: block;
}

.tab-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tab-count {
    font-size: 14px;
    color: var(--text-muted);
}

/* CASINO GRID */
.casinos-grid-egt {
    max-width: 1600px;
    margin: 0 auto 60px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    background: var(--dark);
}

.section-title-egt {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title-egt::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
}

.casino-card-egt {
    background: rgba(42, 26, 31, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.casino-card-egt::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.casino-card-egt:hover::before {
    opacity: 1;
}

.casino-card-egt:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 60px rgba(255, 215, 0, 0.6);
    transform: translateY(-10px);
}

.card-rank-badge-egt {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    z-index: 5;
    pointer-events: none;
}

.card-header-egt {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.casino-logo-egt {
    width: 90px;
    height: 90px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
}

.casino-logo-egt img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder-egt {
    font-size: 48px;
}

.casino-info-egt {
    flex: 1;
}

.casino-name-egt {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rating-egt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
}

.rating-number-egt {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.games-count-badge-egt {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.egt-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.feature-item-egt {
    padding: 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.jackpot-display-egt {
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 99, 71, 0.2));
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
}

.jackpot-label-egt {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.jackpot-amount-egt {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.card-actions-egt {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 25px;
    position: relative;
    z-index: 10;
}

.btn-play-egt {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    color: #000;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-play-egt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-play-egt:hover::before {
    width: 300px;
    height: 300px;
}

.btn-play-egt:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 40px rgba(255, 215, 0, 0.9);
}

.btn-info-egt {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-info-egt:hover {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
    text-decoration: none;
}

/* FOOTER */
.footer-egt {
    background: linear-gradient(180deg, rgba(26, 10, 15, 0.6), rgba(10, 5, 5, 0.95));
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary)) 1;
    padding: 60px 40px 30px;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.footer-content-egt {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column-egt {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-egt {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.footer-brand-icon {
    font-size: 42px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-egt {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-egt {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.footer-link-egt::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-link-egt:hover {
    color: var(--primary);
    padding-left: 25px;
    text-decoration: none;
}

.footer-link-egt:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon-egt {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon-egt:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.footer-age-badge-egt {
    padding: 15px 25px;
    background: linear-gradient(135deg, #ff0000, #ff6b00);
    border-radius: 15px;
    font-weight: 900;
    font-size: 32px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    animation: pulse-glow-egt 2s ease-in-out infinite;
}

@keyframes pulse-glow-egt {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.6); }
    50% { box-shadow: 0 0 50px rgba(255, 0, 0, 0.9); }
}

.footer-bottom-egt {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright-egt {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.footer-payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icon {
    width: 50px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-disclaimer-egt {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

/* SEO CONTENT */
.seo-section-egt {
    max-width: 1400px;
    margin: 100px auto;
    padding: 60px;
    background: rgba(42, 26, 31, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    position: relative;
    z-index: 10;
}

.seo-section-egt h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-section-egt h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 30px 0 15px;
    color: var(--primary);
}

.seo-section-egt p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.seo-section-egt ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.seo-section-egt li {
    padding: 12px 0 12px 35px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
}

.seo-section-egt li::before {
    content: '🔥';
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* MOBILE MENU */
.mobile-menu-toggle-egt {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle-egt span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.mobile-menu-egt {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 10, 15, 0.98);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-egt.active {
    display: flex;
}

.mobile-menu-egt a {
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.mobile-menu-egt a:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .casino-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .tabs-grid-egt {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-egt {
        display: none;
    }
    
    .mobile-menu-toggle-egt {
        display: flex;
    }
    
    .header-wrapper {
        padding: 15px 20px;
    }
    
    /* FIX: Logo smaller on mobile */
    .logo-egt {
        font-size: 20px;
        gap: 8px;
    }
    
    .logo-icon-egt {
        font-size: 28px;
    }
    
    /* FIX: Button text properly displayed on mobile */
    .btn-egt-play {
        padding: 10px 18px;
        font-size: 12px;
        letter-spacing: 0.5px;
        white-space: nowrap;
        min-width: auto;
    }
    
    /* FIX: Better header height */
    .egt-header {
        height: 70px;
    }
    
    .page-header-egt {
        margin-top: 70px;
        padding: 40px 20px 30px;
    }
    
    .page-header-egt-title {
        font-size: 32px;
    }
    
    .page-header-egt-subtitle {
        font-size: 14px;
    }
    
    .page-header-egt-breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .category-tabs-egt {
        padding: 0 20px;
        margin: 40px auto;
    }
    
    .tabs-grid-egt {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tab-card-egt {
        padding: 20px 15px;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .casino-card-egt {
        padding: 25px;
        min-height: auto;
    }
    
    .card-rank-badge-egt {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: 15px;
        right: 15px;
        z-index: 10;
    }
    
    .card-header-egt {
        flex-direction: column;
        text-align: center;
        position: relative;
        padding-top: 10px;
    }
    
    .casino-logo-egt {
        margin: 0 auto;
    }
    
    .casino-info-egt {
        position: relative;
        z-index: 1;
    }
    
    .casino-name-egt {
        font-size: 20px;
        position: relative;
        z-index: 1;
    }
    
    .egt-features-grid {
        grid-template-columns: 1fr;
    }
    
    .jackpot-amount-egt {
        font-size: 24px;
    }
    
    .card-actions-egt {
        flex-direction: column;
    }
    
    .btn-play-egt,
    .btn-info-egt {
        width: 100%;
        padding: 14px;
    }
    
    .section-title-egt {
        font-size: 32px;
    }
    
    .footer-content-egt {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-egt {
        flex-direction: column;
        text-align: center;
    }
    
    .seo-section-egt {
        padding: 30px 20px;
        margin: 60px 20px;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 15px 15px;
        gap: 10px;
    }
    
    /* Even smaller logo on tiny screens */
    .logo-egt {
        font-size: 16px;
        gap: 6px;
        letter-spacing: 1px;
    }
    
    .logo-egt span:last-child {
        display: none;
    }
    
    .logo-icon-egt {
        font-size: 28px;
    }
    
    /* Compact button for small screens */
    .btn-egt-play {
        padding: 10px 15px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .egt-header {
        height: 65px;
    }
    
    .page-header-egt {
        margin-top: 65px;
        padding: 30px 15px 25px;
    }
    
    .page-header-egt-title {
        font-size: 28px;
    }
    
    .page-header-egt-subtitle {
        font-size: 13px;
    }
    
    .page-header-egt-breadcrumb {
        font-size: 11px;
    }
    
    .casinos-grid-egt {
        padding: 0 20px;
        margin: 0 auto 40px;
    }
    
    .mobile-menu-egt {
        top: 65px;
    }
}

