* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.15);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.navbar-toggler {
    border: 2px solid rgba(220, 20, 60, 0.5);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.15);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.3rem rgba(220, 20, 60, 0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28220, 20, 60, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    margin: 0 0.8rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}

.nav-link:hover {
    color: #dc143c !important;
    background: rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #dc143c !important;
    background: rgba(220, 20, 60, 0.15);
}

.btn-register {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    color: white;
    font-weight: 700;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-register:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
    color: white;
}

.btn-login {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border: 2px solid rgba(220, 20, 60, 0.6);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-right: 1rem;
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-login:hover {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.15);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff6b00 0%, #dc143c 50%, #8b0000 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-glow 8s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(-30px, -30px) scale(1.1); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 4px 6px 20px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.98;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Section Headers */
.section-badge {
    display: inline-block;
    background: rgba(220, 20, 60, 0.2);
    color: #dc143c;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.section-badge.jackpot-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.4);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
}

.category-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 25px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 0, 0.2);
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b00 0%, #dc143c 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 107, 0, 0.4);
    border-color: #ff6b00;
    background: linear-gradient(135deg, rgba(26, 26, 46, 1) 0%, rgba(22, 33, 62, 1) 100%);
}

.category-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(220, 20, 60, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-wrapper {
    background: linear-gradient(135deg, #ff6b00 0%, #dc143c 100%);
    border-color: #ff6b00;
    transform: scale(1.15) rotate(10deg);
}

.category-icon {
    font-size: 3.5rem;
    color: #ff6b00;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    color: #ffffff;
    transform: scale(1.2);
}

.category-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.category-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.category-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.25);
    color: #ff6b00;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 107, 0, 0.4);
}

.category-badge.hot {
    background: rgba(220, 20, 60, 0.25);
    color: #dc143c;
    border-color: rgba(220, 20, 60, 0.4);
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.game-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 0, 0.2);
    margin-bottom: 2rem;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 0, 0.5);
    border-color: #ff6b00;
}

.game-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px);
}

.game-image i {
    font-size: 5.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.game-jackpot-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b00 100%);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 10;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-card:hover .game-image i {
    transform: scale(0.8);
    opacity: 0.3;
}

.btn-play-game {
    background: linear-gradient(135deg, #7ed321 0%, #5fb800 100%);
    color: white;
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-play-game:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(126, 211, 33, 0.6);
}

.btn-play-game i {
    font-size: 1.8rem;
}

.game-info {
    padding: 1.8rem;
}

.game-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.game-provider {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.game-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.25);
    color: #ff6b00;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 107, 0, 0.4);
}

.game-badge.hot {
    background: rgba(220, 20, 60, 0.25);
    color: #dc143c;
    border-color: rgba(220, 20, 60, 0.4);
}

.game-badge.new {
    background: rgba(126, 211, 33, 0.25);
    color: #7ed321;
    border-color: rgba(126, 211, 33, 0.4);
}

/* Live Casino Section */
.live-casino-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
}

.live-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(220, 20, 60, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(220, 20, 60, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.live-dot-large {
    width: 15px;
    height: 15px;
    background: #7ed321;
    border-radius: 50%;
    animation: blink-dot 1.5s infinite;
    box-shadow: 0 0 15px #7ed321;
    transition: transform 0.3s ease;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.live-dealer-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
    transition: all 0.4s ease;
    text-align: center;
}

.live-dealer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(220, 20, 60, 0.5);
    border-color: #dc143c;
}

.dealer-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 20, 60, 0.25);
    color: #dc143c;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(220, 20, 60, 0.4);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #7ed321;
    border-radius: 50%;
    animation: blink-dot 1.5s infinite;
    transition: transform 0.3s ease;
}

.dealer-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(220, 20, 60, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(220, 20, 60, 0.4);
    transition: all 0.3s ease;
}

.live-dealer-card:hover .dealer-avatar {
    transform: scale(1.1);
    border-color: #dc143c;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.3) 0%, rgba(220, 20, 60, 0.2) 100%);
}

