@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
    /* CRM / SaaS Color Palette */
    --crm-primary: #2563eb;
    --crm-primary-light: #3b82f6;
    --crm-secondary: #0369a1;
    --crm-cta: #f97316;
    --crm-cta-hover: #ea580c;
    --crm-bg: #f8fafc;
    --crm-bg-alt: #f1f5f9;
    --crm-text: #1e293b;
    --crm-text-muted: #64748b;
    --crm-border: #e2e8f0;
    --crm-white: #ffffff;
    --crm-success: #22c55e;
    --crm-warning: #f59e0b;
    --crm-error: #ef4444;
    --crm-dark-bg: #0f172a;
    --crm-dark-surface: #1e293b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--crm-bg);
    color: var(--crm-text);
    line-height: 1.6;
}

/* Glass Effect - CRM Style */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--crm-border);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

/* CRM Primary Gradient - Trust Blue */
.gradient-primary {
    background: linear-gradient(
        135deg,
        var(--crm-primary) 0%,
        var(--crm-secondary) 100%
    );
}

/* CRM Secondary Gradient - Professional Accent */
.gradient-secondary {
    background: linear-gradient(135deg, var(--crm-cta) 0%, #fb923c 100%);
}

.gradient-text {
    background: linear-gradient(667eea 0%, #764ba2 100%);
    -webkit-background-clip: text135deg, #;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.2s ease;
    cursor: pointer;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--crm-primary-light);
}

/* CRM Button Styles */
.btn-primary {
    background: linear-gradient(
        135deg,
        var(--crm-primary) 0%,
        var(--crm-secondary) 100%
    );
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0369a1 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--crm-primary);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--crm-border);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--crm-bg-alt);
    border-color: var(--crm-primary);
    color: var(--crm-secondary);
}

.section-padding {
    padding: 100px 0;
}

.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Text Gradient - CRM Style */
.text-gradient {
    background: linear-gradient(
        135deg,
        var(--crm-primary) 0%,
        var(--crm-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Pattern - CRM Style */
.hero-pattern {
    background-image:
        radial-gradient(
            circle at 25% 25%,
            rgba(37, 99, 235, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(249, 115, 22, 0.06) 0%,
            transparent 50%
        );
    background-color: var(--crm-bg);
}

/* Game Card - CRM Style */
.game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--crm-border);
    transition: all 0.2s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--crm-primary-light);
}

.partner-logo {
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* Modern Partner Section Styles - CRM */
.partner-card {
    perspective: 1000px;
    width: 240px;
}

.partner-card-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--crm-border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.partner-card:hover .partner-card-inner {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--crm-primary-light);
}

.partner-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.partner-icon.unity {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.partner-icon.unreal {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}

.partner-icon.steam {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: white;
}

.partner-icon.google {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #4285f4;
}

.partner-icon.apple {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    color: white;
}

.partner-icon.meta {
    background: linear-gradient(135deg, #0668e1 0%, #0081fb 100%);
    color: white;
}

.partner-card:hover .partner-icon {
    transform: scale(1.1);
}

.partner-logo {
    width: 124px;
    height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
}

.partner-name {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: var(--crm-primary);
}

/* Partner Stats - CRM Style */
.partner-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--crm-border);
    border-radius: 12px;
    padding: 32px 48px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.partner-stat-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        var(--crm-primary) 0%,
        var(--crm-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.partner-stat-label {
    font-size: 14px;
    color: var(--crm-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.partner-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--crm-border),
        transparent
    );
}

@media (max-width: 768px) {
    .partner-stats {
        gap: 24px;
        padding: 24px 32px;
    }

    .partner-stat-value {
        font-size: 24px;
    }

    .partner-stat-divider {
        display: none;
    }

    .partner-stat {
        min-width: 80px;
    }
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

/* Feature Icon Color Variations */
.feature-icon.blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.feature-icon.orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.feature-icon.green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.feature-icon.red {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.feature-icon.teal {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

/* Game Rating - CRM Style */
.game-rating {
    background: linear-gradient(135deg, var(--crm-warning) 0%, #d97706 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* Screenshot Gallery - Portrait Mobile Style - CRM */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.screenshot-item {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--crm-bg-alt);
    border: 1px solid var(--crm-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.screenshot-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--crm-primary-light);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.02);
}

/* Screenshot Hover Preview Tooltip */
.screenshot-preview {
    position: fixed;
    width: 360px;
    height: 640px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    background: #000;
}

.screenshot-preview.active {
    opacity: 1;
    transform: scale(1);
}

.screenshot-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.lightbox-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: grab;
}

.lightbox-image.grabbing {
    cursor: grabbing;
}

.lightbox-image.zoomed {
    max-width: none;
    max-height: none;
}

/* Lightbox Navigation - CRM */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

/* Lightbox Controls - CRM */
.lightbox-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-control-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-control-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-control-btn svg {
    width: 24px;
    height: 24px;
}

.lightbox-counter {
    color: white;
    font-size: 14px;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

/* Lightbox Close Button - CRM */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .screenshot-gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }

    .lightbox-container {
        padding: 60px 20px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-controls {
        padding: 10px 16px;
        gap: 12px;
    }

    .lightbox-control-btn {
        width: 40px;
        height: 40px;
    }
}

/* Language Switch - CRM Style */
.language-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: var(--crm-bg-alt);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid var(--crm-border);
}

.language-switch button {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--crm-text-muted);
}

.language-switch button.active {
    background: white;
    color: var(--crm-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Hero Glow - CRM Style */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.12) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.game-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.game-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        transparent 50%,
        transparent 100%
    );
}

.game-banner-content {
    position: relative;
    z-index: 1;
    padding-top: 280px;
}

/* Stats Bar - CRM Style */
.stats-bar {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--crm-text);
}

