* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: #000000;
    padding: 1rem 0;
    box-shadow: none;
}


.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 20, 60, 0.3);
}

.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%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #dc143c !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #dc143c !important;
}

.btn-register {
    background: linear-gradient(135deg, #7ed321 0%, #5fb800 100%);
    color: white;
    font-weight: 700;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(126, 211, 33, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(126, 211, 33, 0.5);
    background: linear-gradient(135deg, #8fe432 0%, #6fc910 100%);
    color: white;
}

.btn-login {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 0.7rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-right: 1rem;
    display: inline-block;
    text-decoration: none;
}

.btn-login:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff6b00 0%, #dc143c 100%);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-feature i {
    font-size: 1.5rem;
    color: #ffff00;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.category-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.3);
    border-color: #dc143c;
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ff6b00;
    position: relative;
    z-index: 1;
}

.category-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.category-count {
    color: #888888;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Games Section */
.games-section {
    padding: 4rem 0;
}

.game-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3);
    border-color: #ff6b00;
}

.game-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ff6b00 0%, #dc143c 100%);
    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.05) 10px,
            rgba(255, 255, 255, 0.05) 20px);
}

.game-image i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.762);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-card:hover .bxs-star {
    z-index: -1;
}

.game-card:hover .bxs-dice-5 {
    z-index: -1;
}

.game-card:hover .bxs-book {
    z-index: -1;
}

.game-card:hover .bxs-crown {
    z-index: -1;
}

.game-card:hover .bxs-rocket {
    z-index: -1;
}

.game-card:hover .bxs-diamond {
    z-index: -1;
}

.game-card:hover .bx-shape-circle {
    z-index: -1;
}

.game-card:hover .bxs-heart {
    z-index: -1;
}

.btn-play {
    background: linear-gradient(135deg, #7ed321 0%, #5fb800 100%);
    color: white;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(126, 211, 33, 0.5);
    background: linear-gradient(135deg, #7ed321 0%, #5fb800 100%);
}

.game-info {
    padding: 1.5rem;
}

.game-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.game-provider {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.game-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.game-badge.hot {
    background: rgba(220, 20, 60, 0.2);
    color: #dc143c;
}

.game-badge.new {
    background: rgba(126, 211, 33, 0.2);
    color: #7ed321;
}

/* Live Casino Section */
.live-casino-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 20, 60, 0.2);
    color: #dc143c;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #dc143c;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.live-dealer-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.live-dealer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.4);
    border-color: #dc143c;
}

/* Jackpots Section */
.jackpots-section {
    padding: 4rem 0;
    background: #000000;
}

.jackpot-card {
    background: linear-gradient(135deg, #ff6b00 0%, #dc143c 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
}

.jackpot-card::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 3s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-50%) translateY(-50%);
    }

    100% {
        transform: translateX(0%) translateY(0%);
    }
}

.jackpot-icon {
    font-size: 4rem;
    color: #ffff00;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.jackpot-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: #ffffff;
    color: #dc143c;
    font-weight: 800;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background: #7ed321;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: #888888;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li {
    display: block;
    margin: 0;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc143c;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Responsive - Tablets (≤ 991px) */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.5rem;
        padding: 0.4rem 1.2rem;
    }

    .navbar-collapse {
        background: #0a0a0a;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
        margin: 0.3rem 0 !important;
    }

    .nav-link {
        padding: 0.7rem 1rem;
        border-radius: 6px;
        margin: 0 !important;
        display: block;
    }

    .nav-link:hover {
        background: rgba(220, 20, 60, 0.1);
        transform: translateX(5px);
    }

    .btn-register,
    .btn-login {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0 !important;
        padding: 0.8rem 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .category-icon {
        font-size: 3.5rem;
    }

    .jackpot-amount {
        font-size: 2rem;
    }
}

/* Responsive - Mobile (≤ 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-brand {
        font-size: 1.3rem;
        padding: 0.4rem 1rem;
    }

    .hero-section {
        padding: 3rem 0 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .categories-section,
    .games-section,
    .live-casino-section,
    .jackpots-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-icon {
        font-size: 3rem;
    }

    .category-name {
        font-size: 1.3rem;
    }

    .game-image {
        height: 150px;
    }

    .game-image i {
        font-size: 4rem;
    }

    .dealer-avatar {
        width: 100px;
        height: 100px;
    }

    .dealer-avatar i {
        font-size: 3rem;
    }

    .jackpot-amount {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn-cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* Responsive - Smartphones pequenos (≤ 576px) */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
        padding: 0.3rem 0.8rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-feature {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    .category-name {
        font-size: 1.1rem;
    }

    .game-name {
        font-size: 1.1rem;
    }

    .jackpot-icon {
        font-size: 3rem;
    }

    .jackpot-name {
        font-size: 1.2rem;
    }

    .jackpot-amount {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }
}

/* Responsive - Extra pequenos (≤ 400px) */
@media (max-width: 400px) {
    .navbar-brand {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }
}