/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1d2b;
    color: #fff;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h4, h5, h6, th,
.btn,
.main-nav a {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    line-height: 100%;
    text-transform: uppercase;
    vertical-align: middle;
}

h3 {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 120%;
    text-transform: none;
    vertical-align: middle;
    font-size: 1.25rem;
}

.btn {
    font-size: 23px;
}

.main-nav a {
    font-size: 18px;
    color: #849FB9;
}



.hero-subtext {
    font-size: 18px;
    line-height: 1.5;
    color: #c7d0e0;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-bonus-label {
    display: inline-block;
    background-image: url('../assets/Rectangle1.png');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    padding: 15px 40px 9px 40px;
    border-radius: 12px;
    margin-bottom: 18px;
    text-align: center;
    text-transform: none;
    position: relative;
    z-index: 1;
}

.bonus-amount {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow:
        0 2px 8px rgba(51,153,255,0.5),
        0 0 0 #fff,
        2px 2px 0 #3399ff,
        -2px 2px 0 #3399ff;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Header styles */
.header {
    background-color: #1a1d2b;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.search-button svg {
    width: 24px;
    height: 24px;
    stroke: #6b7280;
    transition: stroke 0.3s;
}

.search-button:hover svg {
    stroke: #fff;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: none;
}

.logo .blue {
    color: #3399ff;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    margin-left: 1rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Navigation styles */
.main-nav {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    border-top: 1px solid rgba(51, 153, 255, 0.3);
    border-bottom: 1px solid rgba(51, 153, 255, 0.3);
    background: #1f3857;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #0dcaf0;
    letter-spacing: 0.6px;
    text-decoration: none;
    padding: 1.2rem 3rem;
    display: block;
    position: relative;
    transform: skew(-10deg);
    transition: color 0.3s, background-color 0.3s;
}

.main-nav a span {
    display: block;
    transform: skew(10deg);
}

.main-nav a:hover {
    color: #3399ff;
    background-color: rgba(255, 255, 255, 0.05);
}

.main-nav a.active {
    color: #3399ff;
    background-color: rgba(51, 153, 255, 0.1);
}

.main-nav li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    transform: skew(-10deg);
}

.header-right {
    display: flex;
    gap: 1rem;
}

/* Button styles */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    position: relative;
    background: transparent;
    color: #fff;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: skew(-10deg);
    transition: 0.3s;
}

.btn-login, .btn-register {
    min-width: 120px;
    margin: 0 0.5rem;
}

.btn:hover::before {
    border-color: #fff;
}