.stat-label {
    font-size: 14px;
    color: var(--crm-text-muted);
}

/* Dark background variant */
.game-banner .stat-value {
    color: white;
}

.game-banner .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

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

    .screenshot-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-glow {
        width: 300px;
        height: 300px;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.25);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.4);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Genre Filter Buttons - CRM Style */
.genre-btn {
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid var(--crm-border);
    background: white;
    color: var(--crm-text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.genre-btn:hover {
    border-color: var(--crm-primary);
    color: var(--crm-primary);
}

.genre-btn.active {
    background: linear-gradient(
        135deg,
        var(--crm-primary) 0%,
        var(--crm-secondary) 100%
    );
    border-color: transparent;
    color: white;
}

/* Game Genre Badge */
.genre-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.genre-badge.Simulation {
    background: #fef3c7;
    color: #d97706;
}

.genre-badge.racing {
    background: #dbeafe;
    color: #2563eb;
}

.genre-badge.adventure {
    background: #d1fae5;
    color: #059669;
}

.genre-badge.strategy {
    background: #fce7f3;
    color: #db2777;
}

.genre-badge.puzzle {
    background: #e0e7ff;
    color: #4f46e5;
}

.genre-badge.action-rpg {
    background: #fee2e2;
    color: #dc2626;
}

/* Service Cards - Publish Module */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--crm-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--crm-primary-light);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

/* Service Icon Color Variations */
.service-icon.blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.service-icon.orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.service-icon.purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.service-icon.green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.service-icon.crimson {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.service-icon.teal {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--crm-text);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--crm-text-muted);
    line-height: 1.6;
}

/* Flow Section - Publish Module */
.flow-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
}

/* About Page Section - CRM Style */
#about-page .glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--crm-border);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.about-stat-item {
    text-align: center;
    padding: 20px;
    background: var(--crm-bg-alt);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-stat-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        var(--crm-primary) 0%,
        var(--crm-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-stat-label {
    font-size: 14px;
    color: var(--crm-text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* Contact Cards - About Page */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--crm-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--crm-primary-light);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
}

/* Contact Card Icon Color Variations */
.contact-card-icon.blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.contact-card-icon.orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.contact-card-icon.purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.contact-card-icon.green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-stat-value {
        font-size: 24px;
    }

    .about-stat-label {
        font-size: 12px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
    }
}

/* Responsive for Publish Module */
@media (max-width: 768px) {
    .service-card {
        padding: 24px 20px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-desc {
        font-size: 13px;
    }
}
