/* nino gaming CSS Theme */
/* Author: nino gaming team */
/* Version: 1.0 */
/* Description: Mobile-first responsive design for nino gaming */

/* CSS Variables */
:root {
    --s726-primary: #2E4057;
    --s726-secondary: #FFFFFF;
    --s726-accent: #FFB6C1;
    --s726-accent-dark: #FF91A4;
    --s726-accent-light: #FFD6DC;
    --s726-bg-primary: #2E4057;
    --s726-bg-secondary: #1A2B3E;
    --s726-bg-tertiary: #0F1823;
    --s726-text-primary: #FFFFFF;
    --s726-text-secondary: #E0E0E0;
    --s726-text-muted: #B0B0B0;
    --s726-border: rgba(255, 255, 255, 0.1);
    --s726-border-dark: rgba(0, 0, 0, 0.2);
    --s726-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --s726-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
    --s726-radius: 8px;
    --s726-radius-lg: 12px;
    --s726-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and 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, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--s726-text-primary);
    background-color: var(--s726-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container and Layout */
.s726-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.6rem;
}

.s726-wrapper {
    min-height: 100vh;
    padding-top: 70px;
    padding-bottom: 80px;
}

.s726-section {
    padding: 2.4rem 0;
}

.s726-grid {
    display: grid;
    gap: 1.6rem;
}

.s726-flex {
    display: flex;
}

.s726-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.s726-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Styles */
.s726-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--s726-bg-secondary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--s726-border);
    z-index: 1000;
    height: 70px;
}

.s726-header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.6rem;
}

.s726-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: var(--s726-text-primary);
}

.s726-logo-icon {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: var(--s726-radius);
    object-fit: cover;
}

.s726-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--s726-text-primary);
}

.s726-header-buttons {
    display: flex;
    gap: 1.2rem;
}

.s726-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: var(--s726-radius);
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--s726-transition);
    min-height: 4.4rem;
    min-width: 4.4rem;
}

.s726-btn-primary {
    background: var(--s726-accent);
    color: var(--s726-bg-primary);
}

.s726-btn-primary:hover {
    background: var(--s726-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--s726-shadow);
}

.s726-btn-secondary {
    background: transparent;
    color: var(--s726-text-primary);
    border: 2px solid var(--s726-accent);
}

.s726-btn-secondary:hover {
    background: var(--s726-accent);
    color: var(--s726-bg-primary);
    transform: translateY(-2px);
}

/* Mobile Menu */
.s726-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.s726-hamburger span {
    display: block;
    width: 2.4rem;
    height: 0.2rem;
    background: var(--s726-text-primary);
    margin: 0.3rem 0;
    transition: var(--s726-transition);
    transform-origin: center;
}

.s726-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.s726-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.s726-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

.s726-mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--s726-bg-secondary);
    z-index: 9999;
    transform: translateX(100%);
    transition: var(--s726-transition);
    overflow-y: auto;
}

.s726-mobile-menu.active {
    transform: translateX(0);
}

.s726-menu-content {
    padding: 2.4rem 1.6rem;
}

.s726-menu-item {
    display: block;
    padding: 1.6rem;
    margin: 0.8rem 0;
    color: var(--s726-text-primary);
    text-decoration: none;
    border-radius: var(--s726-radius);
    transition: var(--s726-transition);
    font-size: 1.6rem;
    font-weight: 500;
}

.s726-menu-item:hover {
    background: var(--s726-accent);
    color: var(--s726-bg-primary);
    transform: translateX(0.8rem);
}

.s726-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--s726-transition);
}

.s726-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Carousel Styles */
.s726-carousel {
    position: relative;
    width: 100%;
    height: 24rem;
    border-radius: var(--s726-radius-lg);
    overflow: hidden;
    margin: 2.4rem 0;
    box-shadow: var(--s726-shadow-lg);
}

.s726-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.s726-slide.active {
    opacity: 1;
}

.s726-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s726-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 4.0rem;
    height: 4.0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    transition: var(--s726-transition);
    z-index: 2;
}

.s726-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.s726-prev {
    left: 1.6rem;
}

.s726-next {
    right: 1.6rem;
}

.s726-indicators {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 2;
}

.s726-indicator {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--s726-transition);
}

.s726-indicator.active {
    background: var(--s726-accent);
    transform: scale(1.2);
}

/* Game Grid Styles */
.s726-game-section {
    margin: 2.4rem 0;
}

.s726-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--s726-text-primary);
    margin-bottom: 1.6rem;
    text-align: center;
    position: relative;
}

.s726-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.3rem;
    background: var(--s726-accent);
    border-radius: 0.2rem;
}

.s726-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding: 1.6rem 0;
}

.s726-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: var(--s726-radius);
    padding: 1.2rem;
    background: var(--s726-bg-secondary);
    border: 1px solid var(--s726-border);
    transition: var(--s726-transition);
    cursor: pointer;
}

.s726-game-item:hover {
    transform: translateY(-0.4rem);
    box-shadow: var(--s726-shadow-lg);
    border-color: var(--s726-accent);
    background: var(--s726-bg-tertiary);
}

.s726-game-icon {
    width: 6rem;
    height: 6rem;
    border-radius: var(--s726-radius);
    object-fit: cover;
    margin-bottom: 0.8rem;
}

.s726-game-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--s726-text-primary);
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Styles */
.s726-card {
    background: var(--s726-bg-secondary);
    border-radius: var(--s726-radius-lg);
    padding: 2.4rem;
    margin: 2.4rem 0;
    border: 1px solid var(--s726-border);
    box-shadow: var(--s726-shadow);
    transition: var(--s726-transition);
}

