/* General Styles */
:root {
    --primary-color: #7200ff;
    --secondary-color: #ff0054;
    --tertiary-color: #00e5ff;
    --dark-color: #0a0014;
    --light-color: #f0f0f0;
    --text-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    --gradient-tertiary: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    --transition-speed: 0.3s;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --glow-shadow: 0 0 10px rgba(114, 0, 255, 0.5), 0 0 20px rgba(255, 0, 84, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

main {
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--tertiary-color);
}

.container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 0;
}

section {
    padding: 2rem 0;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: var(--box-shadow);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--glow-shadow);
    }
    100% {
        transform: scale(1);
        box-shadow: var(--box-shadow);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Particle Animation */
@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

.particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.site-particle {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 15s linear infinite;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.1);
}

/* Running Line */
.running-line {
    background-color: rgba(10, 0, 20, 0.9);
    color: var(--text-color);
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exchange-rates-static {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    min-width: 25%;
}

.exchange-rates-static span {
    margin-right: 1.5rem;
    font-size: 0.9rem;
}

.winners {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 1rem;
    gap: 2rem;
}

.winners span {
    margin-right: 2rem;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.winners span.winner-fade {
    animation: winnerFade 0.5s ease-in;
}

@keyframes winnerFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.special-buttons {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    min-width: 25%;
    justify-content: flex-end;
}

.special-btn {
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.money-btn {
    background-color: #FFD700;
    color: var(--dark-color);
}

.drive-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.special-btn i {
    margin-right: 0.5rem;
}

.special-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.running-line i {
    color: var(--tertiary-color);
    margin-right: 0.5rem;
}

/* Header */
header {
    background-color: rgba(10, 0, 20, 0.9);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
		padding: 0 1rem;
    max-width: 1500px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-color);
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 1rem;
}

.main-nav a {
    font-weight: 500;
    padding: 0.2rem;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width var(--transition-speed) ease;
}

.main-nav a:hover:after, .main-nav a.active:after {
    width: 100%;
}

.main-nav a.active {
    color: var(--tertiary-color);
}

.auth-buttons {
    display: flex;
}

.game-providers {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-providers a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.game-providers a:hover {
    transform: translateY(-3px);
}

.game-providers img {
    height: 1rem;
    filter: brightness(0.8);
    transition: all var(--transition-speed) ease;
}

.game-providers a:hover img {
    filter: brightness(1);
}

@media (max-width: 992px) {
    .game-providers {
        display: none;
    }
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow);
    border: none;
    margin-left: 0.5rem;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-login {
    background-color: transparent;
    border: 2px solid var(--tertiary-color);
    color: var(--tertiary-color);
}

.btn-login:hover {
    background-color: var(--tertiary-color);
    color: var(--dark-color);
}

.btn-register {
    background: var(--gradient-primary);
    color: var(--text-color);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow);
    color: var(--text-color);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-color);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--dark-color);
}

.btn-tertiary {
    background: var(--gradient-tertiary);
    color: var(--text-color);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Grid Layout */
.hero-grid {
    width: 100%;
    padding: 1rem 5%;
    background-color: var(--dark-color);
    position: relative;
    z-index: 1;
}

.hero-row {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    color: white;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-main {
    background: url('../images/1.avif') center/cover no-repeat;
}

.hero-main h1 {
    font-size: 2.5rem;
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.hero-main p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.hero-cashback {
    background-color: #8833ff;
    background: url('../images/11.png') center/cover no-repeat;
}

.hero-bonus {
    background-color: #3377ff;
    background: url('../images/4.avif') center/cover no-repeat;
}

.hero-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.category-icon {
    margin-right: 1rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    max-width: 100%;
    height: auto;
}

.category-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.category-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Different Hero Backgrounds */
.slots-hero {
    background: url('../images/slots-hero.jpg') center/cover no-repeat;
    background-color: #331a66;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.live-casino-hero {
    background: url('../images/live-casino-hero.jpg') center/cover no-repeat;
    background-color: #1a3366;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.promo-hero {
    background: url('../images/promo-hero.jpg') center/cover no-repeat;
    background-color: #661a66;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.about-hero {
    background: url('../images/about-hero.jpg') center/cover no-repeat;
    background-color: #1a6633;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.contact-hero {
    background: url('../images/contact-hero.jpg') center/cover no-repeat;
    background-color: #663a1a;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.slots-hero::before,
.live-casino-hero::before,
.promo-hero::before,
.about-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

.hero-content p {
	font-size: 1.2rem;
}

/* Featured Games Section */
.featured-games {
    padding: 4rem 0;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-shadow);
}

.game-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.game-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 0, 20, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-speed) ease;
    z-index: 2;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    margin-bottom: 0.5rem;
    color: var(--tertiary-color);
}

/* Game Card Backgrounds */
.joker-vs-joker {
    background: url('../images/1.jpg');
		background-size: cover;
		background-position: center;

}

.bigtuna {
		background: url('../images/2.jpg');
		background-size: cover;
		background-position: center;

}

.lady-licky {
	background: url('../images/28.webp');
	background-size: cover;
	background-position: center;

}

.cats-soup {
	background: url('../images/29.webp');
	background-size: cover;
	background-position: center;

}

.dragon-queen {
	background: url('../images/3.jpg');
	background-size: cover;	
	background-position: center;

}

.tramp-day {
	background: url('../images/4.jpg');
	background-size: cover;
		background-position: center;
}

.loki-loot {
	background: url('../images/30.webp');
	background-size: cover;	
	background-position: center;
}

.big-bucks {
	background: url('../images/5.jpg');
	background-size: cover;
	background-position: center;

}

.penalty-duel {
	background: url('../images/6.jpg');
	background-size: cover;
	background-position: center;

}

.blackjack-pro {
	background: url('../images/12.png');
	background-size: cover;
	background-position: center;
}

.live-baccarat {
	background: url('../images/22.webp');
	background-size: cover;
	background-position: center;
}

.roulette-live {
	background: url('../images/7.jpg');
	background-size: cover;
	background-position: center;

}

.game-shows {
	background: url('../images/23.webp');
	background-size: cover;
	background-position: center;

}

/* Game Tags */
.game-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

/* Live Badge */
.live-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    animation: pulse 1.5s infinite;
}

