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

:root {
    --primary-red: #DC2626;
    --dark-gray: #1F2937;
    --light-gray: #F3F4F6;
    --medium-gray: #6B7280;
    --white: #FFFFFF;
    --black: #000000;
    --red-hover: #B91C1C;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    text-transform: uppercase;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    max-height: 40px;
    width: auto;
}

.logo-icon {
    font-size: 32px;
    filter: hue-rotate(0deg) saturate(2);
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    bottom: -2px;
    left: 0;
    border-radius: 2px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-register,
.btn-login {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-register {
    background: var(--primary-red);
    color: var(--white);
}

.btn-register:hover {
    background: var(--red-hover);
}

.btn-login {
    background: var(--white);
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
}

.btn-login:hover {
    background: var(--light-gray);
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    width: 220px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 8px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    text-decoration: none;
    color: var(--dark-gray);
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 15px;
}

.nav-item:hover {
    background: var(--light-gray);
}

.nav-item.active {
    background: var(--light-gray);
}

.nav-item.active .nav-icon {
    filter: grayscale(0);
}

.nav-icon {
    font-size: 20px;
    filter: grayscale(1);
}

.nav-text {
    font-weight: 500;
}

/* Main Content */
.main-content {
    flex: 1;
    min-width: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: inline;
}

.breadcrumb-item {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item:hover {
    color: var(--primary-red);
}

.breadcrumb-separator {
    color: var(--medium-gray);
}

.breadcrumbs span[aria-current="page"] {
    color: var(--dark-gray);
}

/* Banners Section */
.banners-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 40px;
    overflow: hidden;
    border-radius: 12px;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.banner-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.95;
}

.banner-btn {
    background: var(--white);
    color: var(--primary-red);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.banner-legal {
    font-size: 11px;
    color: var(--white);
    opacity: 0.8;
    margin-top: 15px;
}

.banner-illustration {
    font-size: 120px;
    opacity: 0.3;
    z-index: 1;
}

/* Slots Section */
.slots-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-gray);
    text-transform: uppercase;
}

.section-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-red);
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-gray);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.slot-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.slot-card:hover .slot-buttons,
.slot-card.touch-active .slot-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.slot-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slot-card:nth-child(1) .slot-image {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.slot-card:nth-child(2) .slot-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slot-card:nth-child(3) .slot-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slot-card:nth-child(4) .slot-image {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

.slot-card:nth-child(5) .slot-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.slot-card:nth-child(6) .slot-image {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.slot-title,
.slot-name {
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
    line-height: 1.4;
}

.slot-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: flex;
    gap: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.slot-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
    white-space: nowrap;
}

.slot-btn-demo {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.slot-btn-demo:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.slot-btn-real {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-hover) 100%);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.slot-btn-real:hover {
    background: linear-gradient(135deg, var(--red-hover) 0%, var(--primary-red) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.5);
}

.slot-info {
    padding: 15px;
}

.slot-description {
    font-size: 12px;
    color: var(--medium-gray);
    margin-top: 5px;
    text-align: center;
}

/* Text Section */
.text-section {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 12px;
}

.text-section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 20px;
    text-align: center;
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.content-container h1 {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.content-container h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 30px 0 15px;
}

.content-container p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Image Styles */
.content-container img,
.text-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-container img:hover,
.text-content img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.content-image-wrapper {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.content-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.content-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Table Styles - Stylish Design */
.content-container table,
.text-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.content-container table caption,
.text-content table caption {
    caption-side: top;
    font-size: 20px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 15px;
    text-align: left;
    padding: 0 5px;
}

.content-container thead,
.text-content thead {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-hover) 100%);
}

.content-container th,
.text-content th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
}

.content-container th:not(:last-child),
.text-content th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.content-container tbody tr,
.text-content tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(220, 38, 38, 0.08);
}

.content-container tbody tr:hover,
.text-content tbody tr:hover {
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
    transform: translateX(2px);
    box-shadow: inset 4px 0 0 var(--primary-red);
}

.content-container tbody tr:last-child,
.text-content tbody tr:last-child {
    border-bottom: none;
}

.content-container td,
.text-content td {
    padding: 16px 20px;
    text-align: left;
    border: none;
    color: var(--dark-gray);
    font-size: 15px;
    vertical-align: middle;
}

.content-container tbody tr:nth-child(even),
.text-content tbody tr:nth-child(even) {
    background: rgba(243, 244, 246, 0.3);
}

