
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0c0c14 0%, #1a1a2e 50%, #0c0c14 100%);
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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


header {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(231, 76, 60, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid rgba(231, 76, 60, 0.3);
    height: 75px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow-x: hidden;
    min-width: 0;
}


.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    
    border-radius: 8px;
    
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s;
    height: 50px;
    text-decoration: none;
    min-width: 0;
}

.logo-placeholder:hover {
    transform: scale(1.05);
}

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

.logo-placeholder:hover::before {
    left: 100%;
}

.logo-icon {
    font-size: 20px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    justify-content: center;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: white;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 9px;
    color: #ffd700;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-top: 1px;
    text-transform: uppercase;
}

.logo-image {
    height: 100%;
    width: auto;
    max-height: 35px;
    object-fit: contain;
}


.header-buttons {
    display: none;
    align-items: center;
    gap: 12px;
    flex-shrink: 1;
    margin-left: 15px;
    min-width: 0;
    overflow: hidden;
}


.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex: 1;
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

.header-nav a {
    text-decoration: none;
    color: #ddd;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.header-nav a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-1px);
}

.header-nav a i {
    font-size: 11px;
    color: #e74c3c;
    flex-shrink: 0;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}


.download-btn,
.register-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
    position: relative;
    overflow: hidden;
    flex-shrink: 1;
    height: 42px;
    min-width: 0;
}

.download-btn {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: white;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.6);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    text-decoration: none;
}

.register-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.5);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.7);
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    text-decoration: none;
}


.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(44, 62, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(44, 62, 80, 0); }
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 16px;
    color: #ffd700;
    cursor: pointer;
    padding: 8px 15px;
    z-index: 1002;
    transition: transform 0.3s;
    flex-shrink: 0;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
    background: rgba(231, 76, 60, 0.2);
}

.mobile-menu-btn i {
    font-size: 18px;
}


.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.95);
    z-index: 1001;
    justify-content: flex-end;
}

.mobile-menu {
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 3px solid #e74c3c;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #ddd;
    font-size: 16px;
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-links a:hover {
    background: rgba(231, 76, 60, 0.2);
    color: #ffd700;
    transform: translateX(5px);
}

.mobile-menu-links a i {
    width: 20px;
    text-align: center;
    color: #e74c3c;
    font-size: 18px;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu-buttons a {
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #ffd700;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-menu-btn:hover {
    transform: rotate(90deg);
}


.video-hero {
    position: relative;
    width: 100%;
    height: 478px;
    overflow: hidden;
    margin-top: 75px;
}

.video-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.desktop-bg {
    display: block;
}

.mobile-bg {
    display: none;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.video-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 478px;
    color: white;
    text-align: left;
    max-width: 600px;
}

.video-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

.video-hero-bonus {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    width: 100%;
}

.video-bonus-percent {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.video-bonus-fs {
    font-size: 3.5rem;
    font-weight: 900;
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
    letter-spacing: 1px;
}

.video-hero-button {
    background: linear-gradient(45deg, #ff3366, #ff6633);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.5);
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
}

.video-hero-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.7);
}

.video-hero-button:active {
    transform: translateY(1px);
}


.side-menu {
    position: fixed;
    left: 0;
    top: 75px;
    width: 250px;
    height: calc(100vh - 75px);
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-right: 2px solid rgba(231, 76, 60, 0.2);
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.3s ease;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.side-menu-inner {
    padding: 0 15px;
}

.side-menu-section {
    margin-bottom: 25px;
}

.side-menu-title {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 15px;
    opacity: 0.8;
}

.side-menu-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.side-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: #ddd;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.side-menu-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: translateX(5px);
}

.side-menu-link.active {
    background: rgba(231, 76, 60, 0.2);
    color: #ffd700;
    border-left: 3px solid #e74c3c;
}

.side-menu-link i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: #e74c3c;
}

.side-menu-link.active i {
    color: #ffd700;
}

.side-menu-toggle {
    display: none;
    position: absolute;
    top: 20px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    border-radius: 0 8px 8px 0;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.side-menu-toggle:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
}


.hero,
.slots-section,
.pinco-casino-image-section,
.bonus-section,
.other-promotions-section,
footer {
    margin-left: 250px;
    transition: margin-left 0.3s ease;
    padding-top: 75px;
}


.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(90deg, #ffd700, #e74c3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-amount {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 20px 35px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

.primary-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.7);
}

