/* ==========================================================================
   CSS Variables & Typography (Premium Mikel Theme)
   ========================================================================== */
:root {
    /* Colors - Mikel Brand Palette */
    --mikel-red: #AB0634;
    --mikel-red-hover: #8E0529;
    --mikel-yellow: #FFCB70;
    --mikel-yellow-hover: #F0BA55;
    --mikel-dark: #1C1406;
    --mikel-dark-hover: #0F0A03;

    /* Legacy alias – keeps existing var(--mikel-orange) refs working */
    --mikel-orange: var(--mikel-red);

    /* Backgrounds */
    --bg-main: #FAF8F5;
    --bg-secondary: #F0EDE5;
    --bg-dark: var(--mikel-dark);

    /* Text */
    --text-main: #2A2528;
    --text-muted: #6B6166;
    --text-light: #FFFFFF;
    --text-light-muted: #D1CDD0;

    /* UI Elements */
    --glass-bg: rgba(250, 248, 245, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Shadows */
    --border-radius: 20px;
    --shadow-premium: 0 20px 40px rgba(28, 20, 6, 0.08);
    --shadow-heavy: 0 30px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    /* Handled by GSAP ScrollSmoother conceptually */
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--mikel-dark);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -1px;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Text Utilities */
.text-orange {
    color: var(--mikel-orange);
}

.text-red {
    color: var(--mikel-red);
}

.text-yellow {
    color: var(--mikel-yellow);
}

.text-gradient {
    background: linear-gradient(135deg, var(--mikel-yellow), #FFE0A0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-muted {
    color: var(--text-muted);
}

.text-light-muted {
    color: var(--text-light-muted);
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-700 {
    max-width: 700px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.relative {
    position: relative;
}

.mb-60 {
    margin-bottom: 60px;
}

.z-10 {
    z-index: 10;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--mikel-yellow);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    /* Centering handled in JS with xPercent/yPercent */
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 203, 112, 0.6);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    background-color: transparent;
    /* Centering handled in JS with xPercent/yPercent */
}

body:hover .cursor-follower {
    background-color: transparent;
}

@media (max-width: 1024px) {

    .cursor,
    .cursor-follower {
        display: none;
    }

    /* Disable on touch */
}

/* ==========================================================================
   UI Components
   ========================================================================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.dark-bg {
    background-color: var(--mikel-dark);
}

.overlay-shapes {
    position: relative;
    overflow: hidden;
}

.overlay-shapes::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(171, 6, 52, 0.08) 0%, rgba(171, 6, 52, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
    animation: floatShapes 15s infinite ease-in-out;
}

.overlay-shapes::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    filter: blur(30px);
    animation: floatShapes 20s infinite ease-in-out reverse;
}

@keyframes floatShapes {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.accent-bg {
    background-color: var(--mikel-orange);
    position: relative;
    overflow: hidden;
}

.text-black {
    color: #000000 !important;
}

.accent-bg h2 {
    color: #000000 !important;
    font-size: 3.5rem !important;
    font-weight: 800;
}

.accent-bg p {
    color: #000000 !important;
    font-weight: 600;
}

.accent-bg .feature-item {
    color: #000000 !important;
    font-weight: 700;
}

.accent-bg .section-badge {
    background: #000000;
    color: #FFFFFF;
}

.poster-blob {
    aspect-ratio: 3/4 !important;
    /* More rectangular to show the poster */
    border-radius: 40px !important;
    /* Slightly more structured but still rounded/premium */
    border: 15px solid rgba(255, 255, 255, 0.2) !important;
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--text-light);
}

.dark-bg p {
    color: var(--text-light-muted);
}

.shadow-premium {
    box-shadow: var(--shadow-premium);
}

.rounded-premium {
    border-radius: var(--border-radius);
}

.overflow-hidden {
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.primary-btn {
    background-color: var(--mikel-yellow);
    color: var(--mikel-dark);
    box-shadow: 0 10px 20px rgba(255, 203, 112, 0.35);
    position: relative;
    overflow: hidden;
}

.primary-btn span {
    position: relative;
    z-index: 2;
}

.primary-btn-outline {
    border: 2px solid var(--mikel-dark);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--mikel-dark);
    font-weight: 600;
}

.primary-btn-outline:hover {
    background-color: var(--mikel-dark);
    color: white;
}

.text-btn {
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    padding-left: 20px;
}

