/**
 * arion Website Stylesheet
 * Class Prefix: v7f3-
 * Color Palette: #E0FFFF | #34495E | #F0FDFF | #00695C | #CCCCCC
 */

/* CSS Variables */
:root {
    --v7f3-primary: #00695C;
    --v7f3-secondary: #34495E;
    --v7f3-accent: #E0FFFF;
    --v7f3-bg: #F0FDFF;
    --v7f3-text: #34495E;
    --v7f3-text-light: #CCCCCC;
    --v7f3-white: #FFFFFF;
    --v7f3-dark: #1a252f;
    --v7f3-gradient: linear-gradient(135deg, #00695C 0%, #34495E 100%);
    --v7f3-shadow: 0 4px 15px rgba(0, 105, 92, 0.2);
    --v7f3-radius: 12px;
    --v7f3-transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    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(--v7f3-bg);
    color: var(--v7f3-text);
    line-height: 1.5rem;
    font-size: 1.4rem;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--v7f3-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.v7f3-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.v7f3-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--v7f3-gradient);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--v7f3-shadow);
    transition: var(--v7f3-transition);
}

.v7f3-header-scrolled {
    background: rgba(0, 105, 92, 0.95);
    backdrop-filter: blur(10px);
}

.v7f3-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.v7f3-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.v7f3-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--v7f3-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v7f3-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v7f3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--v7f3-transition);
    border: none;
    min-height: 36px;
}

.v7f3-btn-primary {
    background: var(--v7f3-accent);
    color: var(--v7f3-primary);
}

.v7f3-btn-primary:hover {
    background: var(--v7f3-white);
    transform: translateY(-2px);
}

.v7f3-btn-secondary {
    background: transparent;
    color: var(--v7f3-white);
    border: 2px solid var(--v7f3-white);
}

.v7f3-btn-secondary:hover {
    background: var(--v7f3-white);
    color: var(--v7f3-primary);
}

.v7f3-menu-toggle {
    background: transparent;
    border: none;
    color: var(--v7f3-white);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.v7f3-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--v7f3-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.v7f3-menu-active {
    right: 0;
}

.v7f3-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(--v7f3-transition);
}

.v7f3-overlay-active {
    opacity: 1;
    visibility: visible;
}

.v7f3-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v7f3-menu-close {
    background: transparent;
    border: none;
    color: var(--v7f3-white);
    font-size: 2.4rem;
    cursor: pointer;
}

.v7f3-menu-nav {
    list-style: none;
}

.v7f3-menu-nav li {
    margin-bottom: 0.5rem;
}

.v7f3-menu-nav a {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--v7f3-white);
    font-size: 1.5rem;
    border-radius: 8px;
    transition: var(--v7f3-transition);
}

.v7f3-menu-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--v7f3-accent);
}

/* Main Content */
.v7f3-main {
    padding-top: 70px;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .v7f3-main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.v7f3-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--v7f3-radius);
    margin-bottom: 2rem;
}

.v7f3-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.v7f3-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v7f3-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.v7f3-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--v7f3-transition);
}

.v7f3-dot-active {
    background: var(--v7f3-white);
    transform: scale(1.2);
}

/* Section Styles */
.v7f3-section {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.v7f3-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--v7f3-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.v7f3-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--v7f3-gradient);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* Game Grid */
.v7f3-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.v7f3-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--v7f3-transition);
    background: var(--v7f3-white);
    border-radius: 10px;
    padding: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.v7f3-game-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 105, 92, 0.2);
}

.v7f3-game-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.v7f3-game-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--v7f3-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Title */
.v7f3-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--v7f3-secondary);
    margin: 1.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--v7f3-primary);
}

/* Content Cards */
.v7f3-card {
    background: var(--v7f3-white);
    border-radius: var(--v7f3-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.v7f3-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--v7f3-primary);
    margin-bottom: 1rem;
}

.v7f3-card-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--v7f3-text);
}

/* Promo Link Styles */
.v7f3-promo-link {
    color: var(--v7f3-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--v7f3-transition);
}

.v7f3-promo-link:hover {
    color: var(--v7f3-secondary);
    text-decoration: underline;
}

.v7f3-promo-btn {
    display: inline-block;
    background: var(--v7f3-gradient);
    color: var(--v7f3-white);
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--v7f3-transition);
    border: none;
    text-align: center;
}

.v7f3-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 105, 92, 0.3);
}

/* Features List */
.v7f3-features-list {
    list-style: none;
}

.v7f3-features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.v7f3-features-list li:last-child {
    border-bottom: none;
}

.v7f3-features-list i {
    color: var(--v7f3-primary);
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

/* Footer */
.v7f3-footer {
    background: var(--v7f3-dark);
    color: var(--v7f3-white);
    padding: 2.5rem 1.5rem;
}

.v7f3-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.v7f3-footer-links a {
    color: var(--v7f3-text-light);
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--v7f3-transition);
}

.v7f3-footer-links a:hover {
    color: var(--v7f3-accent);
    background: rgba(255, 255, 255, 0.1);
}

.v7f3-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.v7f3-partners img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    opacity: 0.7;
    transition: var(--v7f3-transition);
}

.v7f3-partners img:hover {
    opacity: 1;
}

.v7f3-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--v7f3-text-light);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Bottom Navigation */
.v7f3-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--v7f3-gradient);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
    .v7f3-bottom-nav {
        display: none;
    }
}

.v7f3-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: var(--v7f3-transition);
    color: var(--v7f3-white);
    opacity: 0.8;
}

.v7f3-nav-item:hover,
.v7f3-nav-item.v7f3-nav-active {
    opacity: 1;
    transform: scale(1.1);
}

.v7f3-nav-item i,
.v7f3-nav-item .material-icons-outlined {
    font-size: 24px;
    margin-bottom: 4px;
}

.v7f3-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

/* Utility Classes */
.v7f3-text-center { text-align: center; }
.v7f3-text-primary { color: var(--v7f3-primary); }
.v7f3-text-white { color: var(--v7f3-white); }
.v7f3-mb-1 { margin-bottom: 1rem; }
.v7f3-mb-2 { margin-bottom: 2rem; }
.v7f3-mt-2 { margin-top: 2rem; }
.v7f3-py-2 { padding-top: 2rem; padding-bottom: 2rem; }

/* Responsive Adjustments */
@media (max-width: 380px) {
    .v7f3-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .v7f3-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1.2rem;
    }
}

/* FAQ Accordion */
.v7f3-faq-item {
    background: var(--v7f3-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.v7f3-faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: var(--v7f3-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v7f3-faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: var(--v7f3-text);
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Stats Grid */
.v7f3-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.v7f3-stat-item {
    background: var(--v7f3-white);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.v7f3-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--v7f3-primary);
}

.v7f3-stat-label {
    font-size: 1.2rem;
    color: var(--v7f3-text);
}