.secondary-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border: 2px solid #ffd700;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.4);
}

.secondary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.6);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}




.slots-section {
    padding: 80px 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.slot-item {
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.9) 0%, rgba(20, 20, 35, 0.9) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.slot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.slot-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: rgba(20, 20, 35, 0.5);
}

.slot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slot-item:hover .slot-image {
    transform: scale(1.05);
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
}

.slot-item:hover .slot-overlay {
    opacity: 1;
}

.btn {
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 120px;
    text-align: center;
}

.btn-play {
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-play:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.btn-demo {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-demo:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.slot-info {
    
    text-align: center;
}

.slot-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 36px;
    font-size: 13px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.pinco-casino-image-section {
    padding: 80px 0;
}

.pinco-casino-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    background: linear-gradient(135deg, #0c0c14 0%, #1a1a2e 50%, #0c0c14 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.pinco-casino-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
}

.pinco-casino-image-link {
    display: block;
    width: 100%;
}

.pinco-casino-image {
    width: 100%;
    height: auto;
    max-height: 834px;
    object-fit: contain;
    display: block;
}


.bonus-section {
    padding: 80px 0 40px;
}

.bonus-header {
    text-align: center;
    margin-bottom: 40px;
}

.bonus-main-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    background: linear-gradient(90deg, #ffd700, #e74c3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bonus-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


.bonus-large-image-container {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-large-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
}

.bonus-large-image-link {
    display: block;
    width: 100%;
}

.bonus-large-image {
    width: 100%;
    height: 209px;
    object-fit: cover;
    display: block;
}


.bonus-small-images-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.bonus-small-image-link {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    height: 422px;
}

.bonus-small-image-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
}

.bonus-small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-small-image-link:hover .bonus-small-image {
    transform: scale(1.05);
}


.all-tournaments-button-container {
    text-align: center;
    margin-bottom: 60px;
}

.all-tournaments-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    min-width: 220px;
}

.all-tournaments-btn:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 215, 0, 0.5);
}

.all-tournaments-btn i {
    font-size: 1.4rem;
}


.other-promotions-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    background: linear-gradient(90deg, #ffd700, #e74c3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.other-promotions-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.other-promotion-link {
    display: block;
    width: calc(50% - 15px);
    max-width: 629px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.other-promotion-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
}