.s726-card:hover {
    transform: translateY(-0.2rem);
    box-shadow: var(--s726-shadow-lg);
    border-color: var(--s726-accent);
}

.s726-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--s726-text-primary);
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.s726-card-icon {
    width: 3.2rem;
    height: 3.2rem;
    color: var(--s726-accent);
}

.s726-card-content {
    color: var(--s726-text-secondary);
    line-height: 1.6;
}

.s726-card-content p {
    margin-bottom: 1.6rem;
}

.s726-card-content p:last-child {
    margin-bottom: 0;
}

/* Bottom Navigation */
.s726-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--s726-bg-secondary);
    border-top: 1px solid var(--s726-border);
    z-index: 1000;
    height: 64px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
}

.s726-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--s726-text-secondary);
    transition: var(--s726-transition);
    min-width: 60px;
    min-height: 60px;
    border-radius: var(--s726-radius);
    gap: 0.4rem;
}

.s726-nav-item:hover {
    color: var(--s726-accent);
    background: rgba(255, 182, 193, 0.1);
}

.s726-nav-item.active {
    color: var(--s726-accent);
}

.s726-nav-icon {
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
}

.s726-nav-text {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Footer Styles */
.s726-footer {
    background: var(--s726-bg-secondary);
    border-top: 1px solid var(--s726-border);
    padding: 3.2rem 0;
    margin-top: 4.8rem;
}

.s726-footer-content {
    text-align: center;
}

.s726-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.s726-footer-link {
    color: var(--s726-text-secondary);
    text-decoration: none;
    font-size: 1.4rem;
    transition: var(--s726-transition);
    padding: 0.8rem 1.6rem;
    border-radius: var(--s726-radius);
}

.s726-footer-link:hover {
    color: var(--s726-accent);
    background: rgba(255, 182, 193, 0.1);
}

.s726-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin: 2.4rem 0;
    padding: 1.6rem 0;
}

.s726-partner {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: var(--s726-radius);
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--s726-transition);
}

.s726-partner:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.s726-copyright {
    color: var(--s726-text-muted);
    font-size: 1.2rem;
    margin-top: 2.4rem;
}

/* Typography */
h1.s726-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--s726-text-primary);
    text-align: center;
    margin: 2.4rem 0;
    line-height: 1.2;
}

h2.s726-subheading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--s726-text-primary);
    margin: 2rem 0;
    line-height: 1.3;
}

h3.s726-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--s726-text-primary);
    margin: 1.6rem 0;
    line-height: 1.4;
}

/* Utility Classes */
.s726-text-center {
    text-align: center;
}

.s726-text-left {
    text-align: left;
}

.s726-text-right {
    text-align: right;
}

.s726-mb-1 {
    margin-bottom: 1.6rem;
}

.s726-mb-2 {
    margin-bottom: 2.4rem;
}

.s726-mb-3 {
    margin-bottom: 3.2rem;
}

.s726-mt-1 {
    margin-top: 1.6rem;
}

.s726-mt-2 {
    margin-top: 2.4rem;
}

.s726-mt-3 {
    margin-top: 3.2rem;
}

.s726-p-1 {
    padding: 1.6rem;
}

.s726-p-2 {
    padding: 2.4rem;
}

.s726-p-3 {
    padding: 3.2rem;
}

/* Animations */
@keyframes s726-fadeIn {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes s726-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes s726-slideIn {
    from {
        opacity: 0;
        transform: translateX(-2rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.s726-animate {
    animation: s726-fadeIn 0.6s ease-out;
}

.s726-animate-scale {
    animation: s726-scaleIn 0.5s ease-out;
}

.s726-animate-slide {
    animation: s726-slideIn 0.5s ease-out;
}

/* Loading States */
.s726-loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.s726-spinner {
    width: 4rem;
    height: 4rem;
    border: 0.4rem solid var(--s726-accent-light);
    border-top: 0.4rem solid var(--s726-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .s726-container {
        padding: 0 1.2rem;
    }

    .s726-wrapper {
        padding-top: 60px;
        padding-bottom: 64px;
    }

    .s726-header {
        height: 60px;
    }

    .s726-mobile-menu {
        top: 60px;
    }

    .s726-game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .s726-game-item {
        padding: 0.8rem;
    }

    .s726-game-icon {
        width: 5rem;
        height: 5rem;
    }

    .s726-game-name {
        font-size: 1.1rem;
    }

    .s726-card {
        padding: 1.6rem;
        margin: 1.6rem 0;
    }

    h1.s726-heading {
        font-size: 2.4rem;
    }

    h2.s726-subheading {
        font-size: 2rem;
    }

    h3.s726-title {
        font-size: 1.6rem;
    }

    .s726-hamburger {
        display: flex;
    }

    .s726-header-buttons {
        display: none;
    }

    .s726-bottom-nav {
        display: flex;
    }
}

@media (max-width: 480px) {
    .s726-game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .s726-game-icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .s726-game-name {
        font-size: 1rem;
    }

    .s726-carousel {
        height: 20rem;
    }

    .s726-card {
        padding: 1.2rem;
    }

    .s726-footer-links {
        gap: 1rem;
    }

    .s726-footer-link {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (min-width: 769px) {
    .s726-bottom-nav {
        display: none;
    }

    .s726-wrapper {
        padding-bottom: 0;
    }

    .s726-header-buttons {
        display: flex;
    }

    .s726-hamburger {
        display: none;
    }
}