.content-container tbody tr:nth-child(even):hover,
.text-content tbody tr:nth-child(even):hover {
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
}

.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* List Styles */
.content-container ul,
.content-container ol,
.text-content ul,
.text-content ol {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.content-container ul li,
.text-content ul li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    line-height: 1.8;
    color: var(--dark-gray);
    font-size: 16px;
}

.content-container ul li::before,
.text-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
}

.content-container ol,
.text-content ol {
    counter-reset: list-counter;
}

.content-container ol li,
.text-content ol li {
    margin-bottom: 12px;
    padding-left: 40px;
    position: relative;
    line-height: 1.8;
    color: var(--dark-gray);
    font-size: 16px;
    counter-increment: list-counter;
}

.content-container ol li::before,
.text-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    top: 2px;
}

.list-item {
    margin: 25px 0;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

/* Blockquote Styles */
.content-container blockquote,
.text-content blockquote {
    border-left: 5px solid var(--primary-red);
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    color: var(--dark-gray);
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
    border-radius: 0 12px 12px 0;
    position: relative;
    font-size: 17px;
    line-height: 1.8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-container blockquote::before,
.text-content blockquote::before {
    content: '"';
    position: absolute;
    left: 15px;
    top: 10px;
    font-size: 60px;
    color: var(--primary-red);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.content-container blockquote::after,
.text-content blockquote::after {
    content: '"';
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 60px;
    color: var(--primary-red);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* HowTo Styles */
.howto-container {
    margin: 30px 0;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.howto-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
    margin: 0;
}

.howto-step {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding: 25px 25px 25px 85px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.howto-step:hover {
    border-color: var(--primary-red);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
}

.howto-step:last-child {
    margin-bottom: 0;
}

.howto-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 25px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-hover) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.howto-step strong {
    display: block;
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 700;
}

.howto-step p {
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* FAQ Styles */
.faq-container {
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
    transform: translateY(-2px);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.faq-question::before {
    content: '?';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.faq-answer {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.8;
    padding-left: 30px;
}

/* Content Container h2 styling */
.content-container h2,
.text-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-red);
    position: relative;
}

.content-container h2::after,
.text-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--red-hover);
}

.content-container h1,
.text-content h1 {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.content-container h1::after,
.text-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

/* Links in content */
.content-container a,
.text-content a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.content-container a:hover,
.text-content a:hover {
    border-bottom-color: var(--primary-red);
    color: var(--red-hover);
}

/* Payments Section */
.payments-section {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--light-gray);
}

.payments-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 30px;
    text-align: center;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.payment-item:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    border-color: var(--white);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.payment-item:hover .payment-icon,
.payment-item:hover .payment-name {
    color: var(--white);
    transform: scale(1.1);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.payment-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
}

.payment-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
    transition: all 0.3s;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.social-links ul,
.payment-methods ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links li,
.payment-methods li {
    margin: 0;
}

.payment-methods img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-methods img:hover {
    opacity: 1;
}

.footer-buttons {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.footer-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.footer-btn.primary {
    background: var(--primary-red);
    color: var(--white);
}

.footer-btn.primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
}

.footer-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.footer-btn.secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
}

.footer-btn.accent {
    background: var(--white);
    color: var(--dark-gray);
}

.footer-btn.accent:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    margin-bottom: 15px;
}

.footer-licenses {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .nav-item {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .banners-section {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .banner {
        min-height: 250px;
        padding: 30px 20px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

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

    .btn-register,
    .btn-login {
        padding: 10px 16px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

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

    .footer-btn {
        width: 100%;
    }
    
    .slot-buttons {
        padding: 12px;
        gap: 8px;
    }
    
    .slot-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .slot-card:hover .slot-buttons,
    .slot-card.touch-active .slot-buttons {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sidebar-nav {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .nav-item {
        scroll-snap-align: start;
        flex-shrink: 0;
        scroll-margin: 0;
    }

    .nav-item:focus {
        outline: 2px solid var(--primary-red);
        outline-offset: -2px;
    }

    .sidebar-nav:focus-within {
        scroll-behavior: auto;
    }
}

@media (max-width: 480px) {
    .banner {
        min-height: 200px;
        padding: 20px 15px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .banner-subtitle {
        font-size: 14px;
    }
    
    .banner-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
