@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background-color: #10101d;
    color: #fffeff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    padding-left: 60px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1205px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

header {
    background-color: #1c1c34;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0;
    width: 100%;
}

.header-content > a {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

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

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

.logo-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-left: 8px;
    margin-top: 0;
    letter-spacing: 0.3px;
    color: #fff;
    white-space: nowrap;
}

.logo-text .bet {
    color: #fffefF;
}

.logo-img {
    width: 190px;
    height: 36px;
    background-image: url('../img/logo.svg');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

nav button, nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #fcf9ff;
    padding: 10px 15px;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
}

.login-btn, .signup-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn {
    background-color: #303059;
    border: 1px solid rgba(255,255,255,0.1);
}

.login-btn:hover {
    background: linear-gradient(135deg, #4e4fe2 0%, #4e4fe2 50%, #4e4fe2 100%);
    border-color: rgba(167, 163, 255, 0.3);
    box-shadow: 0 4px 16px rgba(167, 163, 255, 0.2);
    transform: scale(1.05);
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.signup-btn {
    background: linear-gradient(90deg, #4e4fe2 0%, #4e4fe2 100%);
    color: #fcf9ff;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(48, 48, 202, 0.2);
    padding: 10px 20px;
    white-space: nowrap;
}

.signup-btn:hover {
    background: linear-gradient(135deg, #4e4fe2 0%, #4e4fe2 50%, #4e4fe2 100%);
    box-shadow: 0 6px 20px rgba(48, 48, 202, 0.4);
    transform: scale(1.05);
    border-color: rgba(167, 163, 255, 0.5);
}

.signup-btn::before {
    content: '';
    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.4s ease;
}

.signup-btn:hover::before {
    left: 100%;
}

main {
    padding: 90px 0 40px 0;
}

.promo {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 26px;
}

.promo-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/welcome-offer.png');
    background-size: cover;
    background-position: 75% center;
    border-radius: 10px;
    z-index: 0;
}

.promo-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 8px 40px 72px 40px;
    z-index: 1;
    color: #edebeb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
}

.promo-content h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 44px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

.promo-content p {
    font-size: 19px;
    margin: 0;
    font-weight: 400;
}

.promo-content .learn-more-btn {
    margin: 0;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    background: #4e4fe2;
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.12);
    transition: filter 0.2s, transform 0.2s;
}

.promo-content .learn-more-btn:hover {
    filter: brightness(1.15);
    transform: scale(1.03);
}

.promo-content span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 44px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

.game-sections {
    display: flex;
    justify-content: space-between;
}

.game-section {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 48%;
    height: 220px;
    text-align: left;
    padding: 0;
    background: none;
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s;
}

.game-section:hover {
    transform: scale(1.03);
}

.game-section .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    z-index: 0;
}

.game-section .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(78,79,226,0.38) 0%, rgba(78,79,226,0.15) 100%);
    border-radius: 10px;
    z-index: 1;
    transition: background 0.2s;
}

.game-section:hover .overlay {
    background: linear-gradient(90deg, rgba(78,79,226,0.46) 0%, rgba(78,79,226,0.30) 100%);
}

.game-section h2 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 0 20px;
    display: flex;
    align-items: center;
}

.game-section .game-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 0 20px;
    display: flex;
    align-items: center;
}

.game-section .icon {
    margin-right: 10px;
    font-size: 20px;
}

.game-section .icon img {
    width: 26px;
    height: 26px;
    display: block;
}

.game-section.casino .bg {
    background-image: url('../img/Casino-v3.png');
}

.game-section.sports .bg {
    background-image: url('../img/Sport-v1.png');
}

