/**
 * Arion Pay Layout Stylesheet
 * Website: arionpay.sbs
 * Version: 1.0.0
 * Prefix: s0ee-
 * Colors: #800080 | #2C3E50 | #9966CC | #40E0D0 | #0000CD
 */

/* CSS Variables */
:root {
    --s0ee-primary: #800080;
    --s0ee-secondary: #2C3E50;
    --s0ee-accent: #9966CC;
    --s0ee-highlight: #40E0D0;
    --s0ee-link: #0000CD;
    --s0ee-bg-dark: #1a1a2e;
    --s0ee-bg-darker: #0f0f1a;
    --s0ee-text-light: #ffffff;
    --s0ee-text-muted: #b8b8b8;
    --s0ee-gradient: linear-gradient(135deg, #800080, #9966CC);
    --s0ee-shadow: 0 4px 15px rgba(128, 0, 128, 0.3);
}

/* Reset & Base */
* {
    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: var(--s0ee-bg-dark);
    color: var(--s0ee-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

/* Container */
.s0ee-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.s0ee-wrapper {
    width: 100%;
    overflow-x: hidden;
}

/* Header */
.s0ee-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--s0ee-bg-darker), var(--s0ee-bg-dark));
    border-bottom: 1px solid rgba(153, 102, 204, 0.3);
    padding: 1rem 0;
}

.s0ee-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.s0ee-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.s0ee-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.s0ee-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--s0ee-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s0ee-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.s0ee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.s0ee-btn-primary {
    background: var(--s0ee-gradient);
    color: var(--s0ee-text-light);
    box-shadow: var(--s0ee-shadow);
}

.s0ee-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 128, 0.4);
}

.s0ee-btn-secondary {
    background: transparent;
    color: var(--s0ee-highlight);
    border: 1px solid var(--s0ee-highlight);
}

.s0ee-btn-secondary:hover {
    background: rgba(64, 224, 208, 0.1);
}

.s0ee-menu-toggle {
    background: none;
    border: none;
    color: var(--s0ee-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.s0ee-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--s0ee-bg-darker);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem;
}

.s0ee-menu-active {
    right: 0;
}

.s0ee-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(153, 102, 204, 0.3);
}

.s0ee-menu-close {
    background: none;
    border: none;
    color: var(--s0ee-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.s0ee-menu-nav {
    list-style: none;
}

.s0ee-menu-nav li {
    margin-bottom: 0.5rem;
}

.s0ee-menu-nav a {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--s0ee-text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.s0ee-menu-nav a:hover {
    background: rgba(128, 0, 128, 0.2);
    color: var(--s0ee-highlight);
}

.s0ee-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;
}

.s0ee-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.s0ee-main {
    padding-top: 70px;
    padding-bottom: 80px;
}

/* Slider/Carousel */
.s0ee-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.s0ee-slides {
    position: relative;
}

.s0ee-slide {
    display: none;
    cursor: pointer;
}

.s0ee-slide:first-child {
    display: block;
}

.s0ee-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.s0ee-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.s0ee-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.s0ee-dot-active {
    background: var(--s0ee-highlight);
    width: 20px;
    border-radius: 4px;
}

/* Section Titles */
.s0ee-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--s0ee-text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.s0ee-section-title i {
    color: var(--s0ee-highlight);
}

/* Game Grid */
.s0ee-game-section {
    margin-bottom: 2.5rem;
}

.s0ee-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.s0ee-game-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.s0ee-game-card:hover {
    transform: scale(1.05);
}

.s0ee-game-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.s0ee-game-card:hover .s0ee-game-img {
    border-color: var(--s0ee-accent);
}

.s0ee-game-name {
    font-size: 1.1rem;
    color: var(--s0ee-text-muted);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Content Sections */
.s0ee-content-section {
    background: rgba(44, 62, 80, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(153, 102, 204, 0.2);
}

.s0ee-content-section h2 {
    font-size: 1.6rem;
    color: var(--s0ee-highlight);
    margin-bottom: 1rem;
}

.s0ee-content-section p {
    color: var(--s0ee-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.s0ee-content-section ul {
    list-style: none;
    padding-left: 0;
}

.s0ee-content-section li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--s0ee-text-muted);
}

.s0ee-content-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 8px;
    height: 8px;
    background: var(--s0ee-accent);
    border-radius: 50%;
}

/* Promo Link */
.s0ee-promo-link {
    color: var(--s0ee-highlight);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.s0ee-promo-link:hover {
    color: var(--s0ee-primary);
    text-decoration: underline;
}

/* Footer */
.s0ee-footer {
    background: var(--s0ee-bg-darker);
    padding: 2rem 0;
    border-top: 1px solid rgba(153, 102, 204, 0.3);
}

.s0ee-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.s0ee-footer-links a {
    color: var(--s0ee-text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.s0ee-footer-links a:hover {
    color: var(--s0ee-highlight);
}

.s0ee-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.s0ee-partners img {
    width: 40px;
    height: 20px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.s0ee-partners img:hover {
    opacity: 1;
}

.s0ee-copyright {
    text-align: center;
    color: var(--s0ee-text-muted);
    font-size: 1.2rem;
}

/* Bottom Navigation */
.s0ee-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, var(--s0ee-bg-dark), var(--s0ee-bg-darker));
    border-top: 1px solid rgba(153, 102, 204, 0.3);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

.s0ee-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--s0ee-text-muted);
}

.s0ee-nav-item:hover {
    color: var(--s0ee-highlight);
    transform: scale(1.1);
}

.s0ee-nav-item.active {
    color: var(--s0ee-highlight);
}

.s0ee-nav-item i {
    font-size: 24px;
    margin-bottom: 4px;
}

.s0ee-nav-item span {
    font-size: 10px;
    text-align: center;
}

/* RTP Table */
.s0ee-rtp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2rem;
}

.s0ee-rtp-table th,
.s0ee-rtp-table td {
    padding: 1rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(153, 102, 204, 0.2);
}

.s0ee-rtp-table th {
    color: var(--s0ee-highlight);
    font-weight: 600;
}

.s0ee-rtp-table td {
    color: var(--s0ee-text-muted);
}

/* FAQ Section */
.s0ee-faq-item {
    background: rgba(44, 62, 80, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.2rem;
}

.s0ee-faq-question {
    font-weight: 600;
    color: var(--s0ee-text-light);
    margin-bottom: 0.5rem;
}

.s0ee-faq-answer {
    color: var(--s0ee-text-muted);
    font-size: 1.3rem;
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
    .s0ee-bottom-nav {
        display: none;
    }

    .s0ee-main {
        padding-bottom: 2rem;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .s0ee-container {
        max-width: 1200px;
    }

    .s0ee-header-inner {
        max-width: 1200px;
    }

    .s0ee-game-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .s0ee-menu-toggle {
        display: none;
    }
}

/* Utility Classes */
.s0ee-text-center {
    text-align: center;
}

.s0ee-mb-1 {
    margin-bottom: 1rem;
}

.s0ee-mb-2 {
    margin-bottom: 2rem;
}

.s0ee-mb-3 {
    margin-bottom: 3rem;
}

.s0ee-highlight-text {
    color: var(--s0ee-highlight);
}

.s0ee-gradient-text {
    background: var(--s0ee-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
