/**
 * Orion Game - Main Stylesheet
 * Website: oriongame.club
 * Prefix: v65f-
 * Colors: #FFE4B5 | #8B4513 | #0E1621 | #B03060 | #FAF0E6
 */

/* CSS Variables */
:root {
    --v65f-primary: #B03060;
    --v65f-secondary: #8B4513;
    --v65f-bg: #0E1621;
    --v65f-bg-light: #1a2533;
    --v65f-text: #FAF0E6;
    --v65f-text-muted: #FFE4B5;
    --v65f-accent: #B03060;
    --v65f-gold: #FFD700;
    --v65f-success: #28a745;
    --v65f-border-radius: 8px;
    --v65f-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

html {
    font-size: 62.5%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--v65f-bg);
    color: var(--v65f-text);
    line-height: 1.5;
    font-size: 1.6rem;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.v65f-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.v65f-wrapper {
    padding: 2rem 0;
}

/* Header */
.v65f-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--v65f-bg) 0%, var(--v65f-bg-light) 100%);
    padding: 1rem 1.5rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(176, 48, 96, 0.3);
    transition: all 0.3s ease;
}

.v65f-header-scrolled {
    background: rgba(14, 22, 33, 0.95);
    box-shadow: var(--v65f-shadow);
}

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

.v65f-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.v65f-logo img {
    width: 32px;
    height: 32px;
}

.v65f-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--v65f-text);
    background: linear-gradient(90deg, var(--v65f-text-muted), var(--v65f-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v65f-header-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.v65f-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--v65f-border-radius);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.v65f-btn-primary {
    background: linear-gradient(135deg, var(--v65f-primary), #d4447a);
    color: white;
}

.v65f-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(176, 48, 96, 0.4);
}

.v65f-btn-secondary {
    background: transparent;
    border: 1px solid var(--v65f-primary);
    color: var(--v65f-primary);
}

.v65f-btn-secondary:hover {
    background: var(--v65f-primary);
    color: white;
}

.v65f-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.v65f-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--v65f-text);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.v65f-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--v65f-bg-light);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.game2f50-menu-active {
    right: 0;
}

.v65f-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(176, 48, 96, 0.3);
}

.v65f-menu-close {
    background: none;
    border: none;
    color: var(--v65f-text);
    font-size: 2rem;
    cursor: pointer;
}

.v65f-nav-links {
    list-style: none;
}

.v65f-nav-links li {
    margin-bottom: 1rem;
}

.v65f-nav-links a {
    display: block;
    padding: 1rem;
    color: var(--v65f-text);
    font-size: 1.5rem;
    border-radius: var(--v65f-border-radius);
    transition: all 0.3s ease;
}

.v65f-nav-links a:hover {
    background: rgba(176, 48, 96, 0.2);
    color: var(--v65f-primary);
}

.v65f-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.game2f50-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
main {
    padding-top: 70px;
}

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

/* Carousel */
.v65f-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.v65f-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.game2f50-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    cursor: pointer;
}

.game2f50-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v65f-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.game2f50-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.game2f50-dot-active,
.game2f50-dot:hover {
    background: var(--v65f-primary);
}

/* Section Styles */
.v65f-section {
    padding: 2rem 0;
}

.v65f-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--v65f-text);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.v65f-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--v65f-primary), var(--v65f-secondary));
    margin: 0.8rem auto 0;
}

/* Game Grid */
.v65f-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.v65f-game-card {
    background: var(--v65f-bg-light);
    border-radius: var(--v65f-border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 48, 96, 0.2);
}

.v65f-game-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--v65f-shadow);
    border-color: var(--v65f-primary);
}

.v65f-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.v65f-game-name {
    padding: 0.5rem;
    font-size: 1.1rem;
    text-align: center;
    color: var(--v65f-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Section */
.v65f-category-section {
    margin-bottom: 2.5rem;
}

.v65f-category-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.v65f-category-icon {
    width: 28px;
    height: 28px;
    color: var(--v65f-primary);
}

.v65f-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--v65f-text-muted);
}

/* Info Cards */
.v65f-info-card {
    background: linear-gradient(135deg, var(--v65f-bg-light) 0%, rgba(176, 48, 96, 0.1) 100%);
    border-radius: var(--v65f-border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(176, 48, 96, 0.2);
}

.v65f-info-card h3 {
    font-size: 1.6rem;
    color: var(--v65f-text-muted);
    margin-bottom: 1rem;
}

.v65f-info-card p {
    font-size: 1.4rem;
    color: var(--v65f-text);
    line-height: 1.6;
}

/* Promo Button */
.v65f-promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--v65f-primary), #d4447a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0.5rem 0;
}

.v65f-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(176, 48, 96, 0.4);
}

