/**
 * Plush PH - Main Stylesheet
 * Prefix: s0a6-
 * Website: plushph.click
 */

/* CSS Variables */
:root {
    --s0a6-primary: #8A2BE2;
    --s0a6-secondary: #BA55D3;
    --s0a6-accent: #FFA500;
    --s0a6-dark: #0E1621;
    --s0a6-darker: #4B0082;
    --s0a6-light: #EEEEEE;
    --s0a6-white: #FFFFFF;
    --s0a6-gradient: linear-gradient(135deg, #8A2BE2 0%, #BA55D3 50%, #4B0082 100%);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--s0a6-dark);
    color: var(--s0a6-light);
    line-height: 1.5;
    min-height: 100vh;
}

/* Container */
.s0a6-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.s0a6-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--s0a6-darker) 0%, var(--s0a6-dark) 100%);
    padding: 1rem 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.s0a6-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.s0a6-logo img {
    width: 28px;
    height: 28px;
}

.s0a6-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--s0a6-white);
    background: var(--s0a6-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s0a6-header-btns {
    display: flex;
    gap: 0.8rem;
}

.s0a6-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.s0a6-btn-primary {
    background: var(--s0a6-gradient);
    color: var(--s0a6-white);
}

.s0a6-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.s0a6-btn-secondary {
    background: transparent;
    color: var(--s0a6-accent);
    border: 2px solid var(--s0a6-accent);
}

.s0a6-btn-secondary:hover {
    background: var(--s0a6-accent);
    color: var(--s0a6-dark);
}

.s0a6-menu-toggle {
    background: none;
    border: none;
    color: var(--s0a6-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.s0a6-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--s0a6-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
}

.s0a6-menu-open {
    right: 0;
}

.s0a6-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.s0a6-overlay-visible {
    opacity: 1;
    visibility: visible;
}

.s0a6-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--s0a6-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.s0a6-menu-links {
    list-style: none;
}

.s0a6-menu-links li {
    margin-bottom: 1.5rem;
}

.s0a6-menu-links a {
    color: var(--s0a6-light);
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.8rem;
    transition: all 0.3s ease;
}

.s0a6-menu-links a:hover {
    background: rgba(138, 43, 226, 0.2);
    color: var(--s0a6-accent);
}

/* Main Content */
main {
    padding-top: 7rem;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.s0a6-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.s0a6-slides {
    position: relative;
}

.s0a6-slide {
    display: none;
    cursor: pointer;
}

.s0a6-slide:first-child {
    display: block;
}

.s0a6-slide img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.s0a6-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.s0a6-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.s0a6-dot-active {
    background: var(--s0a6-accent);
    transform: scale(1.2);
}

/* Section Title */
.s0a6-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    color: var(--s0a6-white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.s0a6-section-title i {
    color: var(--s0a6-accent);
}

/* Game Grid */
.s0a6-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.s0a6-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.s0a6-game-item:hover {
    transform: scale(1.05);
}

.s0a6-game-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 1rem;
    object-fit: cover;
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.s0a6-game-name {
    font-size: 1.1rem;
    color: var(--s0a6-light);
    margin-top: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Content Section */
.s0a6-content-section {
    background: rgba(138, 43, 226, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.s0a6-content-section h2 {
    font-size: 1.8rem;
    color: var(--s0a6-accent);
    margin-bottom: 1rem;
}

.s0a6-content-section p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--s0a6-light);
    margin-bottom: 1rem;
}

.s0a6-content-section ul {
    list-style: none;
    padding-left: 0;
}

.s0a6-content-section li {
    font-size: 1.4rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.s0a6-content-section li:last-child {
    border-bottom: none;
}

/* Promo Link */
.s0a6-promo-link {
    color: var(--s0a6-accent);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.s0a6-promo-link:hover {
    color: var(--s0a6-primary);
    text-decoration: underline;
}

/* Footer */
.s0a6-footer {
    background: var(--s0a6-darker);
    padding: 3rem 1.5rem 2rem;
    margin-top: 3rem;
}

.s0a6-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.s0a6-footer-links a {
    color: var(--s0a6-light);
    text-decoration: none;
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.s0a6-footer-links a:hover {
    background: rgba(138, 43, 226, 0.3);
    color: var(--s0a6-accent);
}

.s0a6-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.s0a6-partners img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.s0a6-partners img:hover {
    opacity: 1;
}

.s0a6-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bottom Navigation */
.s0a6-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--s0a6-darker) 0%, var(--s0a6-dark) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
    z-index: 1000;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}

@media (min-width: 769px) {
    .s0a6-bottom-nav {
        display: none;
    }
}

.s0a6-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    background: none;
    border: none;
    color: var(--s0a6-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.s0a6-nav-btn:hover,
.s0a6-nav-btn.active {
    color: var(--s0a6-accent);
    transform: scale(1.1);
}

.s0a6-nav-btn i,
.s0a6-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 0.3rem;
}

.s0a6-nav-btn span {
    font-size: 1rem;
    font-weight: 500;
}

/* Feature Cards */
.s0a6-feature-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(75, 0, 130, 0.3) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.s0a6-feature-card h3 {
    font-size: 1.5rem;
    color: var(--s0a6-accent);
    margin-bottom: 0.8rem;
}

.s0a6-feature-card p {
    font-size: 1.3rem;
    color: var(--s0a6-light);
    line-height: 1.6;
}

/* Stats Grid */
.s0a6-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.s0a6-stat-item {
    background: rgba(138, 43, 226, 0.15);
    border-radius: 1rem;
    padding: 1.2rem;
    text-align: center;
}

.s0a6-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--s0a6-accent);
}

.s0a6-stat-label {
    font-size: 1.2rem;
    color: var(--s0a6-light);
    margin-top: 0.5rem;
}

/* FAQ Section */
.s0a6-faq-item {
    background: rgba(138, 43, 226, 0.1);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.s0a6-faq-question {
    padding: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--s0a6-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s0a6-faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    color: var(--s0a6-light);
    line-height: 1.6;
}

/* CTA Button */
.s0a6-cta-btn {
    display: block;
    width: 100%;
    padding: 1.5rem;
    background: var(--s0a6-gradient);
    color: var(--s0a6-white);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    margin: 2rem 0;
}

.s0a6-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

/* Responsive */
@media (max-width: 430px) {
    .s0a6-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }

    .s0a6-game-name {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .s0a6-container {
        max-width: 768px;
    }

    .s0a6-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
