/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 50%, #2a2a5a 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Running Line/Ticker */
.running-line {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: #fff;
    padding: 0.5rem 0;
    z-index: 999;
    overflow: hidden;
    border-bottom: 2px solid #ffd700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 60s linear infinite;
    align-items: center;
    gap: 3rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    min-width: max-content;
}

.ticker-item i {
    color: #ffd700;
    font-size: 1rem;
}

.ticker-item.winner {
    background: rgba(255, 215, 0, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    border: 1px solid #ffd700;
}

.ticker-item.exchange {
    background: rgba(0, 255, 136, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    border: 1px solid #00ff88;
}

.ticker-item.exchange i {
    color: #00ff88;
}

.winner-amount {
    color: #ffd700;
    font-weight: 700;
}

.exchange-rate {
    color: #00ff88;
    font-weight: 700;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Adjust hero sections for running line */
.hero,
.games-hero,
.winners-hero,
.comparison-hero,
.payments-hero,
.promotions-hero {
    padding-top: 120px;
}

a {
	text-decoration: none;
	color: #fff;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 50px;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 58, 0.95) 0%, rgba(42, 42, 90, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
    z-index: 1000;
    padding: 0.5rem 0;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: auto;
    height: 40px;
}

.nav-logo span {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: #0a0a23;
    transform: translateY(-2px);
}

.nav-link i {
    margin-right: 0.5rem;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-register, .btn-download {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-register {
    background: linear-gradient(45deg, #00ff88, #00cc70);
    color: #0a0a23;
}

.btn-download {
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: #0a0a23;
}

.btn-register:hover, .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
}

.language-selector img {
    width: 20px;
    height: 15px;
    border-radius: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
		height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 25%, #2a2a5a 50%, #3a3a7a 75%, #4a4a9a 100%);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 215, 0, 0.3);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) { top: 20%; left: 10%; animation-delay: -0.5s; }
.floating-icons i:nth-child(2) { top: 40%; left: 80%; animation-delay: -1s; }
.floating-icons i:nth-child(3) { top: 60%; left: 20%; animation-delay: -1.5s; }
.floating-icons i:nth-child(4) { top: 80%; left: 70%; animation-delay: -2s; }
.floating-icons i:nth-child(5) { top: 30%; left: 50%; animation-delay: -2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00, #ff0080, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 107, 0, 0.8); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffeb3b;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.2);
}

.feature-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 150px;
}

.cta-button.primary {
	display: block;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
    color: #0a0a23;
}

.cta-button.secondary {
    background: linear-gradient(45deg, #8000ff, #ff0080);
    color: #fff;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Game Categories */
.game-categories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
    position: relative;
    z-index: 2;
}

.category-card img {
    width: 60px;
    height: 60px;
    margin: 0.5rem 0;
    border-radius: 10px;
    opacity: 0.8;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* Featured Game Section */
.featured-game {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
    border: 3px solid #ffd700;
    margin: 2rem 0;
    border-radius: 20px;
}

.featured-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.featured-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.rating {
    margin: 1rem 0;
}

.rating i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.featured-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.featured-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.featured-logo {
    text-align: center;
}

.featured-logo img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    border: 3px solid #ffd700;
}

/* Spotlight Games */
.spotlight-games {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-category {
    margin-bottom: 3rem;
}

.games-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffeb3b;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
}

.game-info {
    padding: 1rem;
}

.game-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.game-info p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #ffeb3b;
}

.author {
    font-weight: 600;
    color: #ffd700;
}

/* Security Banner */
.security-banner {
    padding: 2rem 0;
    background: linear-gradient(45deg, #00ff88, #00cc70);
    margin: 2rem 0;
}

.security-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a0a23;
}

.security-content i {
    font-size: 1.5rem;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
    color: #0a0a23;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
}

.floating-btn i {
    margin-right: 0.5rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* Games Page Styles */
.games-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.games-hero-content {
    text-align: center;
		position: relative;
    z-index: 2;
}

.games-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffeb3b;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 0.5rem;
}

.game-nav {
    background: rgba(26, 26, 58, 0.9);
    padding: 1rem 0;
    position: relative;
    top: 0px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.game-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-btn:hover, .nav-btn.active {
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: #0a0a23;
    border-color: #ffd700;
    transform: translateY(-2px);
}

.game-section {
    padding: 4rem 0;
    display: none;
}

.game-section.active {
    display: block;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.game-card.premium {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 0, 0.1) 100%);
}

.game-card.jackpot {
    border: 2px solid #ff0080;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.2) 0%, rgba(128, 0, 255, 0.1) 100%);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
    color: #0a0a23;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.game-info p {
    color: #ccc;
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.rtp, .volatility, .jackpot {
    background: rgba(255, 215, 0, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700;
}

.jackpot {
    background: rgba(255, 0, 128, 0.2);
    color: #ff0080;
    font-weight: 700;
    animation: jackpotPulse 2s infinite;
}

@keyframes jackpotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.play-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
    border: none;
    border-radius: 10px;
    color: #0a0a23;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.5);
}

/* Live Casino Styles */
.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.live-game-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.live-game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.live-game-card.featured {
    border: 2px solid #00ff88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 204, 112, 0.1) 100%);
}

.live-game-card.bengali {
    border: 2px solid #ff6b00;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.live-game-card.gameshow {
    border: 2px solid #8000ff;
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.2) 0%, rgba(255, 0, 128, 0.1) 100%);
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0040;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.live-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 2rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-game-card:hover .live-overlay {
    opacity: 1;
}

.dealer-info, .player-count {
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.dealer-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffd700;
}

.betting-limits {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.betting-limits span {
    background: rgba(255, 215, 0, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #ffd700;
}

/* Quick Actions */
.quick-actions {
    padding: 3rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
}

.action-btn.mystery {
    background: linear-gradient(45deg, #8000ff, #ff0080);
    color: #fff;
}

.action-btn.royal {
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: #0a0a23;
}

.action-btn.bengali {
    background: linear-gradient(45deg, #00ff88, #00cc70);
    color: #0a0a23;
}

.action-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

/* Game Features */
.game-features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Blog/Winners Page Styles */
.winners-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 50%, #3a3a7a 100%);
}

.winners-hero-content {
    text-align: center;
		position: relative;
    z-index: 2;
}

.winners-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mega-win {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 1rem;
    animation: megaWinGlow 2s ease-in-out infinite alternate;
}

@keyframes megaWinGlow {
    from { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
    to { text-shadow: 0 0 30px rgba(0, 255, 136, 0.8); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.winner-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.player-testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.testimonial-card.mega-win::before {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 0, 0.05));
}

.testimonial-card.crazy-win::before {
    background: linear-gradient(45deg, rgba(128, 0, 255, 0.1), rgba(255, 0, 128, 0.05));
}

.testimonial-card.live-win::before {
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 112, 0.05));
}

.testimonial-card.jackpot-win::before {
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.1), rgba(128, 0, 255, 0.05));
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.player-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a23;
}

.player-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.location {
    color: #ccc;
    font-size: 0.9rem;
}

.location i {
    margin-right: 0.3rem;
}

.win-amount {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff88, #00cc70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #ffeb3b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.game-played {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.game-played img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
}

.game-played span {
    font-weight: 600;
    color: #fff;
}

.win-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.win-details span {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.multiplier, .jackpot {
    background: rgba(255, 0, 128, 0.2);
    color: #ff0080;
    animation: winPulse 2s infinite;
}

@keyframes winPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Trending Games */
.trending-games {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trending-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.trending-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.trending-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
}

.trending-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
}

.trending-info {
    padding: 1.5rem;
}

.trending-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.trending-info p {
    color: #ccc;
    margin-bottom: 1rem;
}

.trending-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.players, .win-rate {
    background: rgba(255, 215, 0, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 600;
}

.trend-play-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
    border: none;
    border-radius: 15px;
    color: #0a0a23;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trend-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.5);
}

/* Tournament Zone */
.tournament-zone {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tournament-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.tournament-card.slot-wars::before {
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.tournament-card.roulette-masters::before {
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 112, 0.05));
}

.tournament-card.poker-royale::before {
    background: linear-gradient(45deg, rgba(128, 0, 255, 0.1), rgba(255, 0, 128, 0.05));
}

.tournament-card:hover::before {
    opacity: 1;
}

.tournament-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.tournament-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff0040;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    animation: livePulse 2s infinite;
}

.tournament-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tournament-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.prize-pool {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff88, #00cc70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tournament-details {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tournament-details p {
    color: #ccc;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tournament-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tournament-stats .stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
}

.stat .label {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.stat .value {
    display: block;
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
}

.tournament-btn {
		display: block;
		margin: 0 auto;
    width: fit-content;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.slot-wars .tournament-btn {
    background: linear-gradient(45deg, #ff6b00, #ffd700);
    color: #0a0a23;
}

.roulette-masters .tournament-btn {
    background: linear-gradient(45deg, #00ff88, #00cc70);
    color: #0a0a23;
}

.poker-royale .tournament-btn {
    background: linear-gradient(45deg, #8000ff, #ff0080);
    color: #fff;
}

.tournament-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.tournament-btn i {
    margin-right: 0.5rem;
}

/* Submit Story Section */
.submit-story {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.submit-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.submit-info {
    flex: 1;
}

.submit-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.submit-info p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.story-benefits {
    list-style: none;
    padding: 0;
}

.story-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.story-benefits i {
    color: #00ff88;
    font-size: 1.2rem;
}

.submit-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 300px;
}

.submit-btn {
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.submit-btn.primary {
    background: linear-gradient(45deg, #00ff88, #00cc70);
    color: #0a0a23;
}

.submit-btn.secondary {
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: #0a0a23;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4);
}

/* Forum/Comparison Page Styles */
.comparison-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 50%, #3a3a7a 100%);
}

.comparison-hero-content {
    text-align: center;
		position: relative;
    z-index: 2;
}

.comparison-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: #0a0a23;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.comparison-table-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table thead th {
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
    font-weight: 700;
    color: #fff;
}

.casino-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.casino-header img {
    width: auto;
    height: 40px;
}

.winner-col {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 0, 0.1) 100%);
    border: 2px solid #ffd700;
}

.winner-cell {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 0, 0.1) 100%);
    position: relative;
}

.winner-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffd700;
    color: #0a0a23;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.value.best {
    color: #ffd700;
    font-weight: 700;
}

.value.no {
    color: #ff4444;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #fff;
}

.why-a71-wins {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.winning-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.reason-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.reason-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.reason-content p {
    color: #ccc;
    margin-bottom: 1rem;
}

.highlight {
    color: #00ff88;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reason-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
}

.player-reviews {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-details h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #ffd700;
}

.review-content p {
    color: #ffeb3b;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #ccc;
}

.verified {
    color: #00ff88;
}

.mobile-app {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.app-info {
    flex: 1;
}

.app-info p {
    font-size: 1.2rem;
		line-height: 1.5;
}

.app-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-features {
    margin: 2rem 0;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.app-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
		color: #ff6b00;
}

.app-feature i {
    font-size: 1.5rem;
    color: #ffd700;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.download-btn.android {
    background: linear-gradient(45deg, #00ff88, #00cc70);
    color: #0a0a23;
}

.download-btn.ios {
    background: linear-gradient(45deg, #333, #555);
    color: #fff;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.app-preview {
    flex: 1;
    text-align: center;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    background: linear-gradient(45deg, #1a1a3a, #2a2a5a);
    border: 3px solid #ffd700;
}

.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.cta-stat {
    text-align: center;
}

.cta-stat .number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    display: block;
}

.cta-stat .label {
    color: #ccc;
    margin-top: 0.5rem;
}

.final-cta-btn {
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    border: none;
    border-radius: 30px;
    color: #0a0a23;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
}

/* Payments Page Styles */
.payments-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 50%, #3a3a7a 100%);
}

.payments-hero-content {
    text-align: center;
    z-index: 2;
		position: relative;
}

.payments-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payments-subtitle {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 2rem;
    font-weight: 700;
}

.payment-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.highlight-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.payment-methods {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.method-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.method-card img {
    width: auto;
    height: 80px;
    margin: 0.5rem 0;
    border-radius: 10px;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
}

.method-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature {
    background: rgba(255, 215, 0, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    color: #ffd700;
    font-size: 0.9rem;
}

.method-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ff0040;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pro-tips {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.tip-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.tip-highlight {
    color: #00ff88;
    font-weight: 700;
    margin-top: 1rem;
}

.security-features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.security-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.transaction-limits {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.limits-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.limits-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.limits-row.header {
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
    font-weight: 700;
    color: #ffd700;
}

.limits-col.method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.limits-col.instant {
    color: #00ff88;
    font-weight: 700;
}

.payment-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: #0a0a23;
}

.process-tab {
    display: none;
}

.process-tab.active {
    display: block;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
}

.step-number {
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: #0a0a23;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.payment-faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h4 {
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    padding: 1.5rem;
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

/* Promotions Page Styles */
.promotions-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 50%, #3a3a7a 100%);
}

.promotions-hero-content {
    text-align: center;
    z-index: 2;
		position: relative;
}

.promotions-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promotions-subtitle {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mega-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bonus-amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bonus-details span {
    color: #ffeb3b;
    font-size: 1.2rem;
    font-weight: 600;
}

.new-player-package {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.package-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30px;
    padding: 3rem;
    border: 3px solid #ffd700;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-header h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-offer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.offer-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.offer-item.main {
    border: 2px solid #ffd700;
}

.offer-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-right: 1rem;
}

.offer-details h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.offer-example {
    color: #00ff88;
    font-weight: 700;
    margin-top: 0.5rem;
}

.offer-note {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.package-terms {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.package-terms h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.package-terms ul {
    list-style: none;
    padding: 0;
}

.package-terms li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.package-terms li::before {
    content: '✓';
    color: #00ff88;
    position: absolute;
    left: 0;
}

.package-claim-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    border: none;
    border-radius: 25px;
    color: #0a0a23;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-claim-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
}

.ongoing-promotions {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0040;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
}

.promo-content {
    padding: 2rem;
}

.promo-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.promo-offer {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.promo-details {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.promo-day, .promo-code, .promo-auto, .promo-type {
    background: rgba(255, 215, 0, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    color: #ffd700;
    font-size: 0.9rem;
}

.promo-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
    border: none;
    border-radius: 15px;
    color: #0a0a23;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.5);
}

.vip-rewards {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.vip-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-benefits {
    margin-top: 2rem;
}

.vip-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #ffd700;
    margin-right: 1rem;
}

.benefit-content h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.vip-tiers {
    display: grid;
    gap: 2rem;
}

.vip-tier {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.vip-tier:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.vip-tier.bronze {
    border-color: #cd7f32;
}

.vip-tier.silver {
    border-color: #c0c0c0;
}

.vip-tier.gold {
    border-color: #ffd700;
}

.tier-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.vip-tier h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.tier-requirement {
    color: #ccc;
    margin-bottom: 1rem;
}

.tier-benefits {
    list-style: none;
    padding: 0;
}

.tier-benefits li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tier-benefits li::before {
    content: '✓';
    color: #00ff88;
    position: absolute;
    left: 0;
}

.loyalty-program {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.loyalty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.loyalty-explanation h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.points-rate {
    margin-top: 2rem;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.rate-item i {
    color: #ffd700;
}

.loyalty-rewards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.reward-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.reward-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.reward-item.exclusive {
    border: 2px solid #ffd700;
    grid-column: 1 / -1;
}

.reward-cost {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.reward-name {
    color: #fff;
    font-weight: 600;
}

.tournament-bonuses {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tournament-bonus {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tournament-bonus:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.tournament-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.tournament-bonus h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.tournament-prize {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 1rem;
}

.tournament-join-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    border: none;
    border-radius: 25px;
    color: #0a0a23;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.tournament-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.5);
}

.bonus-calendar {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a5a 0%, #3a3a7a 100%);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.calendar-day {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2rem 1rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calendar-day:hover,
.calendar-day.active {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.day-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.day-bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.day-bonus i {
    font-size: 2rem;
    color: #ffd700;
}

.day-bonus span {
    color: #ccc;
    font-size: 0.9rem;
}

.bonus-amount {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Responsive Typography */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    h5 {
        font-size: 1.1rem;
    }
    
    h6 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
		.app-content {
			flex-direction: column;
		}
    .vip-content,
    .loyalty-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .limits-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

		.language-selector {
			display: none;
		}
    
    .limits-row.header {
        display: none;
    }
    
    .limits-col::before {
        content: attr(data-label) ': ';
        font-weight: bold;
        color: #ffd700;
    }
    
    .mega-bonus {
        flex-direction: column;
        gap: 1rem;
    }
		.nav-logo img {
			width: 100px;
		}
		.submit-content {
			flex-direction: column;
		}
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .hero,
    .games-hero,
    .winners-hero,
    .comparison-hero,
    .payments-hero,
    .promotions-hero {
        min-height: 60vh;
        padding: 70px 0.5rem 1rem;
    }

    .hero-title,
    .games-hero-title,
    .winners-hero-title,
    .comparison-hero-title,
    .payments-hero-title,
    .promotions-hero-title {
        font-size: 1.5rem !important;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle,
    .games-hero-subtitle,
    .winners-hero-subtitle,
    .comparison-hero-subtitle,
    .payments-hero-subtitle,
    .promotions-hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-description,
    .games-hero-description,
    .winners-hero-description,
    .comparison-hero-description,
    .payments-hero-description,
    .promotions-hero-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-stat {
        padding: 0.8rem;
    }

    .hero-stat-number {
        font-size: 1.2rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .cta-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .floating-icons i {
        font-size: 0.8rem;
        opacity: 0.2;
    }

    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.8rem !important;
    }

    h1 { font-size: 1.5rem !important; }
    h2 { font-size: 1.3rem !important; }
    h3 { font-size: 1.1rem !important; }
    h4 { font-size: 1rem !important; }
    h5 { font-size: 0.9rem !important; }
    h6 { font-size: 0.8rem !important; }
}

@media (max-width: 768px) {
    /* Mobile Hero Sections */
    .hero,
    .games-hero,
    .winners-hero,
    .comparison-hero,
    .payments-hero,
    .promotions-hero {
        min-height: 70vh;
        padding: 80px 1rem 2rem;
    }

    .hero-content,
    .games-hero-content,
    .winners-hero-content,
    .comparison-hero-content,
    .payments-hero-content,
    .promotions-hero-content {
        padding: 1rem;
    }

    .hero-title,
    .games-hero-title,
    .winners-hero-title,
    .comparison-hero-title,
    .payments-hero-title,
    .promotions-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle,
    .games-hero-subtitle,
    .winners-hero-subtitle,
    .comparison-hero-subtitle,
    .payments-hero-subtitle,
    .promotions-hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .hero-description,
    .games-hero-description,
    .winners-hero-description,
    .comparison-hero-description,
    .payments-hero-description,
    .promotions-hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-stats, .winner-stats {
        gap: 1rem;
				flex-direction: column;
        margin: 1.5rem 0;
    }

    .hero-stat {
        padding: 1rem;
        margin: 0;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons,
    .games-hero-buttons,
    .winners-hero-buttons,
    .comparison-hero-buttons,
    .payments-hero-buttons,
    .promotions-hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin: 0;
    }

    .floating-icons i {
        font-size: 1rem;
        opacity: 0.3;
    }
	
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(26, 26, 58, 0.98) 0%, rgba(42, 42, 90, 0.98) 100%);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 20px 20px;
        padding: 2rem 0;
        z-index: 998;
        border-top: 2px solid #ffd700;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
    }

    .nav-menu li {
        margin: 0.8rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 25px;
        margin: 0 2rem;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(45deg, #ffd700, #ff6b00);
        color: #0a0a23;
        transform: translateX(10px);
    }
    
    .hamburger {
        display: flex;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        background: rgba(255, 215, 0, 0.2);
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 3px 0;
        background: #ffd700;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #ff6b00;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: #ff6b00;
    }

    .btn-register, 
    .btn-download {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 0.5rem;
    }

    /* Mobile Content Improvements */
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 2rem 0;
    }

		.final-cta-btn, .package-claim-btn {
			padding: 1rem;
			font-size: 1rem;
		}

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .game-card {
        padding: 1rem;
    }
		.stat-number{
			font-size: 1.5rem;
		}

    .game-card h3 {
        font-size: 1rem;
    }

    .game-card p {
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-card .quote {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .tournament-card {
        padding: 1.5rem 1rem;
    }

    .comparison-table {
        overflow-x: auto;
        font-size: 0.8rem;
    }

    .method-card {
        padding: 1rem;
    }

    .promo-card {
        padding: 1rem;
    }

    .floating-btn {
        bottom: 1rem;
        right: 1rem;
        width: 60px;
        height: 60px;
    }

    .floating-btn span {
        display: none;
    }

    /* Mobile Running Line */
    .running-line {
        padding: 0.3rem 0;
        top: 0;
    }

    .ticker-content {
        font-size: 0.8rem;
        gap: 2rem;
    }

    .ticker-item {
        font-size: 0.8rem;
    }

    .ticker-item.winner,
    .ticker-item.exchange {
        padding: 0.2rem 0.8rem;
        border-radius: 15px;
    }

    /* Mobile Navigation Adjustment */
    .navbar {
        top: 30px;
        padding: 0.5rem 0;
    }

    .nav-logo img {
        width: 80px;
        height: auto;
    }

    /* Adjust hero sections for mobile running line */
    .hero,
    .games-hero,
    .winners-hero,
    .comparison-hero,
    .payments-hero,
    .promotions-hero {
        padding-top: 90px;
    }

    /* Mobile Forms and Inputs */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.8rem;
    }



    /* Mobile Grids */
    .methods-grid,
    .promos-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trending-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tournaments-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Mobile specific improvements */
    .app-preview {
        margin: 2rem 0;
    }

    .phone-mockup img {
        max-width: 200px;
        height: auto;
    }

    .submit-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .why-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .vip-tier {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .bonus-calendar {
        overflow-x: auto;
    }

    .calendar-day {
        min-width: 80px;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Additional improvements for very small screens */
@media (max-width: 380px) {
    .hero-title,
    .games-hero-title,
    .winners-hero-title,
    .comparison-hero-title,
    .payments-hero-title,
    .promotions-hero-title {
        font-size: 1.3rem !important;
        line-height: 1.1;
    }

    .hero-subtitle,
    .games-hero-subtitle,
    .winners-hero-subtitle,
    .comparison-hero-subtitle,
    .payments-hero-subtitle,
    .promotions-hero-subtitle {
        font-size: 0.8rem !important;
    }

    .nav-logo img {
        width: 70px;
    }

    .ticker-content {
        font-size: 0.7rem;
    }

    .cta-button {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 0.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero-stat-number {
        font-size: 1rem;
    }

    .hero-stat-label {
        font-size: 0.6rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
    }
}