.dealer-avatar i {
    font-size: 4rem;
    color: #dc143c;
}

.dealer-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.dealer-game {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.dealer-stats {
    margin-bottom: 1.5rem;
}

.dealer-stats .stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.btn-join-table {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    color: white;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-join-table:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
    color: white;
}

/* Jackpots Section */
.jackpots-section {
    padding: 5rem 0;
    background: #000000;
}

.jackpot-card-premium {
    background: linear-gradient(135deg, #ff6b00 0%, #dc143c 100%);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.5);
    transition: all 0.4s ease;
}

.jackpot-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 107, 0, 0.7);
}

.jackpot-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px);
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { transform: translate(-50%, -50%); }
    100% { transform: translate(0%, 0%); }
}

.jackpot-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    z-index: 10;
}

.jackpot-icon-large {
    font-size: 5rem;
    color: #ffff00;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: pulse-icon 2s infinite;
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.8);
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.jackpot-name-large {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jackpot-amount-large {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.jackpot-amount-large .currency {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.9;
    display: block;
    margin-bottom: 0.5rem;
}

.jackpot-amount-large .value {
    font-size: 3rem;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
    display: block;
    font-family: 'Courier New', monospace;
}

.jackpot-info {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-play-jackpot {
    background: #ffffff;
    color: #dc143c;
    font-weight: 800;
    padding: 1.2rem 3rem;
    border-radius: 60px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.btn-play-jackpot:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    background: #f0f0f0;
    color: #dc143c;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 50%, #8b0000 100%);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon-casino {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    animation: bounce-casino 2s ease-in-out infinite;
}

@keyframes bounce-casino {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.4);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-casino {
    background: #ffffff;
    color: #dc143c;
    font-weight: 800;
    padding: 1.5rem 4rem;
    border-radius: 70px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.btn-cta-casino:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background: #f0f0f0;
    color: #dc143c;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(220, 20, 60, 0.3);
}

.footer-title {
    color: #dc143c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #dc143c;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc143c;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #dc143c;
    border-color: #dc143c;
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

.pulse {
    animation: pulse-animation 2s ease-in-out infinite;
}

@keyframes pulse-animation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive - Tablets (≤ 991px) */
@media (max-width: 991px) {
    .navbar-brand img {
        width: 60px;
    }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
        border: 1px solid rgba(220, 20, 60, 0.2);
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
        margin: 0.4rem 0 !important;
    }

    .nav-link {
        padding: 0.8rem 1.2rem !important;
        border-radius: 10px;
        margin: 0 !important;
        display: block;
    }

    .btn-register,
    .btn-login {
        width: 100%;
        text-align: center;
        margin: 0.6rem 0 !important;
        padding: 1rem 1.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .hero-stats {
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Responsive - Mobile (≤ 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand img {
        width: 55px;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .categories-section,
    .games-section,
    .live-casino-section,
    .jackpots-section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .category-card {
        padding: 2rem 1.5rem;
    }

    .category-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .category-icon {
        font-size: 3rem;
    }

    .game-image {
        height: 180px;
    }

    .game-image i {
        font-size: 4.5rem;
    }

    .dealer-avatar {
        width: 100px;
        height: 100px;
    }

    .dealer-avatar i {
        font-size: 3.5rem;
    }

    .jackpot-amount-large .value {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .btn-cta-casino {
        padding: 1.2rem 3rem;
        font-size: 1rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive - Smartphones pequenos (≤ 576px) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .category-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    .category-name {
        font-size: 1.2rem;
    }

    .game-name {
        font-size: 1.1rem;
    }

    .jackpot-icon-large {
        font-size: 4rem;
    }

    .jackpot-name-large {
        font-size: 1.5rem;
    }

    .jackpot-amount-large .value {
        font-size: 2rem;
    }

    .cta-icon-casino {
        font-size: 4rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn-cta-casino {
        padding: 1.1rem 2.5rem;
        font-size: 0.95rem;
    }
}

/* Responsive - Extra pequenos (≤ 400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .jackpot-amount-large .value {
        font-size: 1.8rem;
    }
}