/* OrpHelyra Cosmic Stylesheet - Custom Design Implementation */

/* CSS Variables - Ocean-themed color palette */
:root {
    --ocean-blue: #ff006e;
    --ocean-light: #ffe6f2;
    --ocean-deep: #b8004f;
    --forest-green: #2c5530;
    --forest-light: #e8f5e8;
    --sunset-orange: #e68a00;
    --sunset-light: #fff2e0;
    --sky-purple: #6c5ce7;
    --sky-light: #f0efff;
    --neutral-stone: #4a4a4a;
    --neutral-mist: #f8f9fa;
    --text-primary: #2c2c2c;
    --text-secondary: #6c757d;
    --border-subtle: #e5e5e5;
    --shadow-soft: 0 4px 15px rgba(0,0,0,0.08);
    --transition-smooth: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: #ffffff;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

h1 { font-size: 2.8rem }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    color: var(--ocean-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--ocean-deep);
    text-decoration: none;
}

/* Container & Grid System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-xl-6 { flex: 0 0 50%; max-width: 50%; }

[class*="col-"] {
    padding: 0 15px;
}

/* Header & Navigation */
.main_menu {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.navbar-brand img {
    height: 75px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hamburger:before { top: -8px; }
.hamburger:after { top: 8px; }

.nav-wrapper {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--ocean-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--ocean-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: var(--transition-smooth);
        padding-top: 90px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 25px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 12px 25px;
        font-size: 18px;
        font-weight: 500;
        color: var(--text-primary);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.welcome-area {
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.single-welcome-slide {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 650px;
}

.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.single-welcome-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.8) 0%, rgba(108, 92, 231, 0.6) 100%);
    z-index: 1;
}

.welcome-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.h-100 { height: 100% !important; }

.align-items-center { align-items: center; }

.welcome-text h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 42px;
    line-height: 1.6;
    max-width: 520px;
}

.akame-btn {
    display: inline-block;
    min-width: 200px;
    height: 55px;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    padding: 0 35px;
    line-height: 51px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    text-align: center;
}

.akame-btn:hover,
.akame-btn:focus {
    background-color: #ffffff;
    color: var(--ocean-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* About Section */
.about_info_area {
    padding: 120px 0 90px;
}

.about_info_area.plus_padding {
    padding-top: 120px;
}

.about_text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 35px;
    line-height: 1.2;
}

.about_text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
}

.boxed-btn3 {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--sky-purple) 100%);
    color: #fff;
    display: inline-block;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    border-radius: 50px;
    text-transform: capitalize;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
}

.boxed-btn3:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 110, 0.3);
    color: #fff;
}

.about_thumb {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.about_thumb::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.about_thumb:hover::after {
    opacity: 1;
}

.about_thumb img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.about_thumb:hover img {
    transform: scale(1.05);
}

/* Features Section */
.page-section {
    padding: 100px 0;
}

.title-underline span {
    display: inline-block;
    border-bottom: 5px solid var(--ocean-blue);
    padding-bottom: 8px;
    position: relative;
}

.title-underline span::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--sunset-orange);
}

.feature-item-1 {
    text-align: center;
    padding: 45px 25px 35px;
    border: 2px solid var(--border-subtle);
    border-radius: 25px;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-item-1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 110, 0.05), transparent);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    opacity: 0;
}

.feature-item-1:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-item-1:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.1);
}

.icon-container {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-purple));
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.feature-item-1:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.feature-item-content h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.feature-item-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-purple));
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
    color: #fff;
}

/* Services Section */
.site-section {
    padding: 120px 0;
}

.section-3 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.85) 0%, rgba(108, 92, 231, 0.75) 100%);
    z-index: 1;
}

.section-3 > .container {
    position: relative;
    z-index: 2;
}

.scissors {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
}

.scissors::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.3));
}

.service-1 {
    text-align: center;
    margin-bottom: 50px;
}

.service-1-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.service-1:hover .service-1-icon {
    transform: translateY(-10px) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.service-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-1-contents h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-1-contents p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Text + Image Section */
.content-image-section {
    padding: 100px 0;
    background: var(--neutral-mist);
}

.main-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-primary);
    text-align: center;
    font-weight: 700;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--sunset-orange));
}