.game-section.casino .icon {
    background-image: url('../img/casino_icon.png');
    width: 26px;
    height: 26px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.game-section.sports .icon {
    background-image: url('../img/sports_icon.png');
    width: 26px;
    height: 26px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

footer {
    background-color: #1c1c34;
    padding: 48px 0 24px 0;
    margin-top: 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.footer-column .footer-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    display: block;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #fffeff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fffeff;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
}

.footer-logo .gcb-logo {
    width: 80px;
    height: 40px;
    background-image: url('../img/razed-licence.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}

.footer-info {
    flex: 1;
    text-align: center;
}

.footer-info p {
    color: #fffeff;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.footer-info p:first-child {
    margin-bottom: 4px;
}

.age-restriction .age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #160e25;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
}

.payments-img {
    width: 100%;
    max-width: 1200px;
    height: 80px;
    background-image: url('../img/payments.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

nav {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #1c1c34;
    z-index: 2000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-tabs {
    display: flex;
    gap: 0;
}

.tab-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    background-color: #4e4fe2;
}

.tab-link {
    color: #4e4fe2;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px 8px 0 0;
    transition: background 0.2s, color 0.2s;
}

.tab-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: #4e4fe2;
}

.close-btn {
    background: none;
    border: none;
    color: #fcf9ff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-section {
    padding: 15px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 5px;
}

.menu-list a {
    display: flex;
    align-items: center;
    color: #fcf9ff;
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 8px;
    transition: background 0.2s;
    font-size: 15px;
    outline: none;
}

.menu-list a:hover,
.menu-list a:active {
    background-color: rgba(255,255,255,0.1);
}

.menu-list a:focus {
    outline: none;
    background-color: transparent;
}

.menu-list .icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin: 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fcf9ff;
    cursor: pointer;
    transition: background 0.2s;
}

.language-selector:hover {
    background-color: rgba(255,255,255,0.15);
}

.lang-icon {
    font-size: 18px;
    margin-right: 8px;
}

.dropdown-arrow {
    font-size: 12px;
    opacity: 0.7;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #4e4fe2;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1100;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    color: #fcf9ff;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s;
    min-width: 60px;
}

.nav-item:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 4px;
    opacity: 0.8;
}

.nav-icon.menu-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M3 5h18v3H3zm0 6h18v3H3zm0 6h18v3H3z"/></svg>');
}

.nav-icon.search-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>');
}

.nav-icon.casino-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18C6.67 18 6 17.33 6 16.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zM7.5 9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM16.5 18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM16.5 9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6 18 6.67 18 7.5 17.33 9 16.5 9z"/></svg>');
}

.nav-icon.support-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z"/></svg>');
}

.nav-label {
    font-size: 11px;
    font-weight: 500;
    color: #fcf9ff;
    opacity: 0.9;
}

a {
    text-decoration: none;
}

.payments-section {
    padding: 48px 0;
}

.featured-section {
    margin-bottom: 40px;
    overflow: visible;
}

.featured-bg {
    background: #1c1c34;
    border-radius: 8px;
    padding: 28px;
    min-height: 260px;
    max-width: 1205px;
    margin-left: auto;
    margin-right: auto;
}

.featured-header {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.featured-icon {
    width: 22px;
    height: 22px;
    background-image: url('../img/lightning.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.featured-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.featured-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-right: auto;
}

.featured-arrows {
    display: flex;
    gap: 8px;
}

.arrow-btn {
    background: #1c1c34;
    border: none;
    color: #fff;
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.arrow-btn:hover {
    background: #4e4fe2;
}

.featured-slots {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 4px;
    justify-content: center;
    align-items: flex-end;
}

.slot-card {
    background: #2a2a45;
    border-radius: 8px;
    width: 160px;
    min-width: 160px;
    height: 210px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
}

.slot-img {
    width: 100%;
    height: 130px;
    background: #10101d;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: filter 0.25s;
}

.slot-img.slot1 {
    background-image: url('../img/slot1.jpg');
}

.slot-img.slot2 {
    background-image: url('../img/slot2.jpg');
}

.slot-img.slot3 {
    background-image: url('../img/slot3.jpg');
}

.slot-img.slot4 {
    background-image: url('../img/slot4.jpg');
}

.slot-img.slot5 {
    background-image: url('../img/slot5.jpg');
}

.slot-img.slot6 {
    background-image: url('../img/slot6.jpg');
}

.slot-card:hover .slot-img {
    filter: blur(3px);
}

.slot-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 2;
}

.slot-card:hover .slot-actions {
    opacity: 1;
    pointer-events: auto;
}

.play-btn {
    background: linear-gradient(90deg, #4e4fe2 0%, #4e4fe2 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    cursor: pointer;
    transition: filter 0.18s;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}
.play-btn:hover {
    filter: brightness(0.92);
}

.demo-btn {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    border: 1.5px solid #fff;
    border-radius: 6px;
    padding: 5px 16px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.demo-btn:hover {
    background: #fff;
    color: #160e25;
}

.slot-info {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(42, 42, 69, 1) 0%, rgba(42, 42, 69, 0.8) 50%, rgba(42, 42, 69, 0) 100%);
    text-align: center;
    padding: 0;
}

.slot-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.slot-provider {
    color: #fffeff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.desktop-left-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 60px;
    height: 100vh;
    background-color: #1c1c34;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    z-index: 1001;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.left-menu-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border-radius: 8px;
    transition: background 0.2s;
    cursor: default;
    pointer-events: none;
}

.left-menu-item:hover {
    background-color: rgba(255,255,255,0.1);
}

.left-menu-item.menu-toggle-item {
    cursor: pointer;
    pointer-events: auto;
    width: 60px;
    height: 70px;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1002;
}

.left-icon {
    width: 22px;
    height: 22px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.menu-icon-desktop {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/></svg>');
}

.search-icon-desktop {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>');
}

.settings-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z"/></svg>');
}

.lightning-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M7 2v11h3v9l7-12h-4l4-8z"/></svg>');
}

.trophy-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M7 4V2C7 1.45 7.45 1 8 1H16C16.55 1 17 1.45 17 2V4H20.5C20.78 4 21 4.22 21 4.5V6.5C21 9.54 18.54 12 15.5 12H14.5L15.5 17.75C15.89 19.8 14.39 21.75 12.25 21.75H11.75C9.61 21.75 8.11 19.8 8.5 17.75L9.5 12H8.5C5.46 12 3 9.54 3 6.5V4.5C3 4.22 3.22 4 3.5 4H7Z"/></svg>');
}

.gift-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 6.76L10.26 5.02c-.78-.78-2.05-.78-2.83 0s-.78 2.05 0 2.83L12 12.42l4.57-4.57c.78-.78.78-2.05 0-2.83s-2.05-.78-2.83 0L12 6.76z"/><path d="M20 12v8c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-8h16z"/><rect x="4" y="8" width="16" height="4"/></svg>');
}

