/* 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;
}

/* Typography */
h1, h2, h3, 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;
}

.btn {
    font-size: 23px;
}

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

.hero h1 {
    font-size: 48px;
    margin-bottom: 1rem;
}

.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;
}

/* 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 */
.hero {
    min-height: 380px;
    height: 100%;
    background-image: url(../vegasbanner.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    margin-top: 140px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(27, 29, 43, 0) 0%, rgb(27, 29, 43) 100%);
    pointer-events: none;
}

.hero .container.h-100 {
    margin-bottom: 40px;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* 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;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .search-button {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1d2b;
        padding: 1rem;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .bonus-amount {
        font-size: 3rem;
    }
}

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

    .hero h1 {
        font-size: 1.5rem;
    }

    .bonus-amount {
        font-size: 2rem;
    }

    .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;
    }
    .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 {
    padding-top: 180px !important; /* Add extra padding for fixed header */
}

.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;
}

h3 {
    color: #0dcaf0;
}

@media (max-width: 768px) {
    .page-content {
        padding-top: 100px !important;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-content {
        padding-top: 80px !important;
    }
    
    .page-content h1 {
        font-size: 1.8rem;
    }
}

/* 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;
    }
}

/* FAQ item styles for bonus page */
.faq-item {
    background: #23263a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 24px #3399ff22;
    border-left: 4px solid #0dcaf0;
}

.faq-item h4 {
    color: #0dcaf0;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #c7d0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Internal content link styling */
.int-link {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.int-link:hover {
    color: #3399ff;
    text-decoration: none;
    border-bottom: 1px solid #0dcaf0;
    text-shadow: 0 0 8px rgba(13, 202, 240, 0.3);
}

/* Login page specific styles */
.login-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.login-steps li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
}

.login-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #0dcaf0;
    color: #1a1d2b;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.advantage-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.advantage-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0dcaf0;
    font-weight: bold;
    font-size: 1.2rem;
} 

/* Burger Menu Styles */
.burger-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.burger-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0dcaf0, #0aa1c0);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(13, 202, 240, 0.3);
    transition: all 0.3s ease;
}

.burger-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(13, 202, 240, 0.5);
}

.burger-line {
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 1px;
    transform-origin: center;
}

.burger-toggle.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.burger-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #1a1d2b;
    border: 1px solid #0dcaf0;
    border-radius: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.burger-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.burger-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #0dcaf0, #0aa1c0);
    color: #fff;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.burger-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(13, 202, 240, 0.2);
}

.burger-link:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.burger-link:hover {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.burger-link .flag {
    font-size: 20px;
    margin-right: 12px;
}

.burger-link .country {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 14px;
}

@media (max-width: 768px) {
    .burger-menu {
        bottom: 15px;
        right: 15px;
    }
    
    .burger-toggle {
        width: 50px;
        height: 50px;
    }
    
    .burger-line {
        width: 18px;
    }
    
    .burger-dropdown {
        min-width: 180px;
    }
} 
