* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
	background-color: #1b000c;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100vh;
}
.layout {
	display: flex;
	min-height: 100vh;
}
.site-header {
	background: #1b000c;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 12px 0;
}
.site-header-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 20px;
}
.logo-wrap {
	flex: 0 0 auto;
}
.site-logo {
    height: 36px;
    width: auto;
    display: block;
}
.search-wrap {
	flex: 1 1 auto;
	max-width: 720px;
	display: flex;
	justify-content: center;
}

.search {
	position: relative;
	width: 100%;
}
.search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	opacity: 0.85;
	pointer-events: none;
}
.search-input {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 2px solid #b91c1c;
    background: transparent;
    color: #111827;
    padding: 0 14px 0 42px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-input::placeholder {
	color: #6b7280;
}
.search-input:focus {
	border-color: rgba(59, 130, 246, 0.6);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.banner-container {
    display: flex;
    gap: 20px;
    padding: 20px 40px 0 40px;
    width: 100%;
}
.banner {
    border: 2px solid red;
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
}
.banner-container:first-child .banner {
    height: 200px;
}
.large-banner {
    flex: 0 0 65%;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.small-banner {
flex: 0 0 35%;
    height: 200px;
}
.banner img, .banner-slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.banner-slide.active {
    opacity: 1;
}
@media (max-width: 768px) {
    .banner-slider {
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        min-height: 100px;
    }
}
.banner-container:nth-child(3) .banner {
    flex: 0 0 calc(50% - 10px);
    height: 150px;
}
@media (max-width: 768px) {
    .banner-container:nth-child(2) .banner:nth-child(2),
    .banner-container:nth-child(3) .banner:nth-child(2) {
        display: none;
    }
    .banner-container:nth-child(2) .banner:first-child,
    .banner-container:nth-child(3) .banner:first-child {
        flex: 0 0 100%;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        padding: 15px 20px 0 20px;
        gap: 15px;
    }
    .banner {
        height: 120px;
    }
    .large-banner, .small-banner {
        flex: 0 0 auto;
        width: 100%;
        height: 120px;
    }
    .banner-container:nth-child(3) .banner {
        flex: 0 0 100%;
        width: 100%;
        height: 120px;
    }
}
@media (max-width: 480px) {
    .banner {
        height: 100px;
    }
    .banner-container {
        padding: 10px 15px 0 15px;
        gap: 10px;
    }
    .large-banner, .small-banner {
        height: 100px;
    }
    .banner-container:nth-child(3) .banner {
        flex: 0 0 100%;
        width: 100%;
        height: 100px;
    }
}
.auth-buttons {
	flex: 0 0 auto;
	display: flex;
gap: 10px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transform: skewX(12deg);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn span, .btn {
    transform: skewX(-12deg);
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}
.btn-outline:hover {
    background: rgba(220, 38, 38, 0.1);
}
.btn-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #ffffff 100%);
    color: #1e3a8a;
    border: 1px solid rgba(59, 130, 246, 0.35);
}
.btn-gradient:hover {
    filter: brightness(1.05);
}
.game-navigation {
    display: flex;
    gap: 12px;
    padding: 20px 40px 0 40px;
    overflow-x: auto;
    scrollbar-width: none;
}
.game-navigation::-webkit-scrollbar {
    display: none;
}
@media (max-width: 768px) {
    .game-navigation {
        padding: 15px 20px 0 20px;
    }
}
@media (max-width: 768px) {
    .banner-slider {
        position: relative;
        overflow: hidden;
    }
    .banner-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
    }
    
    .banner-slide.active {
        opacity: 1;
    }
}
.game-category {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    cursor: pointer;
    transform: skewX(-15deg);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.game-category > * {
    transform: skewX(15deg);
}

.game-category:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.game-category.active {
    background: #ff0066;
    border-color: #ff0066;
    box-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
}

.game-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.game-category:hover::before {
    left: 100%;
}
.category-icon {
    font-size: 16px;
    display: flex;
}

.category-text {
    margin: 0;
    display: flex;
}
.sidebar {
    width: 240px;
    background: #1b000c;
    backdrop-filter: none;
    padding: 20px 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.content-area {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.sidebar-header {
	padding: 0 20px 20px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}
.logo {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	object-fit: cover;
}
.menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 20px;
}
.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 0, 102, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 102, 0.2);
    cursor: pointer;
}

.menu-item[href*="telegram"] {
    background: rgba(58, 169, 225, 0.1);
    border-color: rgba(58, 169, 225, 0.2);
}

.menu-item[href*="telegram"]:hover {
    background: rgba(58, 169, 225, 0.2);
    border-color: rgba(58, 169, 225, 0.4);
}

.menu-item[href*="telegram"].active {
    background: #3aa9e1;
    border-color: #3aa9e1;
}

.telegram-button {
    background: linear-gradient(135deg, #3b82f6 0%, #ffffff 100%);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #1e3a8a;
}

.telegram-button:hover {
    filter: brightness(1.05);
}

.telegram-button .menu-text {
    font-weight: 600;
}
.menu-item.active {
    background: #ff0066;
    border-color: #ff0066;
    color: #ffffff;
}
.menu-item:hover {
	background: rgba(255, 0, 102, 0.2);
	border-color: rgba(255, 0, 102, 0.4);
	transform: translateX(2px);
}
.menu-icon {
	font-size: 16px;
	margin-right: 12px;
	width: 20px;
	text-align: center;
}

.menu-text {
	flex: 1;
}

.main-content {
	flex: 1;
	padding: 20px 40px 40px 40px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.card {
	max-width: 620px;
width: 100%;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
}

h1 {
	font-size: 24px;
	margin-bottom: 16px;
	color: #1f2937;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 12px;
	margin-top: 0;
	line-height: 1.6;
}
.card p:last-child {
	margin-bottom: 0;
}
.games-section {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
}
.section-title {
    font-size: 24px;
    color: white;
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    font-size: 28px;
    display: inline-flex;
}
.view-all-link {
    color: #dc2626;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.view-all-link:hover {
    opacity: 0.8;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
.game-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.game-image {
        width: 100%;
        height: 140px;
        object-fit: cover;
        display: block;
    }
    
    .game-info {
        padding: 12px;
    }
    
    .game-title {
        font-size: 14px;
        font-weight: 600;
        color: white;
        margin: 0 0 6px 0;
        line-height: 1.3;
    }
    
    .game-stats {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 11px;
    }
    
    .provider {
        color: #d1d5db;
        font-weight: 500;
    }
    
    .rtp {
        background: rgba(220, 38, 38, 0.3);
        color: #fca5a5;
        padding: 2px 6px;
        border-radius: 20px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
    }
    
    .game-image {
        height: 120px;
    }
    
    .game-title {
        font-size: 13px;
    }
    
    .game-stats {
        font-size: 10px;
    }
}
.game-card {
    background: rgba(27, 0, 12, 0.7);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 16px;
}
.game-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.game-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.provider {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.rtp {
    background: rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}
.jackpots-section {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px 20px 20px;
    margin: 0 auto;
}
.main-jackpot {
    background-image: url('https://kent-wordpress-prod.s3.amazonaws.com/uploads/2025/10/mobile-bg.png');
    background-repeat: repeat-y;
    background-size: cover;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
}
.jackpot-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.jackpot-card {
    background: rgba(27, 0, 12, 0.7);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.jackpot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
    .jackpot-card-image {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
    }

    .jackpot-card-info {
        padding: 12px;
    }

    .jackpot-card-title {
        font-size: 14px;
        font-weight: 600;
        color: white;
        margin: 0 0 6px 0;
        line-height: 1.3;
    }

    .jackpot-card-stats {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 11px;
    }
    .banner-slider {
        min-height: 120px;
    }
@media (max-width: 768px) {
    .jackpot-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .jackpot-cards-grid {
        grid-template-columns: 1fr;
    }
}
.jackpot-amount {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.jackpot-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.jackpot-actions .btn {
    min-width: 140px;
}
.jackpot-games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.jackpot-game-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}
.jackpot-game-card:hover {
transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.jackpot-game-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.jackpot-amount-small {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}
.jackpot-game-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    line-height: 1.3;
}
.jackpot-provider {
    font-size: 11px;
    color: #d1d5db;
    margin-bottom: 15px;
}

.jackpot-game-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jackpot-game-actions .btn {
    width: 100%;
    font-size: 11px;
    height: 30px;
    padding: 0 8px;
}
.view-all-jackpots {
    text-align: center;
    padding: 20px 0;
}
@media (max-width: 768px) {
    .jackpot-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .jackpot-game-image {
        height: 100px;
    }
    
    .jackpot-amount-small {
        font-size: 16px;
    }
    
    .jackpot-game-title {
        font-size: 14px;
    }
	.layout {
		flex-direction: column;
	}
	
	.sidebar {
		display: none;
	}
	
	.search-wrap {
		display: none;
	}
	
	.site-header-inner {
		padding: 10px 14px;
		gap: 12px;
	}
	
	.site-logo {
		height: 36px;
	}
	
	.search-input {
		height: 40px;
	}
	
	.auth-buttons .btn {
		height: 36px;
		padding: 0 14px;
		font-size: 13px;
	}
	
	.main-content {
		padding: 20px;
	}
	
	.card {
		padding: 20px;
	}
}

@media (max-width: 480px) {
.jackpot-games-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .jackpot-game-image {
        height: 120px;
    }
    
    .main-jackpot {
        padding: 20px;
    }
    
    .jackpot-amount {
        font-size: 32px;
    }
    
    .jackpot-title {
        font-size: 18px;
    }
    
    .jackpot-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .jackpot-actions .btn {
        min-width: auto;
    }
}