/**
 * Aceph Login - Main Stylesheet
 * Website: acephlogin.cfd
 * Prefix: s2c1-
 * Colors: #FAF0E6 | #D2691E | #0D1117 | #FFEFD5 | #FFE135
 */

/* CSS Variables */
:root {
    --s2c1-bg-dark: #0D1117;
    --s2c1-bg-light: #FAF0E6;
    --s2c1-primary: #D2691E;
    --s2c1-secondary: #FFEFD5;
    --s2c1-accent: #FFE135;
    --s2c1-text-light: #FAF0E6;
    --s2c1-text-dark: #0D1117;
    --s2c1-gradient: linear-gradient(135deg, #D2691E 0%, #FFE135 100%);
}

/* Reset and 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-color: var(--s2c1-bg-dark);
    color: var(--s2c1-text-light);
    line-height: 1.5rem;
    min-height: 100vh;
}

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

/* Header Styles */
.s2c1-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(13,17,23,0.98) 0%, rgba(13,17,23,0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(210,105,30,0.3);
}

.s2c1-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 430px;
    margin: 0 auto;
}

.s2c1-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.s2c1-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.s2c1-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--s2c1-accent);
}

.s2c1-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.s2c1-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: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.s2c1-btn-primary {
    background: var(--s2c1-gradient);
    color: var(--s2c1-text-dark);
}

.s2c1-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(210,105,30,0.4);
}

.s2c1-btn-outline {
    background: transparent;
    border: 2px solid var(--s2c1-primary);
    color: var(--s2c1-primary);
}

.s2c1-btn-outline:hover {
    background: var(--s2c1-primary);
    color: var(--s2c1-text-light);
}

.s2c1-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--s2c1-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Navigation */
.s2c1-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.s2c1-nav-link {
    color: var(--s2c1-text-light);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.s2c1-nav-link:hover {
    color: var(--s2c1-accent);
}

/* Mobile Menu */
.s2c1-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--s2c1-bg-dark);
    z-index: 9999;
    padding: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(210,105,30,0.3);
}

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

.s2c1-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(210,105,30,0.3);
}

.s2c1-close-btn {
    background: none;
    border: none;
    color: var(--s2c1-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.s2c1-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.s2c1-mobile-nav a {
    color: var(--s2c1-text-light);
    text-decoration: none;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.s2c1-mobile-nav a:hover {
    background: rgba(210,105,30,0.2);
    color: var(--s2c1-accent);
}

/* Menu Overlay */
.s2c1-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;
}

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

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

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

/* Slider Styles */
.s2c1-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

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

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

.s2c1-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.x2c11-dot-active {
    background: var(--s2c1-accent);
    transform: scale(1.2);
}

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

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

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

.s2c1-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.s2c1-game-item:hover {
    transform: scale(1.05);
}

.s2c1-game-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.s2c1-game-item:hover .s2c1-game-img {
    border-color: var(--s2c1-primary);
}

.s2c1-game-name {
    font-size: 1.1rem;
    color: var(--s2c1-text-light);
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Title */
.s2c1-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--s2c1-primary);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--s2c1-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Card Styles */
.s2c1-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(210,105,30,0.2);
}

.s2c1-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--s2c1-accent);
    margin-bottom: 1rem;
}

.s2c1-card-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--s2c1-text-light);
}

/* Link Styles */
.s2c1-link {
    color: var(--s2c1-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.s2c1-link:hover {
    color: var(--s2c1-accent);
    text-decoration: underline;
}

/* Promo Link */
.s2c1-promo-link {
    color: var(--s2c1-accent);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s2c1-promo-link:hover {
    color: var(--s2c1-primary);
    text-shadow: 0 0 10px rgba(210,105,30,0.5);
}

/* Footer Styles */
.s2c1-footer {
    background: linear-gradient(180deg, rgba(13,17,23,1) 0%, rgba(26,34,44,1) 100%);
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(210,105,30,0.3);
}

.s2c1-footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.s2c1-footer-desc {
    font-size: 1.2rem;
    color: rgba(250,240,230,0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.s2c1-footer-link {
    padding: 0.8rem 1.5rem;
    background: var(--s2c1-gradient);
    color: var(--s2c1-text-dark);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s2c1-footer-link:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(210,105,30,0.4);
}

.s2c1-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(210,105,30,0.2);
    border-bottom: 1px solid rgba(210,105,30,0.2);
}

.s2c1-footer-nav a {
    color: var(--s2c1-text-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.s2c1-footer-nav a:hover {
    color: var(--s2c1-accent);
}

.s2c1-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(250,240,230,0.6);
}

/* Bottom Navigation (Mobile) */
.s2c1-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(26,34,44,0.98) 0%, rgba(13,17,23,0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(210,105,30,0.3);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.5rem;
}

.s2c1-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    text-decoration: none;
    color: var(--s2c1-text-light);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
}

.s2c1-bottom-nav-item:hover {
    color: var(--s2c1-accent);
    transform: scale(1.1);
}

.x2c11-nav-active {
    color: var(--s2c1-primary);
    background: rgba(210,105,30,0.15);
}

.s2c1-bottom-nav-item i,
.s2c1-bottom-nav-item span.iconify {
    font-size: 24px;
    margin-bottom: 4px;
}

.s2c1-bottom-nav-item .material-icons {
    font-size: 24px;
    margin-bottom: 4px;
}

.s2c1-bottom-nav-text {
    font-size: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .s2c1-bottom-nav {
        display: flex;
    }

    .s2c1-nav {
        display: none;
    }

    .s2c1-menu-btn {
        display: block;
    }
}

/* List Styles */
.s2c1-list {
    list-style: none;
    padding: 0;
}

.s2c1-list li {
    padding: 0.8rem 0;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(210,105,30,0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.s2c1-list li:last-child {
    border-bottom: none;
}

/* Badge */
.s2c1-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--s2c1-primary);
    color: var(--s2c1-text-light);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
}

/* Grid Layout */
.s2c1-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.s2c1-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Responsive */
@media (max-width: 430px) {
    .s2c1-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .s2c1-game-img {
        width: 60px;
        height: 60px;
    }
}

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

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

/* Partners Section */
.s2c1-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

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

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

/* Testimonial */
.s2c1-testimonial {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--s2c1-primary);
}

.s2c1-testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
}

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

/* Payment Methods */
.s2c1-payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.s2c1-payment-item {
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
}
