/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

a {
	text-decoration: none;
}

/* Running Ticker */
.ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffdc00, #f7931e, #ff6b35);
    z-index: 1001;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ticker {
    display: flex;
    animation: scroll 30s linear infinite;
    height: 100%;
    align-items: center;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 50px;
    font-weight: 600;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes glow {
    from { text-shadow: 1px 1px 2px rgba(255,255,255,0.3); }
    to { text-shadow: 1px 1px 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,0,0.5); }
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 40px;
    width: 280px;
    height: calc(100vh - 40px);
    background: linear-gradient(180deg, #1e2a3a 0%, #0f1419 100%);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(0);
    transition: transform 0.3s ease;
    border-right: 2px solid #ff6b35;
    box-shadow: 2px 0 20px rgba(255, 107, 53, 0.2);
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #2a3441;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ff6b35;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo h2 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #ffdc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.logo p {
    color: #8a9ba8;
    font-size: 14px;
}

.sidebar-menu {
    padding: 20px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 5px 15px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item.deposit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.menu-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    margin-top: 40px;
    min-height: calc(100vh - 40px);
    transition: margin-left 0.3s ease;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(30, 42, 58, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a3441;
    position: sticky;
    top: 40px;
    z-index: 999;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
		z-index: 1000;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login {
    color: #ffffff;
    border: 2px solid #ff6b35;
    background: transparent;
}

.btn-register {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
}

.btn-login:hover,
.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero {
    padding: 50px 30px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b35, #ffdc00, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite alternate;
}

@keyframes textShine {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2) saturate(1.1); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffdc00;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #b8c6d1;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(10px);
}

.feature i {
    color: #ff6b35;
    font-size: 20px;
    width: 25px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b35;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.promotional-card {
    background: linear-gradient(135deg, #1e2a3a, #0f1419);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.promotional-card h3 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ffdc00;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 220, 0, 0.5);
}

.promo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.stat {
    background: rgba(255, 107, 53, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ff6b35;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #b8c6d1;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffdc00;
    text-shadow: 0 0 10px rgba(255, 220, 0, 0.3);
}

.promo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background: rgba(0, 136, 204, 0.2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #0088cc;
    color: #0088cc;
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 30px;
		margin-bottom: 30px !important;
    background: rgba(30, 42, 58, 0.5);
    margin: 0 30px;
    border-radius: 20px;
    border: 1px solid #2a3441;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.category-icon i {
    font-size: 20px;
    color: #000;
}

.category-item span {
    font-weight: 600;
    color: #ffffff;
}

/* Get Started Section */
.get-started {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    margin: 50px 30px;
    border-radius: 30px;
    border: 2px solid #ff6b35;
}

.get-started-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffdc00;
    text-shadow: 0 0 20px rgba(255, 220, 0, 0.5);
}

.get-started-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b8c6d1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 900;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: fabFloat 3s ease-in-out infinite;
}

@keyframes fabFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fab-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.fab-btn i {
    font-size: 18px;
}



/* Slots Page Specific Styles */
.slots-showcase {
    padding: 60px 30px;
    background: rgba(30, 42, 58, 0.3);
    margin: 30px;
    border-radius: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffdc00;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 220, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: #b8c6d1;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.slot-card {
    background: linear-gradient(135deg, #1e2a3a, #0f1419);
    border: 2px solid #2a3441;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slot-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: transform 0.6s ease;
    transform: rotate(45deg) translateY(100%);
}

.slot-card:hover::before {
    transform: rotate(45deg) translateY(-100%);
}

.slot-card:hover {
    border-color: #ff6b35;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.slot-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.slot-icon i {
    font-size: 35px;
    color: #000;
}

.slot-img {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.slot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slot-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.slot-card p {
    color: #b8c6d1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.slot-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #ff6b35;
}

.slot-play-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.slot-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.why-monti-slots {
    padding: 60px 30px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(30, 42, 58, 0.6);
    border: 1px solid #2a3441;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #ff6b35;
    background: rgba(30, 42, 58, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 25px;
    color: #000;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #b8c6d1;
    line-height: 1.6;
}

.slots-cta {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    margin: 50px 30px;
    border-radius: 30px;
    border: 2px solid #ff6b35;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffdc00;
    text-shadow: 0 0 20px rgba(255, 220, 0, 0.5);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b8c6d1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-icon.active {
    background: linear-gradient(135deg, #ffdc00, #ff6b35);
    box-shadow: 0 0 20px rgba(255, 220, 0, 0.5);
}

/* Live Casino Specific Styles */
.live-casino-card {
    background: linear-gradient(135deg, #1e2a3a, #0f1419);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: float 6s ease-in-out infinite;
}

.dealer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.dealer-avatar i {
    font-size: 35px;
    color: #000;
}

.live-casino-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ffdc00;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 220, 0, 0.5);
}

.live-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 255, 0, 0.1);
    padding: 10px;
    border-radius: 25px;
    border: 1px solid #00ff00;
    color: #00ff00;
    font-weight: 600;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff00;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.live-games-showcase {
    padding: 60px 30px;
    background: rgba(30, 42, 58, 0.3);
    margin: 30px;
    border-radius: 20px;
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.live-game-card {
    background: linear-gradient(135deg, #1e2a3a, #0f1419);
    border: 2px solid #2a3441;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-game-card.featured {
    border-color: #ffdc00;
    background: linear-gradient(135deg, #2a3441, #1e2a3a);
}

.live-game-card.featured::before {
    content: 'VIP';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffdc00, #f7931e);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.live-game-card:hover {
    border-color: #ff6b35;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.game-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.game-icon i {
    font-size: 30px;
    color: #000;
}

.game-img {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.live-game-card:hover .game-img img {
    transform: scale(1.05);
}


.live-game-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.live-game-card p {
    color: #b8c6d1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.game-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.stat-item i {
    margin-right: 5px;
}

.game-play-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
}

.game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.why-monti-live {
    padding: 60px 30px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.live-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.live-benefit-card {
    background: rgba(30, 42, 58, 0.6);
    border: 1px solid #2a3441;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.live-benefit-card:hover {
    border-color: #ff6b35;
    background: rgba(30, 42, 58, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.live-stats-section {
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    margin: 30px;
    border-radius: 20px;
    border: 1px solid #ff6b35;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(30, 42, 58, 0.8);
    border-radius: 15px;
    border: 1px solid #2a3441;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #ffdc00;
    text-shadow: 0 0 20px rgba(255, 220, 0, 0.3);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #b8c6d1;
    font-weight: 600;
}

.live-cta {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    margin: 50px 30px;
    border-radius: 30px;
    border: 2px solid #ff6b35;
}

/* Promotions Page Specific Styles */
.current-offers {
    padding: 60px 30px;
    background: rgba(30, 42, 58, 0.3);
    margin: 30px;
    border-radius: 20px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background: linear-gradient(135deg, #1e2a3a, #0f1419);
    border: 2px solid #2a3441;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card.featured {
    border-color: #ffdc00;
    background: linear-gradient(135deg, #2a3441, #1e2a3a);
}

.offer-card.vip {
    border-color: #9d4edd;
    background: linear-gradient(135deg, #240046, #3c096c);
}

.offer-card.seasonal {
    border-color: #06ffa5;
    background: linear-gradient(135deg, #023e8a, #0077b6);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.offer-card.featured .offer-badge {
    background: linear-gradient(135deg, #ffdc00, #f7931e);
}

.offer-card.vip .offer-badge {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
}

.offer-card.seasonal .offer-badge {
    background: linear-gradient(135deg, #06ffa5, #40e0d0);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.offer-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.offer-icon i {
    font-size: 35px;
    color: #000;
}

.offer-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.offer-details {
    margin-bottom: 25px;
}

.offer-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffdc00;
    text-shadow: 0 0 10px rgba(255, 220, 0, 0.3);
    margin-bottom: 5px;
}

.offer-condition {
    color: #b8c6d1;
    font-size: 0.9rem;
}

.offer-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.how-to-claim {
    padding: 60px 30px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: rgba(30, 42, 58, 0.6);
    border: 1px solid #2a3441;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    border: 2px solid #ff6b35;
}

.step-icon i {
    font-size: 25px;
    color: #ff6b35;
}

.step-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-card p {
    color: #b8c6d1;
    line-height: 1.6;
}

.special-events {
    padding: 60px 30px;
    background: rgba(30, 42, 58, 0.3);
    margin: 30px;
    border-radius: 20px;
}

.events-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.event-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.event-content h3 {
    font-size: 1.5rem;
    color: #ffdc00;
    margin-bottom: 15px;
}

.event-content p {
    color: #b8c6d1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.event-features span {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
}

.terms-notice {
    padding: 30px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 15px;
    margin: 30px;
}

.notice-content {
    text-align: center;
}

.notice-content h3 {
    color: #ffc107;
    margin-bottom: 15px;
}

.notice-content p {
    color: #b8c6d1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.terms-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.promotions-cta {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    margin: 50px 30px;
    border-radius: 30px;
    border: 2px solid #ff6b35;
}

/* Payments Page Specific Styles */
.payment-methods {
    padding: 60px 30px;
    background: rgba(30, 42, 58, 0.3);
    margin: 30px;
    border-radius: 20px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-card {
    background: linear-gradient(135deg, #1e2a3a, #0f1419);
    border: 2px solid #2a3441;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card.featured {
    border-color: #ffdc00;
    background: linear-gradient(135deg, #2a3441, #1e2a3a);
}

.payment-card.crypto {
    border-color: #f7931a;
    background: linear-gradient(135deg, #3d1a00, #1a0d00);
}

.payment-card:hover {
    border-color: #ff6b35;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.payment-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.payment-icon i {
    font-size: 30px;
    color: #000;
}

.payment-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.payment-card p {
    color: #b8c6d1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-item {
    color: #ff6b35;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-item i {
    margin-right: 8px;
    color: #4caf50;
}

.payment-limits {
    background: rgba(255, 107, 53, 0.1);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.payment-limits span {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.withdrawal-info {
    padding: 60px 30px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.withdrawal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.withdrawal-card {
    background: rgba(30, 42, 58, 0.6);
    border: 1px solid #2a3441;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.withdrawal-card.vip {
    border-color: #9d4edd;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(199, 125, 255, 0.1));
}

.withdrawal-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.withdrawal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.withdrawal-card.vip .withdrawal-icon {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
}

.withdrawal-icon i {
    font-size: 25px;
    color: #000;
}

.withdrawal-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.withdrawal-card p {
    color: #b8c6d1;
    line-height: 1.6;
}

.security-features {
    padding: 60px 30px;
    background: rgba(30, 42, 58, 0.3);
    margin: 30px;
    border-radius: 20px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-card {
    background: rgba(30, 42, 58, 0.6);
    border: 1px solid #2a3441;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.security-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.security-icon i {
    font-size: 25px;
    color: #000;
}

.security-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.security-card p {
    color: #b8c6d1;
    line-height: 1.6;
}

.payment-process {
    padding: 60px 30px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.process-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #2a3441;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    border-color: #ff6b35;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(30, 42, 58, 0.6);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #2a3441;
}

.process-step .step-number {
    position: static;
    transform: none;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: #b8c6d1;
    line-height: 1.6;
}

.payments-cta {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    margin: 50px 30px;
    border-radius: 30px;
    border: 2px solid #ff6b35;
}

/* About Page Specific Styles */
.why-monti-about {
    padding: 60px 30px;
    background: rgba(30, 42, 58, 0.3);
    margin: 30px;
    border-radius: 20px;
}

.love-monti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.love-card {
    background: linear-gradient(135deg, #1e2a3a, #0f1419);
    border: 2px solid #2a3441;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.love-card.featured {
    border-color: #ffdc00;
    background: linear-gradient(135deg, #2a3441, #1e2a3a);
}

.love-card:hover {
    border-color: #ff6b35;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.love-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.love-icon i {
    font-size: 30px;
    color: #000;
}

.love-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.love-card p {
    color: #b8c6d1;
    line-height: 1.6;
}

.contact-support {
    padding: 60px 30px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.support-card {
    background: rgba(30, 42, 58, 0.6);
    border: 1px solid #2a3441;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card.primary {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.support-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon i {
    font-size: 25px;
    color: #000;
}

.support-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.support-card p {
    color: #b8c6d1;
    margin-bottom: 15px;
    line-height: 1.6;
}

.support-hours {
    color: #4caf50;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.support-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.responsible-gaming {
    padding: 60px 30px;
    background: rgba(30, 42, 58, 0.3);
    margin: 30px;
    border-radius: 20px;
}

.responsible-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.responsible-text h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.responsible-text p {
    color: #b8c6d1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.responsible-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.responsible-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ff6b35;
    font-weight: 600;
}

.responsible-item i {
    color: #4caf50;
    font-size: 18px;
    width: 20px;
}

.age-verification {
    text-align: center;
}

.age-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid #ffdc00;
}

.age-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.age-text {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.age-verification p {
    color: #b8c6d1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.licenses {
    padding: 60px 30px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.license-card {
    background: rgba(30, 42, 58, 0.6);
    border: 1px solid #2a3441;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.license-card:hover {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.license-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.license-icon i {
    font-size: 25px;
    color: #000;
}

.license-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.license-card p {
    color: #b8c6d1;
    line-height: 1.6;
}

.monti-stats {
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    margin: 30px;
    border-radius: 20px;
    border: 1px solid #ff6b35;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-cta {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    margin: 50px 30px;
    border-radius: 30px;
    border: 2px solid #ff6b35;
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 42, 58, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 5px;
    border: 2px solid rgba(30, 42, 58, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f7931e, #ffdc00);
    cursor: pointer;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff6b35 rgba(30, 42, 58, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.hero-content {
			grid-template-columns: 1fr;
			text-align: center;
	}
	
	.promo-stats {
			grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.sidebar {
			transform: translateX(-100%);
			width: 100%;
			top: 100px;
	}
	
	.sidebar.open {
			top: 100px;
			transform: translateX(0);
	}

	.sidebar.open body {
		overflow: hidden;
	}
	
	.main-content {
			margin-left: 0;
	}
	
	.hamburger {
			display: flex;
	}
	
	.nav-menu {
			display: none;
	}
	
	.hero-title {
			font-size: 2rem;
	}
	
	.hero-subtitle {
			font-size: 1.2rem;
	}
	
	.game-categories {
			grid-template-columns: repeat(4, 1fr);
			gap: 10px;
			margin: 0 15px;
			padding: 20px;
	}
	
	.category-item {
			padding: 10px 5px;
	}
	
	.category-icon {
			width: 40px;
			height: 40px;
	}

	.live-games-showcase {
		margin: 0;
		padding: 10px;
	}
	
	.category-icon i {
			font-size: 16px;
	}
	
	.floating-buttons {
			right: 10px;
			bottom: 20px;
			top: auto;
			transform: none;
			flex-direction: row;
	}
	
	.fab-btn span {
			display: none;
	}
	
	.fab-btn {
			width: 50px;
			height: 50px;
			border-radius: 50%;
			justify-content: center;
			padding: 0;
	}
}

@media (max-width: 480px) {
	.hero {
			padding: 30px 15px;
	}
	.section-header h2 {
		font-size: 2rem;
	}
	
	.header {
			padding: 15px 20px;
	}
	
	.hero-buttons {
			flex-direction: column;
			align-items: center;
	}
	
	.btn-primary,
	.btn-secondary {
			width: 100%;
			text-align: center;
	}
	
	.get-started {
			margin: 30px 15px;
			padding: 50px 20px;
	}
	
	.get-started-content h2 {
			font-size: 2rem;
	}
	
	/* Mobile adjustments for new pages */
	.slots-showcase,
	.payment-methods,
	.current-offers,
	.why-monti-about {
			margin: 15px;
			padding: 40px 20px;
	}
	
	.slots-grid,
	.payment-grid,
	.offers-grid,
	.love-monti-grid {
			grid-template-columns: 1fr;
			gap: 20px;
	}
	
	.slot-card,
	.payment-card,
	.offer-card,
	.love-card {
			padding: 20px;
	}
	
	.claim-steps,
	.security-grid,
	.license-grid {
			grid-template-columns: 1fr;
			gap: 20px;
	}
	
	.responsible-content {
			grid-template-columns: 1fr;
			gap: 30px;
	}
	
	.tab-buttons {
			flex-direction: column;
			gap: 10px;
	}
	
	.process-step {
			flex-direction: column;
			text-align: center;
			gap: 15px;
	}
	
	.event-features {
			flex-direction: column;
			gap: 10px;
	}
}