/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
	text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
	overflow-x: hidden;
}

/* Ticker */
.ticker-container {
    background: rgba(26, 26, 46, 0.95);
    color: #ffffff;
    padding: 10px 20px;
    overflow: hidden;
    width: 100%;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ticker-wrapper {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.currency-info {
    display: flex;
    gap: 20px;
}

.currency-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.currency-info span i {
    color: #ffd700;
}

.ticker-links {
    display: flex;
    gap: 30px;
}

.ticker-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
		color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 12px;
    border-radius: 6px;
}

.ticker-links a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ticker-links a i {
    color: #ffd700;
}

.ticker-winners {
    max-width: 40%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ticker-winners span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 107, 0.15));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 2px solid #ffd700;
    animation: pulse 2s infinite;
    transition: opacity 0.5s ease;
}

.winner-update {
    opacity: 1;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.ticker-winners i {
    color: #ffd700;
    font-size: 16px;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    position: relative;
    z-index: 999;
}

.header-container {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 1800px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    box-shadow: 0 0 8px #ffd700;
}

.desktop-provider-logos, .mobile-provider-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mobile-provider-logos {
    display: none;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    justify-content: center;
    width: 100%;
}

.provider-logo {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.provider-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.provider-logo img {
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-outline {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:hover {
    color: #1a1a2e;
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::after {
    height: 100%;
}

.btn-hero {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.6);
}

/* Main Container */
.main-container {
    display: flex;
    max-width: 1800px;
    margin: 0 auto;
    gap: 20px;
    padding: 20px;
    min-height: calc(100vh - 180px - 350px); /* Account for header and footer */
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    overflow-y: auto;
    position: sticky;
    top: 20px;
		z-index: 100;
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-height: calc(100vh - 40px);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.5) rgba(26, 26, 46, 0.8);
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.7);
}

.search-container {
    position: relative;
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
}

.categories {
    margin-bottom: 30px;
}

.categories-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffd700;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
		color: #ffffff;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.category-item:hover,
.category-item.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.category-item i {
    color: #ffd700;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.category-item span:first-of-type {
    flex: 1;
    font-weight: 500;
}

.count {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 100%;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(175deg, rgba(26, 26, 46, 0.9) 0%, rgba(46, 46, 86, 0.7) 100%);
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: headerGlow 6s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% {
        opacity: 0.4;
        transform: translate(5%, 5%);
    }
    100% {
        opacity: 0.8;
        transform: translate(-5%, -5%);
    }
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    font-weight: 700;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 15px auto 0;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    height: 450px;
    padding: 0;
    background: #1a1a2e;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    display: block;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 26, 46, 0.5) 0%, rgba(26, 26, 46, 0.3) 50%, rgba(26, 26, 46, 0.1) 100%);
}

.hero-slide.welcome-bonus {
    background-image: url('images/3.avif');
}

.hero-slide.welcome-poker {
    background-image: url('images/1.avif');
}

.hero-slide.welcome-lamborghini {
    background-image: url('images/lambo.png');
}

.hero-content {
    z-index: 2;
    position: relative;
    padding: 50px;
    max-width: 60%;
}

.welcome-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 3;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffd700;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.slider-arrow {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-arrow:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero {
        height: 500px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .slider-controls {
        margin-top: 15px;
    }
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(26, 26, 46, 0.6);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature i {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Games Section */
.games-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 26px;
    margin-bottom: 30px;
    color: #ffd700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, transparent);
    border-radius: 3px;
}

.section-title i {
    color: #ffd700;
    font-size: 24px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.games-grid.large {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.game-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.loved-games, .vip-section, .redeem-section, .security-section {
	margin: 2rem 0;
}

.perks-section {
	margin: 2rem 0;
}

.live-game-image {
	border-radius: 10px;
	width: 100%;
	height: 180px;
	background: linear-gradient(45deg, #ffd700, #ffed4e, #ff6b6b);
	object-fit: cover;
}

.game-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff6b6b);
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.game-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-size: 14px;
}

.provider {
    font-size: 12px;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.btn-play,
.btn-live,
.btn-sport {
    width: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
		margin-top: 10px;
}

.btn-play:hover,
.btn-live:hover,
.btn-sport:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Live Casino */
.live-casino {
    margin-bottom: 50px;
}

.live-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.live-game {
    background: rgba(26, 26, 46, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.live-game:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
}

.live-game h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffd700;
}

.live-game p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial {
    background: rgba(26, 26, 46, 0.6);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 60px;
    color: #ffd700;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial p {
    margin-bottom: 15px;
    font-style: italic;
    padding-left: 20px;
}

.testimonial span {
    color: #ffd700;
    font-weight: 600;
    padding-left: 20px;
}

/* Fixed Action Buttons */
.fixed-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 500;
}

.btn-fixed {
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    min-width: 140px;
}

.btn-secondary {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* Stories Specific Styles */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.story-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.story-header h3 {
    color: #ffd700;
    font-size: 18px;
}

.win-amount {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 12px;
}

.story-meta .game {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.story-meta .location {
    color: rgba(255, 255, 255, 0.6);
}

/* Loved Games */
.loved-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.loved-game {
    background: rgba(26, 26, 46, 0.6);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.loved-game img {
    width: 100%;
		border-radius: 10px;
    object-fit: cover;
}

.loved-game:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
}

.loved-game h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Winner Actions */
.winner-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.action-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.action-card i {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 15px;
}

.action-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.action-card .btn-primary {
	margin-top: 10px;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison-table th {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 600;
}

.comparison-table th.winner {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.comparison-table td.winner {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 600;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.advantage-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
}

.advantage-card i {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 15px;
}

/* Perks */
.perks-list {
    display: grid;
    gap: 15px;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(26, 26, 46, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.perk-item:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.perk-item i {
    font-size: 24px;
    color: #ffd700;
    margin-top: 5px;
}

.perk-item h3 {
    margin-bottom: 5px;
    color: #ffffff;
}

.perk-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.review-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer strong {
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
}

.rating {
    color: #ffd700;
}

.review-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: auto;
    grid-auto-flow: row dense;
}

.pro-tips {
	margin-top: 2rem;
}

.payment-card {
    background: linear-gradient(160deg, rgba(26, 26, 46, 0.95) 0%, rgba(20, 20, 35, 0.95) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* New payment card for Visa/Mastercard - style for 5th card */
.payment-card:nth-child(5) {
    grid-area: auto;
}

.payment-card.featured {
    border-color: #ffd700;
    background: linear-gradient(160deg, rgba(35, 35, 60, 0.95) 0%, rgba(25, 25, 45, 0.95) 100%);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.payment-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.payment-card:hover {
    transform: translateY(-8px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.payment-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.25);
}

.payment-card h3 {
    font-size: 22px;
    margin: 10px 0;
    color: #ffd700;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.payment-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.payment-icon {
    margin-bottom: 10px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-icon i {
    font-size: 48px;
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
    font-size: 14px;
    flex-grow: 1;
}

.payment-features span {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-payment {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tip-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
}

.tip-card i {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 10px;
}

/* Security */
.security-features {
    display: grid;
    gap: 15px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(26, 26, 46, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.security-item i {
    font-size: 24px;
    color: #ffd700;
    margin-top: 5px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.faq-item {
    background: rgba(26, 26, 46, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ffd700;
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Bonuses Specific */
.welcome-bonus {
    margin-bottom: 50px;
}

.bonus-hero {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid #ffd700;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.bonus-hero::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%);
    animation: heroGlow 3s ease-in-out infinite alternate;
}

.bonus-content {
    flex: 1;
    z-index: 1;
}

.bonus-content h3 {
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 15px;
}

.bonus-content ul {
    list-style: none;
    margin: 20px 0;
}

.bonus-content li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 20px;
}

.bonus-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.bonus-visual {
    text-align: center;
    z-index: 1;
}

.bonus-amount {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.bonus-subtitle {
    color: #ffd700;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

/* Deals */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.deal-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.deal-card.special {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.deal-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.deal-badge {
    background: #ffd700;
    color: #1a1a2e;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.deal-amount {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 10px;
}

.btn-deal {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-deal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* VIP */
.vip-benefits {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.vip-benefit {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(26, 26, 46, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.vip-benefit:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.vip-benefit i {
    font-size: 24px;
    color: #ffd700;
    margin-top: 5px;
}

.btn-vip {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Holiday */
.holiday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.holiday-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.holiday-card:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
}

.holiday-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 18px;
}

.holiday-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.holiday-features span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Steps */
.redeem-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(26, 26, 46, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
}

.step-number {
    background: #ffd700;
    color: #1a1a2e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffd700;
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Promos */
.promo-list {
    display: grid;
    gap: 15px;
}

.promo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(26, 26, 46, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.promo-item:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.promo-info h3 {
    color: #ffd700;
    margin-bottom: 5px;
}

.promo-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-size: 14px;
}

.promo-code {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.btn-promo {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Sports Betting */
.sportsbook {
    margin-bottom: 50px;
}

.sports-betting {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sport-item {
    background: rgba(26, 26, 46, 0.6);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.sport-item:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
}

.sport-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.sport-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 50px;
}

.sport-item i {
	color: #4CAF50;
	margin-bottom: 10px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
		z-index: 1002;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.95);
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffd700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffd700;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd700;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffd700;
    padding-left: 20px;
}

.payment-methods {
    display: flex;
		flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.security-badges {
    display: flex;
    gap: 15px;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.security-badges i {
    color: #ffd700;
}

/* Media Queries for Responsive Design */
@media (max-width: 1250px) {
    .main-container {
        flex-direction: column;
        min-height: auto;
    }

		.payment-grid {
			grid-template-columns: repeat(3,1fr);
	}
    
    .sidebar {
        width: 100%;
        max-width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
        max-height: none;
        height: auto;
    }
    
    .main-content {
        width: 100%;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .desktop-provider-logos {
        display: none;
    }
		.bonus-hero {
			flex-direction: column;
		}
    
    .mobile-menu-toggle {
        display: flex;
				justify-content: center;
				align-items: center;
    }
    
    .main-nav {
        position: fixed;
        top: -10px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 30px;
        transition: all 0.3s ease;
        z-index: 998;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .mobile-provider-logos {
        display: flex;
    }
    
    .nav-link {
        font-size: 18px;
        margin: 10px 0;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .ticker-container {
        display: none;
    }
    
    .ticker-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .currency-info, .ticker-links {
        display: none;
    }
    
    .ticker-winners {
        width: 100%;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-image {
        height: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features {
        grid-template-columns: 1fr 1fr;
    }
    
    .provider-logos {
        justify-content: center;
    }
    
    /* Ensure auth buttons always visible */
    .auth-buttons {
        display: flex;
        gap: 8px;
    }
    
    .fixed-actions {
        bottom: 20px;
    }
    
    .btn-fixed {
        font-size: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Payment grid responsive */
    .payment-grid {
        grid-template-columns: repeat(2,1fr);
    }
    
    .payment-card {
        height: auto;
        min-height: 300px;
    }
    
    .payment-card.featured::before {
        top: -10px;
        right: 10px;
        font-size: 10px;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ticker-container {
        padding: 8px;
    }
    
    .currency-info {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .currency-info span {
        font-size: 11px;
        margin-right: 0;
    }
    
    .ticker-links {
        display: none;
    }
    
    .ticker-links a {
        font-size: 11px;
    }
    
    .ticker-winners {
        width: 100%;
    }
    
    .ticker-winners span {
        font-size: 11px;
    }
    
    .main-container {
        padding-top: 15px;
    }
    
    .sidebar {
        display: none;
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .main-nav {
        padding: 20px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .provider-logos {
        gap: 5px;
    }
    
    .provider-logo img {
        height: 20px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .auth-buttons .btn {
        min-width: auto;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    /* Payment grid responsive */
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-card {
        min-height: 280px;
    }
    
    .payment-methods .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .payment-methods .section-title::after {
        width: 100px;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .category-item,
    .game-card,
    .feature {
        border-width: 2px;
    }
    
    .nav-link.active::after {
        height: 4px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .ticker-content {
        animation: none;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.search-input:focus,
.category-item:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Specific styling for the payment methods section */
.payment-methods .section-title {
    font-size: 28px;
    margin-bottom: 35px;
    text-align: center;
    justify-content: center;
}

.payment-methods .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}