.image-text-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    align-items: center;
    gap: 50px;
}

.text-block {
    flex: 1;
    min-width: 300px;
}

.text-block p {
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
}

.embed-container {
    flex: 1;
    position: relative;
    display: block;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.embed-container-21by9 {
    padding-top: 56.25%;
}

.embed-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.embed-container:hover .embed-item {
    transform: scale(1.05);
}

/* Cards Section */
.upcoming_games_area {
    padding: 120px 0 80px;
    background: #ffffff;
}

.main_title {
    text-align: center;
    margin-bottom: 80px;
}

.main_title h2 {
    font-size: 5rem;
    color: var(--ocean-blue);
    opacity: 0.1;
    margin: 0;
    line-height: 1;
    font-weight: 900;
}

.main_title h1 {
    color: var(--text-primary);
    margin-top: -60px;
    font-size: 2.5rem;
    font-weight: 700;
}

.main_title p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
}

.new_games_item {
    position: relative;
    display: block;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.new_games_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.new_games_item .img-fluid {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.new_games_item:hover .img-fluid {
    transform: scale(1.1);
}

.new_games_item .upcoming_title {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.9) 0%, rgba(108, 92, 231, 0.85) 100%);
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
    padding: 25px 20px;
}

.new_games_item:hover .upcoming_title {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.new_games_item .upcoming_title h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.new_games_item .upcoming_title h3 a {
    color: #fff;
    text-decoration: none;
}

.new_games_item:hover .upcoming_title h3 a {
    color: var(--ocean-blue);
}

.section_gap {
    padding: 120px 0;
}

/* Testimonials Section */
.bg-light {
    background: var(--neutral-mist);
}

.block-heading-1 h2 {
    font-size: 2.5rem;
    color: var(--ocean-blue);
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-item {
    position: relative;
}

.block-testimony-1 {
    padding: 35px 25px;
    position: relative;
    height: 100%;
}

.block-testimony-1 blockquote {
    background: #fff;
    padding: 35px;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-family: 'Lora', serif;
    position: relative;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--ocean-blue);
}

.block-testimony-1 figure {
    position: relative;
    padding-top: 30px;
}

.block-testimony-1 figure img {
    max-width: 80px;
    box-shadow: var(--shadow-soft);
}

.block-testimony-1 h3 {
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: 600;
}

/* Contact Form Section */
.ftco-booking {
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 100px 0;
}

.ftco-booking .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.85) 0%, rgba(108, 92, 231, 0.75) 100%);
    z-index: 1;
}

.ftco-booking .half {
    position: relative;
    z-index: 2;
}

.ftco-booking .half h2 {
    color: #fff;
    font-weight: 700;
    font-size: 2.2rem;
}