.btn-join {
    background: #6fea5c;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    text-decoration: none;
    font-weight: 700;
    font-style: italic;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 20px 70px;
    color: #fff;
    border: none!important;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s, filter 0.3s;
    filter: brightness(1.15) drop-shadow(0 4px 24px #3399ff55);
    color: #000;
    box-shadow: 0 2px 44px #3399ff33;
    border-radius: 50px;
}

.btn-join:before {
position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: skew(-10deg);
    transition: 0.3s;
}

/* Hero section - Modern redesign */
.hero {
    min-height: 60vh;
    position: relative;
    margin-top: 140px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 1rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../vegasbanner.webp);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(27, 29, 43, 0.3) 0%, rgba(27, 29, 43, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
}

.hero-title,
.hero-description {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 202, 240, 0.15);
    border: 1px solid rgba(13, 202, 240, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #0dcaf0;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(13, 202, 240, 0.4),
        0 0 40px rgba(13, 202, 240, 0.3);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 500px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-bonus-card {
    background: rgba(35, 38, 58, 0.9);
    border: 2px solid #0dcaf0;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-label {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #0dcaf0;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.bonus-amount {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    margin: 0 !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.bonus-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature {
    font-size: 14px;
    color: #c7d0e0;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(45deg, #6fea5c 0%, #0dcaf0 100%);
    border: none;
    border-radius: 50px;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    color: #1a1d2b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(111, 234, 92, 0.3);
    animation: buttonPulse 2s infinite;
    overflow: hidden;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(111, 234, 92, 0.4);
    color: #1a1d2b;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary-hero:hover .btn-glow {
    left: 100%;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #849FB9;
}

.trust-icon {
    font-size: 16px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(35, 38, 58, 0.9);
    border: 1px solid rgba(13, 202, 240, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    right: 100px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 1s;
}

.card-3 {
    top: 350px;
    right: 120px;
    animation-delay: 2s;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-title {
    font-size: 14px;
    color: #0dcaf0;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-number {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
    color: #6fea5c;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(111, 234, 92, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 48px rgba(111, 234, 92, 0.6), 0 0 30px rgba(13, 202, 240, 0.4);
        transform: scale(1.02);
    }
}

/* Bottom navigation new design */
.bottom-nav {
    background-color: #1a1d2b;
    padding: 1rem 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
}

.bottom-nav .nav-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
}

.bottom-nav .nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 140px;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    color: #b6c6d8;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 16px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1;
}

.bottom-nav .nav-btn .nav-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.bottom-nav .nav-btn.active,
.bottom-nav .nav-btn:focus {
    color: #0dcaf0;
}

.bottom-nav .nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #3a4a5e;
    border-radius: 0px;
    transform: skew(-8deg);
    z-index: -1;
    transition: border-color 0.2s;
    background-image: url('../assets/Rectangle23.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.bottom-nav .nav-btn.active::before {
    border-color: #0dcaf0;
    background: rgba(13, 202, 240, 0.08);
}

.bottom-nav .nav-btn:active {
    color: #fff;
}

@media (max-width: 768px) {
    .bottom-nav .nav-row {
        gap: 10px;
    }
    .bottom-nav .nav-btn {
        min-width: 110px;
        font-size: 16px;
        padding: 0.5rem 1rem;
    }
    .bottom-nav {
        padding: 0.5rem 0.2rem;
    }
}

/* Hide navigation on mobile/tablet - show hamburger menu */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 29, 43, 0.98);
        padding: 4rem 1rem 1rem;
        z-index: 999;
        backdrop-filter: blur(10px);
        border: none;
    }

    .main-nav.active {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding-top: 2rem;
        margin: 0;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
    }

    .main-nav li::after {
        display: none;
    }

    .main-nav a {
        padding: 1.5rem 2rem;
        font-size: 24px;
        width: 100%;
        display: block;
        transform: none;
        background: rgba(31, 56, 87, 0.8);
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }

    .main-nav a span {
        transform: none;
    }

    .main-nav a:hover {
        background-color: rgba(51, 153, 255, 0.2);
    }
}

    .hero {
        min-height: 50vh;
        margin-top: 83px;
        padding: 1rem 0;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title,
    .hero-description {
        text-align: left;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 18px;
        max-width: 100%;
        margin-bottom: 1.2rem;
    }

    .hero-bonus-card {
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .bonus-label {
        font-size: 12px;
    }

    .bonus-amount {
        font-size: 24px;
    }

    .btn-primary-hero {
        font-size: 19px;
        padding: 14px 30px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-right {
        display: none;
    }

    .hero {
        min-height: 45vh;
        padding: 0.8rem 0;
    }

    .hero-badge {
        padding: 4px 12px;
        font-size: 11px;
        margin-bottom: 0.8rem;
    }

    .hero-title {
        font-size: 35px;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 18px;
        margin-bottom: 1rem;
    }

    .hero-bonus-card {
        padding: 0.7rem;
        margin-bottom: 1rem;
    }

    .bonus-label {
        font-size: 11px;
        margin-bottom: 0.3rem;
    }

    .bonus-amount {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .btn-primary-hero {
        font-size: 17px;
        padding: 12px 24px;
    }

    .bottom-nav span {
        display: none;
    }
}

@media (max-width: 576px) {
    .header .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .header .row {
        flex-wrap: nowrap;
    }
    .header .col-auto.d-flex.align-items-center.gap-3 {
        gap: 10px !important;
    }
    .logo img {
        height: 36px;
    }
    .header-right .btn {
        padding: 0.5rem 1.1rem;
        font-size: 16px;
        min-width: 80px;
    }
    .header-right {
        gap: 8px !important;
    }
    .search-button svg {
        width: 28px;
        height: 28px;
    }
 
    .hero {
        margin-top:60px;
        min-height: 225px;
        background-position: right;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        text-align: left;
    }
    
    .hero-title {
        font-size: 35px;
    }
    
    .hero-title,
    .hero-description {
        text-align: left;
    }
    .hero-bonus-label {
        font-size: 18px;
        padding: 6px 18px;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    .bonus-amount {
        font-size: 32px;
        margin-bottom: 1.2rem;
    }
    .btn-join {
        font-size: 22px;
        padding: 12px 30px;
        min-width: 0;
    }
}

/* Hero section variants */
.sports-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/sports-bg.jpg');
}

.casino-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/casino-bg.jpg');
}

.live-casino-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/live-casino-bg.jpg');
}

.providers-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/providers-bg.jpg');
}

/* Bottom navigation active state */
.bottom-nav a.active {
    color: #3399ff;
}

.bottom-nav a.active img {
    opacity: 1;
    stroke: #3399ff;
}