.text-btn:hover {
    color: var(--mikel-orange);
    transform: translateX(5px);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(171, 6, 52, 0.1);
    color: var(--mikel-red);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Badge on dark backgrounds uses yellow */
.dark-bg .section-badge {
    background: rgba(255, 203, 112, 0.2);
    color: var(--mikel-yellow);
}

.pulse-animation {
    animation: badge-pulse-red 2s infinite ease-in-out;
    background: rgba(171, 6, 52, 0.2);
    box-shadow: 0 0 0 0 rgba(171, 6, 52, 0.4);
}

.dark-bg .pulse-animation {
    animation: badge-pulse-yellow 2s infinite ease-in-out;
    background: rgba(255, 203, 112, 0.25);
    box-shadow: 0 0 0 0 rgba(255, 203, 112, 0.4);
}

@keyframes badge-pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(171, 6, 52, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(171, 6, 52, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(171, 6, 52, 0);
    }
}

@keyframes badge-pulse-yellow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 203, 112, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 203, 112, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 203, 112, 0);
    }
}

/* ==========================================================================
   Header & Navigation (Floating Style)
   ========================================================================== */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
    border-radius: 12px;
    /* Not pill, just rounded */
}

header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

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

.mikel-circle {
    width: 40px;
    height: 40px;
    background-color: var(--mikel-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mikel-circle svg {
    width: 20px;
    height: 20px;
    color: white;
}

.logo:hover .mikel-circle {
    background-color: var(--mikel-orange);
    transform: rotate(15deg) scale(1.1);
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: -5px;
    letter-spacing: 1px;
}

.header-scrolled .logo-text h1 {
    color: var(--mikel-dark);
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--mikel-orange);
    font-weight: 600;
    font-family: var(--font-body);
}

/* Header link colors initially white if hero is dark */
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a.nav-item {
    font-weight: 500;
    color: var(--mikel-dark);
    font-size: 1rem;
    position: relative;
}

/* If you want the nav to be white on transparent background on hero:
   (Will handle in JS for solid background)
*/
.header-top .nav-links li a.nav-item:not(.primary-btn-outline),
.header-top .logo-text h1 {
    color: white;
}

.header-top .primary-btn-outline {
    border-color: white;
    color: white !important;
    /* Force white for 'Επικοινωνία' in hero */
}

.header-top .primary-btn-outline:hover {
    background-color: white;
    color: var(--mikel-dark) !important;
}

.nav-links li a.nav-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--mikel-orange);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links li a.nav-item:not(.primary-btn-outline):hover::after,
.nav-links li a.active:not(.primary-btn-outline)::after {
    width: 100%;
}

.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu div {
    width: 30px;
    height: 2px;
    background-color: var(--mikel-dark);
    margin: 6px;
    transition: all 0.3s ease;
}

.header-top .burger-menu div {
    background-color: white;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    /* Better for content spacing */
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 0;
    /* More padding top/bottom */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced for better quality, less cropping */
    background-size: cover;
    background-position: center 30%;
    /* Focus on a better part of the image */
    z-index: -2;
    filter: contrast(1.05) saturate(1.1) brightness(0.95);
    /* Better colors */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 20, 6, 0.9) 0%, rgba(28, 20, 6, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin-left: 0;
    /* Align left */
    margin-top: 50px;
}

.hero-subtitle {
    font-family: var(--font-body);
    color: var(--mikel-yellow);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    color: white;
    margin-bottom: 30px;
    line-height: 1.05;
}

.hero-content p {
    font-size: 1.25rem;
    color: #e6e6e6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--mikel-orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite ease-in-out;
}

.section-divider {
    height: 120px;
    background: linear-gradient(to bottom, var(--mikel-dark), var(--bg-secondary));
    width: 100%;
    position: relative;
    z-index: 5;
}

.fasting-section {
    /* Background handled by dark-bg and overlay-shapes */
    display: block;
    /* Added property to avoid empty ruleset warning */
}

/* ==========================================================================
   Two Column Layout
   ========================================================================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: center;
    position: relative;
    z-index: 5;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

/* ==========================================================================
   Ping Pong Section (Refined)
   ========================================================================== */
.pingpong-section .image-wrapper {
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Organic shape */
    overflow: hidden;
    aspect-ratio: 1;
    border: 10px solid white;
    box-shadow: var(--shadow-heavy);
}

