:root {
    --primary-color: rgba(255, 100, 4, 0.77);
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-5, .col-7, .col-12, .col-md-6, .col-md-4, .col-md-7, .col-md-10, .col-lg-7, .col-lg-8 {
    padding: 0 15px;
}

.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }

.h-100 { height: 100% !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.ml-auto { margin-left: auto !important; }
.ml-5 { margin-left: 3rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }

.top-header-area {
    background: var(--dark-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-header-area p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-header-area svg {
    margin-right: 5px;
}

.classy-nav-container {
    position: relative;
}

.classy-navbar {
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-brand svg {
    display: block;
}

.classy-navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
}

.navbarToggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

.classy-menu {
    display: flex;
    align-items: center;
}

.classycloseIcon {
    display: none;
}

.classynav {
    display: flex;
    align-items: center;
    gap: 30px;
}

#nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

#nav a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

#nav a:hover, #nav a.active {
    color: var(--primary-color);
}

#nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.akame-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.akame-btn:hover {
    background: var(--secondary-color);
}

.site-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.site-hero.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.site-hero-inner {
    position: relative;
    z-index: 2;
}

.heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.mouse {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-decoration: none;
    z-index: 2;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.mouse-wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

.site-section {
    padding: 80px 0;
}

.section-title-underline {
    position: relative;
    display: inline-block;
}

.section-title-underline span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.owl-slide-3 {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    width: calc(100% * 2);
    position: relative;
}

.course-1-item {
    flex: 0 0 calc(16.666% - 25px);
    min-width: 280px;
    max-width: 350px;
}

.thumnail {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin: 0;
}

.thumnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumnail:hover img {
    transform: scale(1.05);
}

.price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
}

.category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    margin: 0;
}

