/**
 * bet100 app - Main Stylesheet
 * Prefix: s13e-
 * Color Palette: #E91E63 | #262626 | #FA8072 | #E6E6FA | #CCCCCC
 */

/* CSS Variables */
:root {
    --s13e-primary: #E91E63;
    --s13e-secondary: #FA8072;
    --s13e-dark: #262626;
    --s13e-light: #E6E6FA;
    --s13e-gray: #CCCCCC;
    --s13e-white: #FFFFFF;
    --s13e-bg-dark: #1a1a1a;
    --s13e-bg-gradient: linear-gradient(135deg, #E91E63 0%, #FA8072 100%);

    --s13e-header-height: 60px;
    --s13e-bottom-nav-height: 60px;
    --s13e-container-max: 430px;

    --s13e-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --s13e-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --s13e-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

    --s13e-radius-sm: 4px;
    --s13e-radius-md: 8px;
    --s13e-radius-lg: 12px;
    --s13e-radius-xl: 16px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--s13e-white);
    background-color: var(--s13e-dark);
    overflow-x: hidden;
}

/* Utility Classes */
.s13e-container {
    max-width: var(--s13e-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.s13e-wrapper {
    width: 100%;
    position: relative;
}

/* Header Styles */
.s13e-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--s13e-header-height);
    background: var(--s13e-dark);
    border-bottom: 1px solid rgba(233, 30, 99, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.s13e-header-scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--s13e-shadow-md);
}

.s13e-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--s13e-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.s13e-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--s13e-white);
}

.s13e-logo img {
    width: 32px;
    height: 32px;
    border-radius: var(--s13e-radius-sm);
}

.s13e-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--s13e-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s13e-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.s13e-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--s13e-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.s13e-btn-primary {
    background: var(--s13e-bg-gradient);
    color: var(--s13e-white);
}

.s13e-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--s13e-shadow-md);
}

.s13e-btn-secondary {
    background: transparent;
    color: var(--s13e-primary);
    border: 2px solid var(--s13e-primary);
}

.s13e-btn-secondary:hover {
    background: var(--s13e-primary);
    color: var(--s13e-white);
}

/* Hamburger Menu */
.s13e-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    cursor: pointer;
    z-index: 10001;
}

.s13e-hamburger span {
    width: 100%;
    height: 3px;
    background: var(--s13e-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.s13e-hamburger-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.s13e-hamburger-active span:nth-child(2) {
    opacity: 0;
}

.s13e-hamburger-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.s13e-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--s13e-header-height) + 2rem);
    padding-bottom: calc(var(--s13e-bottom-nav-height) + 2rem);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.s13e-mobile-menu-active {
    transform: translateX(0);
}

.s13e-mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 2rem;
}

.s13e-mobile-menu-link {
    display: block;
    padding: 1.5rem;
    color: var(--s13e-white);
    text-decoration: none;
    font-size: 1.6rem;
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.s13e-mobile-menu-link:hover {
    background: rgba(233, 30, 99, 0.1);
    padding-left: 2rem;
}

/* Desktop Navigation */
.s13e-desktop-nav {
    display: none;
}

@media (min-width: 769px) {
    .s13e-hamburger {
        display: none;
    }

    .s13e-desktop-nav {
        display: flex;
        gap: 2rem;
    }

    .s13e-desktop-nav a {
        color: var(--s13e-white);
        text-decoration: none;
        font-size: 1.4rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .s13e-desktop-nav a:hover {
        color: var(--s13e-primary);
    }

    .s13e-mobile-menu {
        display: none;
    }
}

/* Main Content */
main {
    padding-top: var(--s13e-header-height);
    min-height: 100vh;
}

@media (max-width: 768px) {
    main {
        padding-bottom: calc(var(--s13e-bottom-nav-height) + 2rem);
    }
}

/* Carousel Styles */
.s13e-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.s13e-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.s13e-carousel-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.s13e-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.s13e-carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.s13e-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.s13e-carousel-indicator-active {
    background: var(--s13e-primary);
    width: 24px;
    border-radius: 4px;
}

/* Section Styles */
.s13e-section {
    padding: 3rem 0;
}

.s13e-section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--s13e-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Game Grid */
.s13e-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.s13e-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--s13e-radius-md);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.s13e-game-card:hover {
    background: rgba(233, 30, 99, 0.1);
    transform: translateY(-4px);
    box-shadow: var(--s13e-shadow-md);
}

.s13e-game-card img {
    width: 100%;
    height: auto;
    border-radius: var(--s13e-radius-sm);
    margin-bottom: 0.5rem;
}

.s13e-game-name {
    font-size: 1.2rem;
    color: var(--s13e-white);
    text-align: center;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Bottom Navigation */
.s13e-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--s13e-bottom-nav-height);
    background: linear-gradient(180deg, #262626 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(233, 30, 99, 0.3);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.s13e-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    color: var(--s13e-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.5rem;
}

.s13e-bottom-nav-item:hover,
.s13e-bottom-nav-item-active {
    color: var(--s13e-primary);
    transform: scale(1.1);
}

.s13e-bottom-nav-icon {
    font-size: 24px;
    margin-bottom: 0.3rem;
}

.s13e-bottom-nav-text {
    font-size: 1rem;
    font-weight: 500;
}

@media (min-width: 769px) {
    .s13e-bottom-nav {
        display: none;
    }
}

/* Footer */
.s13e-footer {
    background: var(--s13e-bg-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
}

.s13e-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.s13e-footer-link {
    color: var(--s13e-gray);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.s13e-footer-link:hover {
    color: var(--s13e-primary);
}

.s13e-partners {
    margin-bottom: 2rem;
}

.s13e-partners-title {
    font-size: 1.4rem;
    color: var(--s13e-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.s13e-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.s13e-partner-logo {
    width: 60px;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.s13e-partner-logo:hover {
    opacity: 1;
}

.s13e-copyright {
    text-align: center;
    color: var(--s13e-gray);
    font-size: 1.2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Content Styles */
.s13e-content {
    line-height: 1.8;
    color: var(--s13e-white);
}

.s13e-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--s13e-primary);
}

.s13e-content p {
    margin-bottom: 1.5rem;
}

.s13e-content a {
    color: var(--s13e-primary);
    text-decoration: none;
    font-weight: 600;
}

.s13e-content a:hover {
    text-decoration: underline;
}

.s13e-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.s13e-content li {
    margin-bottom: 0.8rem;
}

/* Promo Text Link */
.s13e-promo-text {
    display: inline;
    color: var(--s13e-primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s13e-promo-text:hover {
    color: var(--s13e-secondary);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 430px) {
    html {
        font-size: 55%;
    }

    .s13e-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 350px) {
    .s13e-header-actions {
        gap: 0.5rem;
    }

    .s13e-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1.2rem;
    }
}