.subheading {
    font-size: 14px;
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.booking-form .form-group {
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 25px;
}

.booking-form .form-control {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border-radius: 10px;
    padding: 15px 20px;
    width: 100%;
    transition: var(--transition-smooth);
}

.booking-form .form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.select-wrap,
.input-wrap {
    position: relative;
    width: 100%;
}

.select-wrap .icon,
.input-wrap .icon {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.select-arrow,
.input-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.booking-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-dark {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1a1a1a 100%);
    border: none;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    width: 100%;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #1a1a1a 0%, var(--text-primary) 100%);
}

/* Footer */
.site-footer {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #b8b8b8;
}

.site-footer h2 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.site-footer a {
    color: #b8b8b8;
    transition: var(--transition-smooth);
}

.site-footer a:hover {
    color: #fff;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.social-link:hover {
    background: var(--ocean-blue);
    transform: translateY(-3px);
}

.footer-subscribe .input-group {
    display: flex;
    margin-bottom: 20px;
}

.footer-subscribe .form-control {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 18px;
    border-radius: 25px 0 0 25px;
}

.footer-subscribe .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-subscribe .btn {
    background: var(--ocean-blue);
    border: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-subscribe .btn:hover {
    background: var(--ocean-deep);
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
}

.copyright {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Success Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-header {
    margin-bottom: 25px;
}

.success-icon {
    width: 60px;
    height: 60px;
    filter: hue-rotate(120deg);
    margin-bottom: 20px;
}

.popup-content h3 {
    color: var(--ocean-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.popup-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

#close-popup {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-purple));
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

#close-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
}

/* Utility Classes */
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.pt-5 { padding-top: 3rem; }
.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: #fff; }
.text-black { color: var(--text-primary); }
.img-fluid { max-width: 100%; height: auto; }
.rounded-circle { border-radius: 50%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.list-unstyled { list-style: none; padding: 0; }

/* Responsive Design */
@media (max-width: 1199px) {
    .container { max-width: 960px; }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .welcome-text h1 { font-size: 3rem; }
    .main_title h2 { font-size: 4rem; }
}

@media (max-width: 991px) {
    .container { max-width: 720px; }

    .col-lg-6, .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .col-xl-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .site-section { padding: 80px 0; }
    .about_info_area { padding: 80px 0 60px; }
    .page-section { padding: 80px 0; }
    .upcoming_games_area { padding: 80px 0 60px; }

    .image-text-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .text-block { margin-bottom: 30px; }

    .welcome-text h1 { font-size: 2.5rem; }
    .welcome-text p { font-size: 1.1rem; }

    .main_title h2 { font-size: 3.5rem; }
    .main_title h1 { font-size: 2.2rem; margin-top: -50px; }

    .about_text h2 { font-size: 2.3rem; }
}

@media (max-width: 767px) {
    .container { max-width: 540px; }

    .col-md-6, .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .site-section { padding: 60px 0; }
    .about_info_area { padding: 60px 0 40px; }
    .page-section { padding: 60px 0; }
    .upcoming_games_area { padding: 60px 0 40px; }
    .content-image-section { padding: 60px 0; }
    .site-footer { padding: 60px 0 30px; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }

    .welcome-text h1 { font-size: 2.2rem; line-height: 1.3; }
    .welcome-text p { font-size: 1rem; }

    .single-welcome-slide { height: 70vh; min-height: 500px; }

    .main_title h2 { font-size: 2.8rem; }
    .main_title h1 { font-size: 1.8rem; margin-top: -35px; }

    .about_text h2 { font-size: 2rem; }
    .main-title { font-size: 2rem; }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item-1 {
        margin-bottom: 30px;
        padding: 35px 20px 25px;
    }

    .service-1 { margin-bottom: 40px; }

    .new_games_item .img-fluid { height: 200px; }

    .ftco-booking { padding: 60px 0; }
    .popup-content { padding: 35px 25px; }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .welcome-text h1 { font-size: 1.9rem; }
    .akame-btn {
        min-width: 180px;
        height: 50px;
        line-height: 46px;
        font-size: 14px;
    }

    .about_text h2 { font-size: 1.8rem; }
    .main-title { font-size: 1.8rem; }
    .main_title h1 { font-size: 1.6rem; }
    .main_title h2 { font-size: 2.2rem; }

    .feature-item-1 { padding: 30px 15px 20px; }
    .block-testimony-1 blockquote { padding: 25px 20px; font-size: 1rem; }

    .new_games_item .img-fluid { height: 180px; }
    .popup-content { width: 95%; padding: 30px 20px; }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .welcome-text h1 { font-size: 1.7rem; }
    .welcome-text p { font-size: 0.95rem; }

    .about_text h2 { font-size: 1.6rem; }
    .main-title { font-size: 1.6rem; }

    .navbar { padding: 15px 0; }
    .navbar-brand img { height: 40px; }

    .boxed-btn3 { padding: 15px 35px; font-size: 15px; }
    .btn-primary { padding: 10px 25px; font-size: 13px; }

    .feature-item-content h3 { font-size: 1.2rem; }
    .service-1-contents h3 { font-size: 1.2rem; }

    .social-links { gap: 12px; }
    .social-link { width: 40px; height: 40px; }
    .social-link img { width: 18px; height: 18px; }
}

/* Print Styles */
@media print {
    .main_menu, .popup-overlay { display: none; }
    .welcome-area { margin-top: 0; }
    * { color-adjust: exact; }
}

.as {
    margin-top: 5%;
}

/* Additional CSS for Services Page - Human-like inconsistencies included */

/* Features Section Styling */
.features-wrap-container {
    padding: 120px 0 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.features-wrap-container.features-wrap-container2 .feature-service-item {
    border: 2px solid #e5e5e5;
    padding: 45px 35px;
    margin-bottom: 40px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    background: #ffffff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.features-wrap-container.features-wrap-container2 .feature-service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 110, 0.03), transparent);
    transform: rotate(45deg);
    transition: all 0.45s ease;
    opacity: 0;
}

.features-wrap-container.features-wrap-container2 .feature-service-item h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 650;
    margin-top: 30px;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.features-wrap-container.features-wrap-container2 .feature-service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    transition: all 0.35s ease;
}

.service-feature-icon {
    width: 50px;
    height: 50px;
    transition: all 0.35s ease;
    filter: hue-rotate(280deg) saturate(1.2);
}

.features-wrap-container.features-wrap-container2 .feature-service-item:hover {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--sky-purple) 100%);
    border-color: var(--ocean-blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 0, 110, 0.15);
}

.features-wrap-container.features-wrap-container2 .feature-service-item:hover::before {
    opacity: 1;
    animation: shimmer-effect 1.2s ease-in-out;
}

@keyframes shimmer-effect {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.features-wrap-container.features-wrap-container2 .feature-service-item:hover h3 {
    color: #ffffff;
    transform: scale(1.05);
}

.features-wrap-container.features-wrap-container2 .feature-service-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.features-wrap-container.features-wrap-container2 .feature-service-item:hover .service-feature-icon {
    filter: brightness(0) invert(1);
    transform: scale(1.15) rotate(5deg);
}

/* Text + Image Section */
.main-section {
    padding: 100px 0;
    background: var(--neutral-mist);
}

@media (min-width: 768px) {
    .main-section {
        padding: 120px 0;
    }
}

.section-title-accent {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 700;
}

.section-title-accent span {
    display: inline-block;
    border-bottom: 4px solid var(--ocean-blue);
    padding-bottom: 8px;
    position: relative;
}

.section-title-accent span::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--sunset-orange);
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-main {
    color: #ffffff;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-purple));
    border: 2px solid transparent;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-main:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky-purple), var(--ocean-blue));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.25);
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
}