.price-box {
    margin-top: 40px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    border-right: 6px solid var(--mikel-red);
    /* Border on right for contrast */
    display: inline-block;
    position: relative;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--mikel-dark);
    border-radius: 10px 0 0 10px;
}

.price-details {
    display: flex;
    align-items: baseline;
    color: var(--mikel-dark);
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: bold;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin: 0 5px;
}

.price-period {
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-body);
}

.price-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.floating-badge {
    position: absolute;
    bottom: -30px;
    /* Offset purposefully */
    right: -30px;
    background: white;
    color: var(--mikel-dark);
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    font-size: 1.1rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: var(--mikel-orange);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--mikel-orange);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ==========================================================================
   Mikelina Section
   ========================================================================== */
.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: white;
}

.feature-item svg {
    width: 24px;
    height: 24px;
}

.blob-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    /* Custom organic blob shape */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transition: all 1s ease;
    border: 10px solid rgba(255, 255, 255, 0.1);
}

.blob-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Gallery Section (Premium Grid)
   ========================================================================== */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 30px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.item-large {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(171, 6, 52, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: white;
    font-size: 3rem;
    font-weight: 300;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

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

.single-gallery-item {
    display: flex !important;
    justify-content: center;
}

.single-gallery-item .gallery-item {
    max-width: 500px;
    /* Better size for a single square */
    width: 100%;
    aspect-ratio: 1 / 1;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.glass-card {
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.contact-details {
    padding: 60px;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-map::after {
    content: '';
    position: Absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mikel-red);
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 10;
    mix-blend-mode: multiply;
}

.contact-map:hover::after {
    opacity: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: rgba(171, 6, 52, 0.1);
    color: var(--mikel-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-circle svg {
    width: 22px;
    height: 22px;
}

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

.info-text .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.info-text strong {
    color: var(--mikel-dark);
    font-size: 1.15rem;
    font-family: var(--font-body);
    /* Changed font for address details */
    font-weight: 500;
    letter-spacing: -0.2px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: var(--mikel-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-content .logo h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.footer-legal {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--mikel-yellow);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.1);
}


/* Board Games Enhanced Card */
.board-games-card {
    width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(171, 6, 52, 0.1);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-top: 20px;
}

.board-games-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(171, 6, 52, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--mikel-red);
}

.card-header svg {
    width: 24px;
    height: 24px;
}

.card-header h4 {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: rgba(171, 6, 52, 0.03);
    border: 1px solid rgba(171, 6, 52, 0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

.game-item:hover {
    background: white;
    border-color: var(--mikel-red);
    transform: scale(1.05);
}

.game-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.game-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mikel-dark);
}

.game-item.more .game-icon {
    color: var(--mikel-red);
}

.card-footer {
    margin-top: 25px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(171, 6, 52, 0.05);
}

.card-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.powered-by {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.powered-by .label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.rove-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.rove-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.rove-link img {
    height: 28px;
    width: auto;
}

.rove-link span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {

    .two-col,
    .contact-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .floating-badge {
        bottom: 20px;
        right: 20px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .item-large,
    .item-wide {
        grid-row: auto;
        grid-column: auto;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-top .logo-text h1 {
        color: var(--mikel-dark);
    }

    .header-top .burger-menu div {
        background-color: var(--mikel-dark);
    }

    header {
        background-color: white;
        padding: 15px 0;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        gap: 40px;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li a.nav-item {
        color: var(--mikel-dark) !important;
        font-size: 1.5rem;
    }

    .burger-menu {
        display: block;
    }

    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-6px, -6px);
    }

    /* Mobile Additions for Padding & Fonts */
    .section {
        padding: 80px 0;
    }

    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 140px 0 60px 0;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .text-btn {
        padding: 16px 0; /* Center align text button */
    }

    .price-box {
        margin-top: 30px;
        padding: 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .blob-wrapper {
        border-width: 5px;
    }

    .contact-details {
        padding: 40px 20px;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }

    .info-text strong {
        font-size: 1.05rem;
        word-break: break-word; /* Ensure long emails/numbers break safely */
    }

    .footer-content .logo h2 {
        font-size: 1.5rem;
    }

    .pingpong-section .image-wrapper {
        border-radius: 20px;
        aspect-ratio: 16/9;
        border-width: 5px;
    }
}

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

    .hero-content h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .floating-badge {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .gallery-masonry .gallery-item {
        height: 250px;
    }
    
    .single-gallery-item .gallery-item {
        max-width: 100%;
    }
}