.grid-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"/></svg>');
}

.diamond-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M6 2l3 6 3-6 3 6 3-6v20l-6-4-6 4V2z"/></svg>');
}

.notebook-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V8l-4-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/></svg>');
}

.folder-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2h-8l-2-2z"/></svg>');
}

.desktop-left-menu .left-menu-item:not(.menu-toggle-item) {
    margin-top: 25px;
}

.desktop-left-menu .left-menu-item:not(.menu-toggle-item):first-of-type {
    margin-top: 75px;
}

.menu-toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.menu-toggle-btn span {
    width: 20px;
    height: 3px;
    background-color: #fcf9ff;
    margin: 2px auto;
    transition: 0.3s;
    border-radius: 1px;
    opacity: 1;
    display: block;
}

.desktop-left-menu .left-menu-item:not(.menu-toggle-item) {
    margin-top: 25px;
}

.text-content {
    background: #1c1c34;
    border-radius: 10px;
    padding: 80px 40px;
    margin-top: 100px;
    margin-bottom: 40px;
    max-width: 1205px;
    margin-left: auto;
    margin-right: auto;
}

.text-content article {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0 10px 0;
}

.text-content h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #4e4fe2 0%, #ffffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 42px 0;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 0 30px rgba(78, 79, 226, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    transition: all 0.3s ease;
}

.text-content h1::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff 0%, #4e4fe2 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(78, 79, 226, 0.4);
}

.text-content h1::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
    height: calc(100% + 10px);
    background: radial-gradient(ellipse at center, rgba(78, 79, 226, 0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.text-content h1:hover {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}

.text-content h1:hover::after {
    opacity: 1;
}

.text-content h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.text-content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 32px 0 16px 0;
    line-height: 1.4;
}

.text-content p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fcf9ff;
    line-height: 1.6;
    margin: 0 0 18px 0;
    opacity: 0.95;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.text-content a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-content a:hover {
    color: #fffeff;
    text-shadow: 0 0 8px rgba(48, 48, 202, 0.3);
}

.text-content .pros-cons-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.text-content .pros-cons-list li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #fcf9ff;
    line-height: 1.6;
}

.text-content .pros-cons-list ul {
    margin: 12px 0 20px 0;
    padding: 0;
    list-style: none;
}

.text-content .pros-cons-list ul li {
    position: relative;
    padding: 12px 16px 12px 50px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.text-content .pros-cons-list li:first-child ul li {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.2);
    color: #f0f9f4;
}

.text-content .pros-cons-list li:first-child ul li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.text-content .pros-cons-list li:first-child ul li:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(22, 163, 74, 0.15) 100%);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.2);
}

.text-content .pros-cons-list li:last-child ul li {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: rgba(239, 68, 68, 0.2);
    color: #fef2f2;
}

.text-content .pros-cons-list li:last-child ul li::before {
    content: '✗';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.text-content .pros-cons-list li:last-child ul li:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2);
}