.category h3 {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.course-1-content {
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.course-1-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.rating {
    margin-bottom: 15px;
}

.icon-star2 {
    color: var(--warning-color);
    font-size: 16px;
    margin: 0 2px;
}

.desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.online-badge {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: var(--success-color);
    color: white;
}

.rounded-0 {
    border-radius: 0 !important;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.site-footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-unstyled li {
    margin-bottom: 10px;
}

.list-unstyled a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.list-unstyled a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info strong {
    color: white;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.header-area {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header-area {
    padding: 15px 0;
}

.logo-img a {
    display: inline-block;
}

.main-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    margin: 0 25px;
}

.main-menu ul li a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: var(--primary-color);
}

.main-menu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.book_btn a {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.book_btn a:hover {
    background: var(--secondary-color);
}

.mobile-menu-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.games-section {
    background: #fff;
}

.games-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.games-section p {
    font-size: 1.1rem;
    color: #64748b;
}

.game-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.platform {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.online-tag {
    color: var(--success-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.features-section {
    background: var(--light-color);
}

.services {
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.services:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.services .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.services .heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.services p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.btn-cta {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(3px);
}

.about-section {
    background: #fff;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content .lead {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    background: rgba(37, 99, 235, 0.1);
    padding: 12px;
    border-radius: 10px;
    flex-shrink: 0;
}

.about-feature h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.about-feature p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.about-image {
    position: relative;
}

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-stats {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.testimonials-section {
    background: var(--light-color);
}

.testimonials-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.stars {
    display: flex;
    gap: 4px;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-quote {
    border: none;
    padding: 0;
    margin: 20px 0;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-quote p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
    margin: 0;
}

.catalog-hero {
    background: linear-gradient(135deg, var(--light-color) 0%, #e2e8f0 100%);
    padding: 60px 0;
}

.catalog-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.catalog-hero .lead {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
}

.catalog-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-filter {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: white;
}

.catalog-games {
    background: var(--light-color);
}

.game-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.game-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.genre {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.add-to-order {
    width: 100%;
    transition: all 0.3s ease;
}

.add-to-order.added {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.order-section {
    background: #fff;
}

.order-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.order-form h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.selected-games {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    display: none;
}

.selected-games.show {
    display: block;
}

.selected-games h5 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.selected-game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.selected-game-item:last-child {
    border-bottom: none;
}

.game-name {
    font-weight: 500;
    color: var(--dark-color);
}

.game-price {
    color: var(--primary-color);
    font-weight: 600;
}

.remove-game {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.remove-game:hover {
    background: rgba(239, 68, 68, 0.1);
}

.order-total {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.order-total h5 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.privacy-hero {
    background: linear-gradient(135deg, var(--light-color) 0%, #e2e8f0 100%);
    padding: 60px 0;
}

.privacy-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.privacy-hero .lead {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
}

.privacy-meta {
    background: rgba(37, 99, 235, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.privacy-meta p {
    margin: 5px 0;
    color: var(--dark-color);
}

.privacy-content {
    background: #fff;
}

.privacy-text {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 25px 0 15px 0;
}

.privacy-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-section li strong {
    color: var(--dark-color);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-info-privacy {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}

.contact-item {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-section {
    background: var(--light-color);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.footer-section {
    background: var(--dark-color);
    color: #94a3b8;
    padding: 60px 0 30px;
}

.footer-section .link {
    padding: 0;
}

.footer-section .link li {
    margin-bottom: 12px;
}

.footer-section .link li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .link li a:hover {
    color: #fff;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info span.d-block {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    font-weight: 500;
}

.footer-newsletter {
    position: relative;
}

.footer-newsletter .form-group {
    position: relative;
    margin: 0;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #374151;
    border-radius: 6px;
    background: #374151;
    color: #fff;
}

.footer-newsletter input::placeholder {
    color: #9ca3af;
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter button:hover {
    background: var(--secondary-color);
}

.bordertop {
    border-top: 1px solid #374151;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex-grow: 1;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
}

.cookie-buttons .btn-primary:hover {
    background: var(--secondary-color);
}

.cookie-buttons .btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

#navigation.mobile-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    flex-direction: column;
}

#navigation.mobile-active li {
    margin: 10px 0;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .games-section h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .main-menu {
        display: none;
    }
    
    .mobile_menu {
        display: block;
    }
    
    #navigation {
        display: none;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-quote::before {
        font-size: 3rem;
        top: -5px;
        left: -10px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content .lead {
        font-size: 1rem;
    }
    
    .about-image-main img {
        height: 250px;
    }
    
    .about-stats {
        padding: 15px;
        bottom: -20px;
        left: 10px;
        right: 10px;
    }
    
    .stat-item h4 {
        font-size: 1.5rem;
    }
    
    .catalog-hero h1 {
        font-size: 2rem;
    }
    
    .catalog-hero .lead {
        font-size: 1rem;
    }
    
    .catalog-filters {
        justify-content: center;
        gap: 5px;
    }
    
    .btn-filter {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .order-form {
        padding: 25px;
    }
    
    .order-form h3 {
        font-size: 1.6rem;
    }
    
    .selected-games {
        padding: 15px;
    }
    
    .order-total {
        padding: 15px;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-hero .lead {
        font-size: 1rem;
    }
    
    .privacy-meta {
        padding: 15px;
    }
    
    .privacy-text {
        padding: 25px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section p {
        text-align: left;
    }
    
    .contact-info-privacy {
        padding: 20px;
    }
    
    .contact-item {
        padding: 12px;
    }
}

/* Cookies Page Styles */
.cookies-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cookies-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cookies-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cookies-meta {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: inline-block;
    margin-top: 1rem;
}

.cookies-meta p {
    margin: 0;
    font-size: 0.95rem;
}

.cookies-content {
    background: #f8f9fa;
    min-height: 70vh;
}

.cookies-text {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.cookies-section {
    margin-bottom: 3rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 2rem;
}

.cookies-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookies-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.cookies-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.cookies-section h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.cookies-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.cookies-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cookies-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookies-section li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.cookies-section li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-type {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.cookie-type h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.cookie-duration {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

.third-party-cookie {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.third-party-cookie:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.third-party-cookie h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.browser-instructions {
    background: #e3f2fd;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.browser-instructions h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.browser-guide {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-color);
}

.browser-guide h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.browser-guide p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.impact-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.impact-warning h3 {
    color: #b8860b;
    margin-top: 0;
}

.essential-note {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.essential-note p {
    margin: 0;
    color: white;
}

.data-protection {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.data-protection h3 {
    color: #155724;
    margin-top: 0;
}

.data-protection ul {
    margin-bottom: 0;
}

.data-protection li {
    color: #155724;
}

.contact-info-cookies {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.contact-item strong {
    color: white;
}

/* Responsive Design for Cookies Page */
@media (max-width: 768px) {
    .cookies-hero {
        padding: 2rem 0;
    }
    
    .cookies-hero h1 {
        font-size: 2rem;
    }
    
    .cookies-text {
        padding: 1.5rem;
    }
    
    .cookies-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-cookies {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .browser-instructions {
        padding: 1rem;
    }
    
    .cookie-type {
        padding: 1rem;
    }
}

/* Thank You Page Styles */
.thankyou-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.thankyou-content {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thankyou-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.success-icon {
    margin-bottom: 2rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thankyou-content h1 {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thankyou-content .lead {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.confirmation-details {
    margin: 3rem 0;
}

.confirmation-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.confirmation-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.step-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    text-align: left;
}

.step-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.contact-info-summary {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.contact-info-summary h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-option div:last-child {
    text-align: left;
}

.contact-option h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
}

.contact-option p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.action-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.recommended-games {
    background: #f8f9fa;
}

.recommended-games h2 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.recommended-games p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.game-card-small {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.game-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.game-card-small .game-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.game-card-small .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card-small:hover .game-image img {
    transform: scale(1.05);
}

.game-card-small .game-platform {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.game-card-small .game-platform.online {
    background: var(--accent-color);
}

.game-card-small .game-info {
    padding: 1.5rem;
}

.game-card-small .game-info h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.game-card-small .game-price {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.game-card-small .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thankyou-hero {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .thankyou-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content .lead {
        font-size: 1.1rem;
    }
    
    .confirmation-card {
        padding: 1.5rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-option {
        padding: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .game-card-small .game-image {
        height: 180px;
    }
    
    .game-card-small .game-info {
        padding: 1rem;
    }
}

/* Additional Mobile Styles for Main Page */
@media (max-width: 768px) {
    .classy-navbar-toggler {
        display: flex;
    }
    
    .classy-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        z-index: 9999;
        transition: right 0.3s ease;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .classy-menu.active {
        right: 0;
    }
    
    .classycloseIcon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        width: 30px;
        height: 30px;
    }
    
    .cross-wrap {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .cross-wrap span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--dark-color);
        top: 50%;
        left: 0;
    }
    
    .cross-wrap .top {
        transform: translateY(-50%) rotate(45deg);
    }
    
    .cross-wrap .bottom {
        transform: translateY(-50%) rotate(-45deg);
    }
    
    .classynav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    
    #nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    
    #nav li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    #nav li:last-child {
        border-bottom: none;
    }
    
    #nav a {
        display: block;
        padding: 15px 0;
        color: var(--dark-color);
    }
    
    .cart-icon, .book-now-btn {
        margin: 10px 0;
    }
    
    .col-5, .col-7 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .text-right {
        text-align: center !important;
    }
    
    .top-header-area .row {
        flex-direction: column;
        gap: 10px;
    }
    
    .heading {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .owl-slide-3 {
        flex-direction: column;
        gap: 20px;
    }
    
    .course-1-item {
        flex: 0 0 100%;
        min-width: auto;
    }
    
    .section-title-underline span {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-md-4, .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .ml-auto {
        margin-left: 0 !important;
    }
}

/* Counter Section Styles */
.counter-section {
    background: linear-gradient(135deg, var(--light-color), #f1f5f9);
    padding: 80px 0;
}

.counter-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.counter-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.counter-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
}

/* FAQ Section Styles */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-color);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="90" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="30" cy="70" r="0.3" fill="%23ffffff" opacity="0.1"/><circle cx="70" cy="30" r="0.3" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
}

.testimonials-section .section-title-underline span {
    color: white;
}

.testimonials-section p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    background: white;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.testimonial-quote:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.testimonial-quote.featured .quote-icon svg {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-quote.featured .quote-content p {
    color: white;
}

.testimonial-quote.featured .quote-rating {
    color: #ffd700;
}

.testimonial-quote.featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-quote.featured .author-details strong {
    color: white;
}

.testimonial-quote.featured .author-details span {
    color: rgba(255, 255, 255, 0.8);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 35px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote-content {
    margin-top: 20px;
    margin-bottom: 25px;
}

.quote-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 15px 0;
    font-style: italic;
}

.quote-rating {
    color: var(--warning-color);
    font-size: 1.3rem;
    text-align: center;
    margin-top: 15px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.testimonial-quote.featured .quote-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-details strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.author-details span {
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-quote {
        padding: 25px;
    }
    
    .quote-icon {
        left: 25px;
        width: 40px;
        height: 40px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Catalog Page Styles */
.breadcrumb-area {
    background: var(--light-color);
    padding: 20px 0;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

.catalog-section {
    padding: 80px 0;
}

/* Catalog Filters */
.catalog-filters {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-box {
    position: relative;
}

.search-box input {
    padding-right: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    height: 50px;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.platform-filter {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #666;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.sort-select {
    padding: 8px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    min-width: 180px;
}

.sort-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Catalog Stats */
.catalog-stats {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.results-count {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-btn:hover,
.view-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.catalog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.catalog-list .game-card {
    flex-direction: row;
    max-width: none;
}

.catalog-list .game-image {
    width: 200px;
    flex-shrink: 0;
}

.catalog-list .game-info {
    flex: 1;
    padding: 20px;
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: var(--success-color);
    color: white;
}

.badge-online {
    background: var(--info-color);
    color: white;
}

.badge-sale {
    background: var(--danger-color);
    color: white;
}

.platform-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.platform-badge.ps5 {
    background: #0070f3;
}

.platform-badge.xbox {
    background: #107c10;
}

.game-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.3;
}

.game-genre {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: var(--warning-color);
    font-size: 1rem;
}

.rating-value {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.game-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.game-price {
    margin-bottom: 15px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-right: 8px;
}

.current-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-buy {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    margin-top: auto;
}

/* Pagination */
.pagination {
    margin: 0;
}

.page-link {
    color: var(--primary-color);
    border: 1px solid #e5e7eb;
    padding: 10px 15px;
    margin: 0 2px;
    border-radius: 8px;
}

.page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-item.disabled .page-link {
    color: #999;
    background: #f8f9fa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .catalog-filters {
        padding: 20px;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .platform-filter {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalog-list .game-card {
        flex-direction: column;
    }
    
    .catalog-list .game-image {
        width: 100%;
        height: 200px;
    }
    
    .catalog-stats {
        text-align: center;
    }
    
    .view-toggle {
        justify-content: center;
                 margin-top: 15px;
     }
}

/* Order Form Section */
.order-form-section {
    background: var(--light-color);
    padding: 80px 0;
}

.order-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.selected-game {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.selected-game h4 {
    margin-bottom: 15px;
    color: white;
}

.game-info-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.game-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.game-price {
    font-size: 1.4rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

.order-form .form-group {
    margin-bottom: 25px;
}

.order-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
}

.order-form .form-control {
    height: 45px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.order-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
}

.order-form textarea.form-control {
    height: auto;
    resize: vertical;
    min-height: 100px;
}

.order-form select.form-control {
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    appearance: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-input {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-check-label {
    color: #666;
    line-height: 1.5;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.btn-order {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

/* Mobile Responsive for Order Form */
@media (max-width: 768px) {
    .order-form-card {
        padding: 25px;
    }
    
    .game-info-order {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .btn-order {
        width: 100%;
        min-width: auto;
    }
    
    .form-check {
                 align-items: flex-start;
     }
}

/* Order Game Info Styles for Thank You Page */
.order-game-info {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.order-game-info p {
    margin: 8px 0;
    color: white;
}

.order-game-info strong {
    color: white;
} 

/* Policy Pages Styles */
.policy-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 70vh;
}

.policy-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.policy-header {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 3rem;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.last-updated {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.policy-body {
    padding: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 2rem;
}

.policy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy-section h2 {
    color: #2563eb;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.policy-section h3 {
    color: #374151;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.policy-section h4 {
    color: #2563eb;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

.policy-section p {
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
    color: #4b5563;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.company-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
    margin: 1rem 0;
}

.contact-info-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.contact-method h4 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0;
    color: #4b5563;
}

.policy-footer {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.policy-footer p:last-child {
    margin: 0;
}

@media (max-width: 768px) {
    .policy-header {
        padding: 2rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-body {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-block {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
}

/* Additional breadcrumb styles for policy pages */
.breadcrumb-area {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: #94a3b8;
}

.breadcrumb-item a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #60a5fa;
}

.breadcrumb-item.active {
    color: #60a5fa;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #94a3b8;
    font-weight: bold;
}