/* Button hover effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(51, 153, 255, 0.3);
}

/* Header scroll effects */
.header.scroll-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.header.scroll-up {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile menu active state */
.search-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.search-button.active span:nth-child(2) {
    opacity: 0;
}

.search-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Custom table styles */
.custom-table {
  background: #23263a;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 24px #3399ff22;
  border-radius: 12px;
}
.custom-table th, .custom-table td {
  border: none;
  padding: 1rem 1.2rem;
  vertical-align: middle;
}
.custom-table thead th {
  background: #1f3857;
  color: #0dcaf0;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-bottom: 2px solid #0dcaf0;
}
.custom-table tbody tr {
  border-top: 1px solid #2a2e44;
  transition: background 0.2s;
}
.custom-table tbody tr:hover {
  background: #28304a;
}

/* Mobile responsive table styles */
@media (max-width: 768px) {
  .custom-table th, .custom-table td {
    padding: 0.75rem 0.8rem;
    font-size: 0.9rem;
  }
  .custom-table thead th {
    font-size: 1rem;
  }
  .table-responsive {
    border-radius: 12px;
    box-shadow: 0 2px 24px #3399ff22;
  }
}

@media (max-width: 576px) {
  .custom-table th, .custom-table td {
    padding: 0.6rem 0.7rem;
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .custom-table thead th {
    font-size: 0.9rem;
    padding: 0.8rem 0.7rem;
  }
  .custom-table td:first-child {
    min-width: 120px;
  }
}

/* Custom list blocks styles */
.custom-list-block {
  background: #23263a;
  border-radius: 16px;
  box-shadow: 0 2px 24px #3399ff22;
  color: #fff;
}
.custom-list-block h3 {
  color: #0dcaf0;
  font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.5rem;
}
.custom-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.custom-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.5rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid #2a2e44;
}
.custom-list li:last-child {
  border-bottom: none;
}
.list-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('../assets/casino-icon.png') center/contain no-repeat;
  filter: brightness(1.5) drop-shadow(0 0 4px #0dcaf0cc);
}

/* Custom text block styles */
.custom-text-block {
  background: #23263a;
  border-radius: 16px;
  box-shadow: 0 2px 24px #3399ff22;
  color: #fff;
}
.custom-text-block h3 {
  color: #0dcaf0;
  font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.5rem;
}
.custom-text-block p {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #c7d0e0;
}

/* Reviews section styles */
.reviews-section h3 {
  color: #0dcaf0;
  font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.5rem;
}
.review-card {
  background: #23263a;
  border-radius: 16px;
  box-shadow: 0 2px 24px #3399ff22;
  color: #fff;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0dcaf0;
  background: #1a1d2b;
}
.review-name {
  font-weight: 700;
  color: #0dcaf0;
  font-size: 1.1rem;
  font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
  font-style: italic;
}
.review-rating {
  color: #ffd700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
}
.review-text {
  font-size: 1.05rem;
  color: #c7d0e0;
  margin-top: 0.5rem;
  font-style: italic;
}

/* FAQ Accordion styles */
.faq-section h3 {
    color: #0dcaf0;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.5rem;
}

.custom-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.custom-accordion .accordion-item {
    background: #23263a;
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 24px #3399ff22;
}

.custom-accordion .accordion-button {
    background: #1f3857;
    color: #0dcaf0;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.2rem;
    padding: 1.2rem;
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #28304a;
    color: #fff;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1) hue-rotate(180deg);
}

.custom-accordion .accordion-body {
    background: #23263a;
    color: #c7d0e0;
    font-size: 1.1rem;
    padding: 1.2rem;
    border-top: 1px solid #2a2e44;
}

.custom-accordion .accordion-button:hover {
    background: #28304a;
}

.custom-accordion .accordion-button:focus {
    border: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .custom-accordion .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .custom-accordion .accordion-body {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Footer styles */
.footer {
    background: #1a1d2b;
    padding: 2rem 0;
    border-top: 1px solid rgba(51, 153, 255, 0.3);
    margin-top: 3rem;
}

.footer-content {
    padding: 1rem 0;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    position: relative;
}

.footer-nav li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-nav a {
    color: #849FB9;
    text-decoration: none;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #0dcaf0;
}

.copyright {
    color: #849FB9;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 576px) {
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem !important;
    }
    
    .footer-nav li:not(:last-child)::after {
        display: none;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
}

/* Page content styles */
.page-content.py-5 {
    padding-top: 40px !important;
    padding-bottom: 3rem !important;
}

/* Page content without hero - for login, footer pages etc */
.page-content-no-hero {
    padding-top: 160px !important;
    padding-bottom: 3rem !important;
}

/* Login Hero - Compact version */
.login-hero {
    background: linear-gradient(135deg, #1a1d2b 0%, #23263a 100%);
    padding: 4rem 0 3rem;
    margin-top: 140px;
    position: relative;
    overflow: hidden;
}

.login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(13, 202, 240, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.login-hero-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #0dcaf0;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.login-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c7d0e0;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.login-hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Bonus Hero - Compact version */
.bonus-hero {
    background: linear-gradient(135deg, #1a1d2b 0%, #23263a 100%);
    padding: 4rem 0 3rem;
    margin-top: 140px;
    position: relative;
    overflow: hidden;
}

.bonus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(111, 234, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-hero-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #6fea5c;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bonus-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c7d0e0;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* App Hero - Compact version */
.app-hero {
    background: linear-gradient(135deg, #1a1d2b 0%, #23263a 100%);
    padding: 4rem 0 3rem;
    margin-top: 140px;
    position: relative;
    overflow: hidden;
}

.app-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(51, 153, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.app-hero-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #3399ff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.app-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c7d0e0;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

/* Make portrait images smaller on desktop and mobile */
.content-image[src*="portrait"] {
    max-width: 300px;
}

@media (min-width: 768px) {
    .content-image[src*="portrait"] {
        max-width: 350px;
    }
}

/* Make vegasbonus image smaller on desktop */
@media (min-width: 768px) {
    .content-image[src*="vegasbonus.webp"] {
        max-width: 400px;
    }
}

/* Make vegaslogin image smaller on desktop */
@media (min-width: 768px) {
    .content-image[src*="vegaslogin.webp"] {
        max-width: 400px;
    }
}

/* Gambling awareness logos */
.gambling-logo {
    height: 22px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(1.1);
}

.gambling-logo:hover {
    opacity: 1;
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .gambling-logo {
        height: 18px;
    }
}

@media (max-width: 576px) {
    .gambling-logo {
        height: 16px;
    }
}

/* Age disclaimer */
.age-disclaimer {
    max-width: 800px;
    margin: 0 auto;
}

.age-icon {
    flex-shrink: 0;
}

.age-text {
    font-size: 12px;
    color: #b0b0b0;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 768px) {
    .age-disclaimer {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem !important;
    }
    
    .age-text {
        text-align: center;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .age-text {
        font-size: 10px;
    }
    
    .age-icon {
        width: 20px;
        height: 20px;
    }
}

.page-content h1 {
    color: #0dcaf0;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 2.5rem;
}

.page-content h2 {
    color: #0dcaf0;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 2.2rem;
}

.page-content h3 {
    color: #fff;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #c7d0e0;
}

.page-content ul {
    list-style: none;
    padding-left: 0;
}

.page-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.page-content ul li::before {
    content: '✓';
    color: #0dcaf0;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.faq {
    margin-top: 2rem;
}

.faq-item {
    background: #23263a;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 24px #3399ff22;
    overflow: hidden;
}

.faq-question {
    background: #1f3857;
    color: #0dcaf0;
    padding: 1.2rem;
    cursor: pointer;
    margin: 0;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.2rem;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.2rem;
    margin: 0;
    background: #23263a;
    color: #c7d0e0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .page-content.py-5 {
        padding-top: 100px !important;
    }
    
    .page-content-no-hero {
        padding-top: 100px !important;
    }
    
    .login-hero {
        margin-top: 83px;
        padding: 3rem 0 2rem;
    }
    
    .login-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .login-hero-description {
        font-size: 1rem;
    }
    
    .bonus-hero {
        margin-top: 83px;
        padding: 3rem 0 2rem;
    }
    
    .bonus-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .bonus-hero-description {
        font-size: 1rem;
    }
    
    .app-hero {
        margin-top: 83px;
        padding: 3rem 0 2rem;
    }
    
    .app-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .app-hero-description {
        font-size: 1rem;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-content.py-5 {
        padding-top: 40px !important;
    }
    
    .page-content-no-hero {
        padding-top: 80px !important;
    }
    
    .login-hero {
        margin-top: 60px;
        padding: 2.5rem 0 1.5rem;
    }
    
    .login-hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .login-hero-description {
        font-size: 0.95rem;
    }
    
    .bonus-hero {
        margin-top: 60px;
        padding: 2.5rem 0 1.5rem;
    }
    
    .bonus-hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .bonus-hero-description {
        font-size: 0.95rem;
    }
    
    .app-hero {
        margin-top: 60px;
        padding: 2.5rem 0 1.5rem;
    }
    
    .app-hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .app-hero-description {
        font-size: 0.95rem;
    }
    
    .page-content h1 {
        font-size: 1.8rem;
    }
    .page-content h2 {
        font-size: 1.8rem;
    }
    .page-content h3 {
        font-size: 1.5rem;
    }
}

/* Cookie Consent Popup styles */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #23263a;
    box-shadow: 0 -2px 24px #3399ff22;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    border-top: 1px solid rgba(51, 153, 255, 0.3);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    color: #0dcaf0;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #c7d0e0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-accept {
    background: #0dcaf0;
    color: #1a1d2b;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: #0bb8db;
    transform: translateY(-2px);
}

.btn-close {
    background: transparent;
    border: none;
    color: #849FB9;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-close:hover {
    color: #0dcaf0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .hero {
    margin-top: 83px;
    }
  
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-text h4 {
        font-size: 1.3rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
} 