.img-responsive:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Pricing Section Enhancements */
.block-heading-1 h2 {
    font-size: 2.5rem;
    color: var(--ocean-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.05), transparent);
    transition: all 0.6s ease;
}

.pricing:hover::before {
    left: 100%;
}

.pricing:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.12);
    border: 2px solid rgba(255, 0, 110, 0.1);
}

.pricing .price > span {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.pricing .price > span > span {
    font-size: 2.8rem;
    color: var(--ocean-blue);
    font-weight: 700;
}

.ca-price {
    position: relative;
}

/* FAQ Section Styling */
.faq-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    filter: hue-rotate(280deg) saturate(1.3);
    vertical-align: top;
}

#faq-section .h4 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

#faq-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

#faq-section .mb-4 {
    padding: 25px;
    background: rgba(255, 0, 110, 0.02);
    border-radius: 12px;
    border-left: 4px solid var(--ocean-blue);
    transition: all 0.3s ease;
}

#faq-section .mb-4:hover {
    background: rgba(255, 0, 110, 0.05);
    transform: translateX(5px);
}

/* Dynamic Pricing Display */
@media screen and (min-width: 768px) {
    .ca-price::after {
        content: " CAD";
        font-size: 0.9rem;
        color: var(--text-secondary);
        font-weight: 400;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .features-wrap-container {
        padding: 80px 0 60px 0;
    }

    .features-wrap-container.features-wrap-container2 .feature-service-item {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .main-section {
        padding: 80px 0;
    }

    .section-title-accent {
        font-size: 1.9rem;
    }
}

@media (max-width: 767px) {
    .features-wrap-container {
        padding: 60px 0 40px 0;
    }

    .features-wrap-container.features-wrap-container2 .feature-service-item {
        padding: 30px 20px;
    }

    .service-feature-icon {
        width: 45px;
        height: 45px;
    }

    .main-section {
        padding: 60px 0;
    }

    .section-title-accent {
        font-size: 1.7rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }
}

/* TODO: Add more interactive hover effects for mobile */
/* Dead code from previous version - keeping for reference
.old-pricing-style {
    background: linear-gradient(45deg, #f0f0f0, #ffffff);
}
*/