/* Intro Sections */
.intro, .slots-intro, .live-casino-intro, .promo-intro, .about-intro, .contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.features {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
}

.features h2 {
    color: var(--tertiary-color);
}

.features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    margin-bottom: 1rem;
}

.features i {
    color: var(--tertiary-color);
    margin-right: 0.8rem;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--tertiary-color);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 3rem 0;
    margin: 4rem 0;
    text-align: center;
}

/* Slots Page Specific Styles */
.slot-tournament {
    margin-top: 3rem;
    background: var(--gradient-secondary);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.slot-tournament h3 {
    color: var(--dark-color);
		font-size: 2rem;
}

.slot-tournament p {
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

/* Promotions Page Specific Styles */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.promo-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 0 0 10px 0;
}

.promo-content {
    padding: 2rem;
    text-align: center;
}

.promo-content h3 {
    margin-top: 1.5rem;
    color: var(--tertiary-color);
}

.btn-promo {
    background: var(--gradient-primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 1rem;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vip-tier {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.vip-tier:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-shadow);
}

.vip-icon {
    font-size: 3rem;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

.vip-tier h3 {
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
}

.vip-tier ul {
    list-style: none;
    text-align: left;
}

.vip-tier li {
    margin-bottom: 0.8rem;
}

.vip-tier i {
    color: var(--tertiary-color);
    margin-right: 0.5rem;
}

.vip-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-vip {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* About Us Page Specific Styles */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.pillar-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

.pillar-item h3 {
    color: var(--tertiary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.member-avatar {
    font-size: 3.5rem;
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
}

.team-member h3 {
    color: var(--tertiary-color);
}

/* Contact Us Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    font-size: 3rem;
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

.btn-contact {
    background: var(--gradient-primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 1rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tip-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.tip-item i {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

.support-note {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.message-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--tertiary-color);
}

textarea {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow);
}

/* Footer */
footer {
    background-color: #06000d;
}

.footer-top {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--text-color);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 99;
}

.btn-floating {
    padding: 1rem 2rem;
    border-radius: 10%;
    width: auto;
    height: auto;
    font-size: 1rem;
    box-shadow: var(--box-shadow);
    animation: pulse 2s infinite;
}

.btn-floating.btn-register {
    background: var(--gradient-primary);
}

.btn-floating.btn-play {
    background: var(--gradient-secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .hero-row {
        grid-template-columns: 1fr;
    }
    
    .hero-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .running-line {
        flex-direction: column;
        padding: 0.5rem 0;
    }
    
    .exchange-rates-static, .winners, .special-buttons {
        width: 100%;
        min-width: 100%;
        padding: 0.5rem 1rem;
        justify-content: center;
    }
    
    .winners {
        order: 3;
    }
    
    .special-buttons {
        order: 2;
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-row {
        gap: 0.5rem;
    }
    
    .hero-item {
        height: 250px;
        padding: 1.5rem;
    }

		.winners span {
			font-size: .8rem;
		}
    
    .hero-main h1 {
        font-size: 1.5rem;
    }
    
    .hero-main p {
        font-size: 1rem;
    }
    
    .category-item {
        padding: 1rem;
    }
		.hero-content h1 {
			font-size: 1.5rem;
		}
		.hero-content p {
			font-size: 1rem;
		}
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-buttons {
			display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .btn-floating {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .special-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .special-btn {
        margin: 0.3rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-categories {
        grid-template-columns: 1fr;
    }
    
    .features {
        padding: 1.5rem;
    }
    
    .exchange-rates-static span {
        margin-right: 0.8rem;
        font-size: 0.7rem;
    }
} 