/* JL69 Website - Main CSS Stylesheet */
/* CSS class prefix: pg73- */
/* Color Palette: #FFC0CB | #228B22 | #8FBC8F | #98FB98 | #0A0A0A */
/* Version: 1.0.0 */

/* CSS Variables */
:root {
    --pg73-primary: #FFC0CB;
    --pg73-secondary: #228B22;
    --pg73-accent: #8FBC8F;
    --pg73-light: #98FB98;
    --pg73-dark: #0A0A0A;
    --pg73-primary-dark: #FFB6C1;
    --pg73-secondary-dark: #1F5F1F;
    --pg73-bg-overlay: rgba(255, 255, 255, 0.95);
    --pg73-text-dark: #333333;
    --pg73-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --pg73-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --pg73-border-radius: 8px;
    --pg73-transition: all 0.3s ease;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: var(--pg73-text-dark);
    background-color: var(--pg73-light);
    min-height: 100vh;
    position: relative;
}

/* Typography */
.pg73-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.pg73-heading-1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pg73-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pg73-heading-2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--pg73-dark);
    margin-bottom: 0.8rem;
}

.pg73-heading-3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--pg73-dark);
    margin-bottom: 0.6rem;
}

.pg73-heading-4 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--pg73-dark);
    margin-bottom: 0.5rem;
}

.pg73-text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.pg73-text-sm {
    font-size: 1.4rem;
    line-height: 1.4;
}

/* Header Styles */
.pg73-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--pg73-bg-overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--pg73-shadow);
    padding: 0.8rem 1rem;
}

.pg73-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.pg73-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pg73-dark);
    text-decoration: none;
}

.pg73-logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.pg73-nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.pg73-btn {
    background: var(--pg73-primary);
    color: var(--pg73-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: var(--pg73-border-radius);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--pg73-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.pg73-btn:hover {
    background: var(--pg73-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--pg73-shadow);
}

.pg73-btn:active {
    transform: scale(0.95);
}

.pg73-menu-toggle {
    background: none;
    border: none;
    padding: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--pg73-border-radius);
    transition: var(--pg73-transition);
}

.pg73-menu-toggle:hover {
    background: var(--pg73-light);
}

.pg73-menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: var(--pg73-dark);
}

/* Mobile Navigation */
.pg73-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    padding: 4rem 1rem 2rem;
}

.pg73-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.pg73-menu-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: var(--pg73-border-radius);
    transition: var(--pg73-transition);
}

.pg73-menu-close:hover {
    background: var(--pg73-light);
}

.pg73-menu-close svg {
    width: 24px;
    height: 24px;
    fill: var(--pg73-dark);
}

.pg73-mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pg73-mobile-nav-item {
    padding: 1rem;
    border-radius: var(--pg73-border-radius);
    transition: var(--pg73-transition);
    background: var(--pg73-light);
}

.pg73-mobile-nav-item:hover {
    background: var(--pg73-accent);
    transform: translateX(5px);
}

.pg73-mobile-nav-link {
    text-decoration: none;
    color: var(--pg73-dark);
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pg73-mobile-nav-icon {
    width: 24px;
    height: 24px;
    fill: var(--pg73-dark);
}

/* Main Content */
main {
    padding: 7rem 1rem 5rem;
    min-height: 100vh;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 5rem;
    }
}

/* Bottom Navigation */
.pg73-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FFC0CB 0%, #228B22 100%);
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.pg73-bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.pg73-nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--pg73-transition);
    color: white;
    text-decoration: none;
}

.pg73-nav-button:hover {
    transform: scale(1.1);
}

.pg73-nav-button.active {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--pg73-border-radius);
}

.pg73-nav-button svg,
.pg73-nav-button i,
.pg73-nav-button .pg73-nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.25rem;
    fill: white;
    color: white;
}

.pg73-nav-button span {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Game Cards */
.pg73-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.pg73-game-card {
    background: white;
    border-radius: var(--pg73-border-radius);
    overflow: hidden;
    box-shadow: var(--pg73-shadow);
    transition: var(--pg73-transition);
    cursor: pointer;
    text-align: center;
    padding: 0.5rem;
}

.pg73-game-card:hover {
    transform: scale(1.05);
    box-shadow: var(--pg73-shadow-lg);
}

.pg73-game-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 0.25rem;
}

.pg73-game-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pg73-dark);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Card Components */
.pg73-card {
    background: white;
    border-radius: var(--pg73-border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--pg73-shadow);
    transition: var(--pg73-transition);
}

.pg73-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--pg73-shadow-lg);
}

.pg73-card-header {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--pg73-light);
}

.pg73-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--pg73-dark);
}

/* Carousel */
.pg73-carousel {
    position: relative;
    background: white;
    border-radius: var(--pg73-border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--pg73-shadow);
}

.pg3-carousel-container {
    position: relative;
    overflow: hidden;
}

.pg73-carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.pg73-carousel-slide {
    min-width: 100%;
    position: relative;
}

.pg73-carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--pg73-transition);
}

.pg73-carousel-slide img:hover {
    transform: scale(1.05);
}

.pg73-carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem;
    text-align: center;
}

.pg73-carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.pg73-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--pg73-transition);
}

.pg73-carousel-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Footer */
.pg73-footer {
    background: var(--pg73-dark);
    color: var(--pg73-light);
    padding: 2rem 1rem 3rem;
    margin-top: 3rem;
}

.pg73-footer-content {
    max-width: 430px;
    margin: 0 auto;
}

.pg73-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.pg73-footer-link {
    color: var(--pg73-light);
    text-decoration: none;
    font-size: 1.4rem;
    transition: var(--pg73-transition);
    padding: 0.5rem 1rem;
    border-radius: var(--pg73-border-radius);
}

.pg73-footer-link:hover {
    color: var(--pg73-primary);
    background: rgba(255, 192, 203, 0.1);
}

.pg73-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.pg73-partner-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--pg73-transition);
}

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

.pg73-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--pg73-light);
    opacity: 0.8;
    margin-top: 1rem;
}

/* Responsive Design */
@media (min-width: 769px) {
    .pg73-bottom-nav,
    .pg3-mobile-menu {
        display: none !important;
    }

    main {
        padding-bottom: 2rem;
    }
}

/* Utility Classes */
.pg73-text-center {
    text-align: center;
}

.pg73-mt-1 {
    margin-top: 1rem;
}

.pg73-mb-1 {
    margin-bottom: 1rem;
}

.pg73-mt-2 {
    margin-top: 2rem;
}

.pg73-mb-2 {
    margin-bottom: 2rem;
}

.pg73-flex {
    display: flex;
}

.pg73-justify-center {
    justify-content: center;
}

.pg73-align-center {
    align-items: center;
}

.pg73-gap-1 {
    gap: 1rem;
}

/* Loading Animation */
@keyframes pg73-spin {
    to {
        transform: rotate(360deg);
    }
}

.pg73-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--pg73-primary);
    border-radius: 50%;
    animation: pg73-spin 1s linear infinite;
}

/* Tooltip */
.pg73-tooltip {
    position: absolute;
    background: var(--pg73-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--pg73-border-radius);
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 10000;
    box-shadow: var(--pg73-shadow-lg);
    white-space: nowrap;
}

/* Custom Animations */
@keyframes pg73-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg73-animate-fadeIn {
    animation: pg73-fadeIn 0.6s ease forwards;
}