/* Promo Link */
.v65f-promo-link {
    color: var(--v65f-primary);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.v65f-promo-link:hover {
    color: #d4447a;
}

/* Features List */
.v65f-features {
    display: grid;
    gap: 1rem;
}

.v65f-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--v65f-bg-light);
    border-radius: var(--v65f-border-radius);
}

.v65f-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--v65f-primary);
    flex-shrink: 0;
}

.v65f-feature-text {
    font-size: 1.3rem;
    color: var(--v65f-text);
}

/* FAQ Section */
.v65f-faq-item {
    background: var(--v65f-bg-light);
    border-radius: var(--v65f-border-radius);
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--v65f-primary);
}

.v65f-faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--v65f-text-muted);
    margin-bottom: 0.5rem;
}

.v65f-faq-answer {
    font-size: 1.3rem;
    color: var(--v65f-text);
    line-height: 1.5;
}

/* Testimonials */
.v65f-testimonials {
    display: grid;
    gap: 1rem;
}

.v65f-testimonial {
    background: var(--v65f-bg-light);
    border-radius: var(--v65f-border-radius);
    padding: 1.5rem;
}

.v65f-testimonial-text {
    font-size: 1.3rem;
    color: var(--v65f-text);
    font-style: italic;
    margin-bottom: 1rem;
}

.v65f-testimonial-author {
    font-size: 1.2rem;
    color: var(--v65f-primary);
    font-weight: 600;
}

/* Payment Methods */
.v65f-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.v65f-payment-item {
    background: var(--v65f-bg-light);
    border-radius: var(--v65f-border-radius);
    padding: 1rem;
    text-align: center;
}

.v65f-payment-icon {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.v65f-payment-name {
    font-size: 1.2rem;
    color: var(--v65f-text);
}

/* Winners Section */
.v65f-winners {
    background: linear-gradient(135deg, rgba(176, 48, 96, 0.2), var(--v65f-bg-light));
    border-radius: var(--v65f-border-radius);
    padding: 1.5rem;
}

.v65f-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(176, 48, 96, 0.2);
}

.v65f-winner-item:last-child {
    border-bottom: none;
}

.v65f-winner-name {
    font-size: 1.3rem;
    color: var(--v65f-text);
}

.v65f-winner-amount {
    font-size: 1.3rem;
    color: var(--v65f-gold);
    font-weight: 600;
}

/* Footer */
.v65f-footer {
    background: linear-gradient(180deg, var(--v65f-bg-light) 0%, var(--v65f-bg) 100%);
    padding: 2rem 1.5rem 1rem;
    border-top: 1px solid rgba(176, 48, 96, 0.3);
}

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

.v65f-footer-about {
    font-size: 1.3rem;
    color: var(--v65f-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.v65f-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.v65f-footer-link {
    padding: 0.5rem 1rem;
    background: rgba(176, 48, 96, 0.2);
    border-radius: 15px;
    font-size: 1.2rem;
    color: var(--v65f-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.v65f-footer-link:hover {
    background: var(--v65f-primary);
}

.v65f-footer-partners {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.v65f-partner-logo {
    width: 60px;
    height: 30px;
    object-fit: contain;
    filter: grayscale(50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.v65f-partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.v65f-footer-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--v65f-text-muted);
    padding-top: 1rem;
    border-top: 1px solid rgba(176, 48, 96, 0.2);
}

/* Bottom Navigation */
.v65f-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--v65f-bg-light), var(--v65f-bg));
    border-top: 1px solid rgba(176, 48, 96, 0.3);
    padding: 0.5rem 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
}

.v65f-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.v65f-nav-item:hover {
    background: rgba(176, 48, 96, 0.2);
    transform: scale(1.1);
}

.v65f-nav-item.active {
    color: var(--v65f-primary);
}

.v65f-nav-item i,
.v65f-nav-item .material-icons {
    font-size: 22px;
    margin-bottom: 2px;
}

.v65f-nav-item span {
    font-size: 10px;
    color: var(--v65f-text-muted);
}

.v65f-nav-item:hover span,
.v65f-nav-item.active span {
    color: var(--v65f-primary);
}

/* Desktop: Hide bottom nav */
@media (min-width: 769px) {
    .v65f-bottom-nav {
        display: none;
    }
}

/* Desktop Header */
@media (min-width: 769px) {
    .v65f-header {
        padding: 1rem 2rem;
    }

    .v65f-header-content {
        max-width: 1200px;
    }

    .v65f-container {
        max-width: 1200px;
    }
}

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

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

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

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

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

.v65f-hidden {
    display: none;
}

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

.v65f-animate {
    animation: fadeIn 0.5s ease forwards;
}

/* Internal Links */
.v65f-internal-link {
    color: var(--v65f-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.v65f-internal-link:hover {
    color: #d4447a;
}