.text-content .pros-cons-list > li:first-child {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.text-content .pros-cons-list > li:last-child {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.text-content .pros-cons-list > li > ul::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

@media (max-width: 768px) {
    .text-content .pros-cons-list > li:first-child,
    .text-content .pros-cons-list > li:last-child {
        font-size: 18px;
    }
    
    .text-content .pros-cons-list ul li {
        padding: 10px 12px 10px 42px;
        font-size: 14px;
    }
    
    .text-content .pros-cons-list li:first-child ul li::before,
    .text-content .pros-cons-list li:last-child ul li::before {
        left: 12px;
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .text-content .pros-cons-list > li:first-child,
    .text-content .pros-cons-list > li:last-child {
        font-size: 16px;
    }
    
    .text-content .pros-cons-list ul li {
        padding: 8px 10px 8px 38px;
        font-size: 13px;
    }
    
    .text-content .pros-cons-list li:first-child ul li::before,
    .text-content .pros-cons-list li:last-child ul li::before {
        left: 10px;
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

.text-content div[style*="overflow-x: auto"] {
    margin: 20px 0 24px 0;
    padding: 0;
    border-radius: 10px;
}

.text-content div[style*="overflow-x: auto"] .casino-table {
    margin: 0;
}

.casino-table {
    width: 100%;
    background: linear-gradient(135deg, #4e4fe2 0%, #1a0d33 50%, #4e4fe2 100%);
    border-radius: 10px;
    border-collapse: collapse;
    margin: 20px 0 40px 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    min-width: 600px;
    border: 0px solid rgba(255,255,255,0.1);
}

.casino-table thead {
    background: linear-gradient(90deg, #4e4fe2 0%, #19192d 50%, #4e4fe2 100%);
    position: relative;
    overflow: hidden;
}

.casino-table thead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(167, 163, 255, 0.15) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.casino-table thead:hover::before {
    opacity: 1;
}

.casino-table thead:hover {
    background: rgba(167, 163, 255, 0.15);
}

.casino-table th {
    padding: 24px 28px;
    text-align: left;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-bottom: 2px solid rgba(46,48,69,0.8);
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: rgba(78, 79, 226, 0.3);
    transition: none !important;
    transform: none !important;
}

.casino-table thead tr {
    transition: none !important;
    transform: none !important;
}

.casino-table thead tr:hover {
    background: transparent !important;
    transform: none !important;
}

.casino-table tbody tr:hover {
    background: rgba(229, 196, 12, 0.1);
    transform: scale(1.01);
}

.casino-table tbody tr:first-child:hover {
    transform: none !important;
    background: rgba(42, 23, 88, 0.3) !important; 
}

.casino-table tbody tr:first-child:hover th {
    background: rgba(167, 163, 255, 0.08) !important;
}

.casino-table tbody tr:nth-child(even):hover {
    background: rgba(229, 196, 12, 0.15);
}

.casino-table tbody tr:last-child td {
    border-bottom: none;
}

.casino-table td {
    padding: 16px 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #fcf9ff;
    border-bottom: 1px solid rgba(46,48,69,0.8);
    transition: background 0.2s;
    white-space: nowrap;
    background: rgba(16,16,29,0.8);
}

.casino-table tbody tr {
    transition: background 0.2s;
    background: rgba(42, 23, 88, 0.3);
}

.casino-table tbody tr:nth-child(even) {
    background: rgba(42, 23, 88, 0.5);
}

@media (max-width: 768px) {
    .casino-table {
        min-width: 500px;
    }
    
    .casino-table th {
        padding: 18px 22px;
        font-size: 14px;
    }
    
    .casino-table td {
        padding: 16px 22px;
        font-size: 14px;
    }
    
    .text-content div[style*="overflow-x: auto"] {
        scrollbar-width: thin;
        scrollbar-color: #ffffff #2a1758;
    }
    
    .text-content div[style*="overflow-x: auto"]::-webkit-scrollbar {
        height: 8px;
    }
    
    .text-content div[style*="overflow-x: auto"]::-webkit-scrollbar-track {
        background: #2a1758;
        border-radius: 4px;
        margin: 0 5px;
    }
    
    .text-content div[style*="overflow-x: auto"]::-webkit-scrollbar-thumb {
        background: #ffffff;
        border-radius: 4px;
    }
    
    .text-content div[style*="overflow-x: auto"]::-webkit-scrollbar-thumb:hover {
        background: #fffeff;
    }
}

@media (max-width: 480px) {
    .casino-table {
        min-width: 450px;
    }
    
    .casino-table th {
        padding: 16px 18px;
        font-size: 13px;
    }
    
    .casino-table td {
        padding: 14px 18px;
        font-size: 13px;
    }
    
    .text-content div[style*="overflow-x: auto"]::-webkit-scrollbar {
        height: 6px;
    }
}

.faq-container {
    margin-top: 24px;
}

.faq-item {
    background: linear-gradient(135deg, #1d1d44 0%, #12122c 50%, #10101d 100%);
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: rgba(167, 163, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(167, 163, 255, 0.15) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question:hover {
    background: rgba(167, 163, 255, 0.15);
}

.faq-question h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.3px;
    flex: 1;
    padding-right: 16px;
}

.faq-arrow {
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #4e4fe2;
}

.faq-answer {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.03);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    opacity: 1;
    height: auto;
    transform: scaleY(1);
    padding: 16px 24px 24px 24px;
}

.faq-answer p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fcf9ff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 12px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 16px 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        padding-right: 10px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 16px 16px 16px 16px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .faq-arrow {
        font-size: 14px;
    }
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.review-card {
    background: rgba(78, 79, 226, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff 0%, #4e4fe2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border-color: rgba(229, 196, 12, 0.3);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
}

.reviewer-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.stars {
    font-size: 16px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.rating-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #fffeff;
    opacity: 0.8;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #fcf9ff;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-name {
        font-size: 16px;
    }
    
    .stars {
        font-size: 14px;
    }
    
    .rating-text {
        font-size: 12px;
    }
    
    .review-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 16px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .review-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    body {
        padding-left: 0;
    }
    
    .desktop-left-menu {
        display: none;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px 0;
    padding: 0;
}

.contact-card {
    background: linear-gradient(135deg, #10101d 0%, #16213e 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4e4fe2, #1c1c34, #10101d);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    border-color: #4e4fe2;
}

.contact-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, #4e4fe2, #1c1c34);
    position: relative;
}

.email-icon::after {
    content: '✉';
    color: white;
    font-size: 22px;
}

.partners-icon::after {
    content: '🤝';
    font-size: 22px;
}

.chat-icon::after {
    content: '💬';
    font-size: 22px;
}

.contact-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.contact-card p {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #4e4fe2, #1c1c34);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 12px;
}

.contact-link:hover {
    background: linear-gradient(135deg, #4e4fe2, #1c1c34);
    transform: scale(1.05);
	color: white;
    box-shadow: 0 6px 15px rgba(48, 48, 205, 0.3);
}

.chat-btn {
    cursor: pointer;
}

@media (max-width: 968px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 25px 0;
    }
    
    .contact-card {
        padding: 20px;
        min-height: auto;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .contact-link {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.content-img,
.text-content img {
    max-width: 400px;
    max-height: 350px;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    float: right;
    margin: 0 0 20px 30px;
    border: 2px solid rgba(255,255,255,0.1);
}

.content-img + h2,
.content-img + h3 {
    clear: none;
    margin-top: 32px;
}

.content-img + p {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .content-img,
    .text-content img {
        float: none;
        max-width: 100%;
        max-height: 400px;
        margin: 20px auto;
        display: block;
    }
    
    .content-img + h2,
    .content-img + h3 {
        clear: none;
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .content-img,
    .text-content img {
        max-height: 300px;
        margin: 16px auto;
    }
    
    .content-img + h2,
    .content-img + h3 {
        clear: none;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .footer-column {
        margin-bottom: 16px;
    }
    
    .footer-column .footer-title {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .footer-column li {
        margin-bottom: 10px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-info p {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    footer {
        padding: 32px 0 20px 0;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column .footer-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-column a {
        font-size: 14px;
    }
    
    .footer-bottom {
        gap: 12px;
        padding-top: 16px;
    }
    
    .footer-info p {
        font-size: 10px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    footer {
        padding: 24px 0 16px 0;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: 140px;
        height: 26px;
    }
    
    .logo-text {
        font-size: 18px;
        margin-left: 6px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 120px;
        height: 22px;
    }
    
    .logo-text {
        font-size: 16px;
        margin-left: 5px;
    }
}

.breadcrumb {
    background-color: rgba(48, 48, 89, 0.5);
    padding: 15px 0;
    margin-top: 70px;
	border-top: 1px solid rgba(167, 163, 255, 0.1);
    border-bottom: 1px solid rgba(167, 163, 255, 0.1);
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fffeff;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 12px;
    color: rgba(167, 163, 255, 0.6);
    font-size: 16px;
}

.breadcrumb-item a {
    color: #fffeff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #fcf9ff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb-item {
        font-size: 12px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 8px;
        font-size: 14px;
    }
}
.live-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.live-filters label {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #f3f3f3;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}