.other-promotion-image {
    width: 100%;
    height: 354px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.other-promotion-link:hover .other-promotion-image {
    transform: scale(1.05);
}


footer {
    background: linear-gradient(135deg, #0c0c14 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 3px solid rgba(231, 76, 60, 0.3);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #ffd700;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #ffd700);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-links a i {
    color: #e74c3c;
    font-size: 12px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #bdc3c7;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-item i {
    color: #ffd700;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    width: fit-content;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.security-badge i {
    color: #27ae60;
    font-size: 20px;
}

.security-badge span {
    color: #f0f0f0;
    font-weight: 500;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.social-icon:hover {
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    transform: translateY(-3px);
    color: white;
    border-color: transparent;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    width: 100%;
    max-width: 220px;
    text-decoration: none;
}

.app-badge:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
    color: white;
    text-decoration: none;
}

.app-badge i {
    font-size: 32px;
    color: #ffd700;
}

.app-text {
    display: flex;
    flex-direction: column;
}

.app-label {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 2px;
}

.app-name {
    font-weight: 600;
    font-size: 16px;
}

.google-play {
    background: rgba(255, 255, 255, 0.05);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #888;
    font-size: 0.9rem;
}

.warning {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #e74c3c;
}


@media (max-width: 1200px) {
    .header-nav {
        display: none;
    }
    
    .header-right {
        display: none;
    }
    
    .header-buttons {
        display: flex;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .header-top {
        padding: 0 15px;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-shrink: 0;
    }
    
    .side-menu {
        transform: translateX(-100%);
        width: 280px;
        box-shadow: none;
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .side-menu.active {
        transform: translateX(0);
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .hero,
    .slots-section,
    .pinco-casino-image-section,
    .bonus-section,
    .other-promotions-section,
    footer {
        margin-left: 0;
        padding-top: 70px;
    }
    
    .video-hero {
        margin-top: 70px;
    }
    
    header {
        height: 70px;
    }
    
    .side-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column:first-child {
        grid-column: 1;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .contact-item {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .social-icons {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .security-badge {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .app-badge {
        max-width: 100%;
        padding: 12px 15px;
    }
    
    .copyright {
        font-size: 0.85rem;
        padding-top: 20px;
    }
    
    .copyright p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .video-hero-content {
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    .slot-image-wrapper {
        height: 140px;
    }
    
    .bonus-small-images-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .bonus-small-image-link {
        height: 350px;
    }
    
    .bonus-large-image {
        height: 180px;
    }
    
    .pinco-casino-image {
        max-height: 600px;
    }
    
    .other-promotion-link {
        width: calc(50% - 15px);
    }
    
    .other-promotion-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    header {
        height: 65px;
    }
    
    .header-top {
        padding: 0 15px;
    }
    
    .side-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .hero,
    .slots-section,
    .pinco-casino-image-section,
    .bonus-section,
    .other-promotions-section,
    footer {
        padding-top: 65px;
    }
    
    .video-hero {
        margin-top: 65px;
    }
    
    .side-menu-toggle {
        right: -40px;
    }
    
    .video-hero-content {
        max-width: 500px;
    }
    
    .mobile-menu-btn {
        padding: 6px 12px;
        font-size: 14px;
        gap: 6px;
        margin-left: 15px;
    }
    
    .mobile-menu-btn i {
        font-size: 16px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .slot-image-wrapper {
        height: 150px;
    }
    
    .bonus-main-title {
        font-size: 2.4rem;
    }
    
    .bonus-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .bonus-small-images-container {
        gap: 20px;
    }
    
    .bonus-small-image-link {
        height: 300px;
    }
    
    .bonus-large-image {
        height: 160px;
    }
    
    .all-tournaments-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .pinco-casino-image {
        max-height: 500px;
    }
    
    .other-promotion-link {
        width: calc(50% - 15px);
    }
    
    .other-promotion-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    header {
        height: 60px;
    }
    
    .header-top {
        padding: 0 15px;
    }
    
    .logo-placeholder {
        height: 45px;
        padding: 6px 10px;
    }
    
    .logo-image {
        max-height: 30px;
    }
    
    .header-buttons {
        gap: 8px;
        margin-left: 10px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .header-buttons .download-btn,
    .header-buttons .register-btn {
        padding: 8px 10px;
        font-size: 10px;
        height: 38px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .header-buttons .download-btn,
    .header-buttons .register-btn {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-buttons .download-btn i,
    .header-buttons .register-btn i {
        flex-shrink: 0;
    }
    
    .logo-main {
        font-size: 18px;
    }
    
    .logo-sub {
        font-size: 8px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .side-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .hero,
    .slots-section,
    .pinco-casino-image-section,
    .bonus-section,
    .other-promotions-section,
    footer {
        padding-top: 60px;
    }
    
    .video-hero {
        height: 473px;
        margin-top: 60px;
    }
    
    .video-hero-content {
        height: 473px;
        max-width: 400px;
    }

    .video-hero-title {
        font-size: 3rem;
    }

    .video-bonus-percent {
        font-size: 2rem;
    }

    .video-bonus-fs {
        font-size: 2.5rem;
    }

    .video-hero-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .desktop-bg {
        display: none;
    }
    
    .mobile-bg {
        display: block;
    }
    
    .mobile-menu-btn {
        padding: 5px 10px;
        font-size: 13px;
        gap: 5px;
        margin-left: 10px;
    }
    
    .mobile-menu-btn i {
        font-size: 14px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .slot-image-wrapper {
        height: 160px;
        background: rgba(20, 20, 35, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slot-image {
        object-fit: contain;
        object-position: center;
    }
    
    .btn {
        padding: 7px 12px;
        font-size: 11px;
        max-width: 100px;
    }
    
    .slot-name {
        font-size: 12px;
    }
    
    .pinco-casino-image-section {
        padding: 60px 0;
    }
    
    .pinco-casino-image {
        max-height: 400px;
    }
    
    .bonus-section {
        padding: 60px 0 30px;
    }
    
    .bonus-main-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .bonus-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .bonus-large-image-container {
        margin-bottom: 30px;
        border-radius: 10px;
    }
    
    .bonus-large-image {
        height: 140px;
    }
    
    .bonus-small-images-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .bonus-small-image-link {
        height: 250px;
        border-radius: 10px;
    }
    
    .all-tournaments-button-container {
        margin-bottom: 40px;
    }
    
    .all-tournaments-btn {
        padding: 14px 30px;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .other-promotions-section {
        padding: 60px 0;
    }
    
    .other-promotions-container {
        flex-direction: column;
        align-items: center;
    }
    
    .other-promotion-link {
        width: 100%;
        max-width: 629px;
        margin-bottom: 20px;
    }
    
    .other-promotion-image {
        height: 250px;
    }
    
    
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .footer-links {
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .contact-item {
        font-size: 13px;
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .social-icons {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    .security-badge {
        padding: 8px 12px;
        font-size: 11px;
        width: 100%;
        max-width: 100%;
    }
    
    .security-badge span {
        font-size: 12px;
    }
    
    .app-badge {
        max-width: 100%;
        padding: 10px 12px;
    }
    
    .app-badge i {
        font-size: 28px;
    }
    
    .app-label {
        font-size: 11px;
    }
    
    .app-name {
        font-size: 14px;
    }
    
    .copyright {
        font-size: 0.8rem;
        padding-top: 15px;
    }
    
    .copyright p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .warning {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    header {
        height: 55px;
    }
    
    .header-top {
        padding: 0 10px;
    }
    
    .logo-placeholder {
        height: 40px;
        padding: 5px 8px;
    }
    
    .logo-image {
        max-height: 28px;
    }
    
    .header-buttons {
        gap: 6px;
        margin-left: 8px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .header-buttons .download-btn,
    .header-buttons .register-btn {
        padding: 6px 8px;
        font-size: 9px;
        height: 35px;
        flex-shrink: 1;
        min-width: 0;
        max-width: 120px;
    }
    
    .header-buttons .download-btn i,
    .header-buttons .register-btn i {
        font-size: 10px;
        flex-shrink: 0;
    }
    
    .header-top {
        padding: 0 10px;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 7px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mobile-menu {
        width: 100%;
    }
    
    .side-menu {
        top: 55px;
        height: calc(100vh - 55px);
    }
    
    .hero,
    .slots-section,
    .pinco-casino-image-section,
    .bonus-section,
    .other-promotions-section,
    footer {
        padding: 25px 0 15px;
        padding-top: 55px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .footer-column {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-logo .logo-placeholder {
        max-width: 100%;
    }
    
    .footer-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .footer-links {
        gap: 6px;
    }
    
    .footer-links a {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .contact-item {
        font-size: 12px;
        margin-bottom: 8px;
        gap: 8px;
    }
    
    .contact-item i {
        font-size: 14px;
        width: 18px;
    }
    
    .social-icons {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .security-badge {
        padding: 6px 10px;
        font-size: 10px;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .security-badge i {
        font-size: 16px;
    }
    
    .security-badge span {
        font-size: 11px;
    }
    
    .app-badge {
        max-width: 100%;
        padding: 8px 10px;
    }
    
    .app-badge i {
        font-size: 24px;
    }
    
    .app-label {
        font-size: 10px;
    }
    
    .app-name {
        font-size: 13px;
    }
    
    .copyright {
        font-size: 0.75rem;
        padding-top: 12px;
    }
    
    .copyright p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .warning {
        font-size: 0.65rem;
        margin-top: 8px;
    }
    
    .video-hero {
        margin-top: 55px;
        height: 400px;
    }
    
    .video-hero-content {
        height: 400px;
        max-width: 100%;
        padding: 0 20px;
    }

    .video-hero-title {
        font-size: 2.2rem;
    }

    .video-bonus-percent {
        font-size: 1.5rem;
    }

    .video-bonus-fs {
        font-size: 1.8rem;
    }

    .video-hero-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .mobile-menu-btn span {
        display: none;
    }
    
    .mobile-menu-btn {
        padding: 5px 8px;
        margin-left: 5px;
    }
    
    .mobile-menu-btn i {
        font-size: 16px;
        margin: 0;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .slot-image-wrapper {
        height: 180px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 12px;
        max-width: 120px;
    }
    
    .slot-name {
        font-size: 13px;
    }
    
    .pinco-casino-image {
        max-height: 300px;
    }
    
    .bonus-small-images-container {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .bonus-small-image-link {
        height: 422px;
        max-width: 319px;
        margin: 0 auto;
    }
    
    .bonus-large-image {
        height: 120px;
    }
    
    .bonus-main-title {
        font-size: 1.8rem;
    }
    
    .all-tournaments-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .other-promotions-container {
        gap: 15px;
    }
    
    .other-promotion-image {
        height: 200px;
    }
}

@media (min-width: 1201px) {
    .header-buttons {
        display: none;
    }
    
    .header-right {
        display: flex;
    }
    
    .video-hero-content {
        margin-left: 250px;
    }
}

@media (max-width: 1200px) {
    .video-hero-content {
        margin-left: 0;
    }
}

/* Article section — текст о Пинко казино */
.article-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.4) 0%, rgba(12, 12, 20, 0.6) 100%);
}

.article-inner {
    max-width: 820px;
    margin: 0 auto;
}

.article-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.article-highlight {
    color: #ffd700;
    font-weight: 600;
}

.article-table-wrap {
    overflow-x: auto;
    margin-bottom: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(231, 76, 60, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.article-table th,
.article-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-table thead th {
    background: rgba(231, 76, 60, 0.2);
    color: #fff;
    font-weight: 600;
    text-transform: none;
}

.article-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.article-table tbody td {
    color: #d0d0d0;
}

.article-table tbody td strong {
    color: #ffd700;
    font-weight: 600;
}

.article-table-risk {
    color: #e8a87c;
}

.article-block {
    margin-bottom: 2.5rem;
}

.article-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(231, 76, 60, 0.4);
}

.article-block p {
    margin-bottom: 1rem;
    color: #d0d0d0;
    line-height: 1.7;
}

.article-block p:last-child {
    margin-bottom: 0;
}

.article-block strong {
    color: #f0f0f0;
    font-weight: 600;
}

.article-list {
    margin: 0.75rem 0 1.25rem 1.5rem;
    padding: 0;
    list-style: none;
}

.article-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: #e74c3c;
    border-radius: 50%;
}

.article-block-conclusion {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(231, 76, 60, 0.08);
    border-left: 4px solid rgba(231, 76, 60, 0.6);
}

@media (max-width: 768px) {
    .article-section {
        padding: 40px 0 60px;
    }

    .article-table th,
    .article-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .article-h2 {
        font-size: 1.3rem;
    }
}