:root {
    --sb80-primary: #B03060;
    --sb80-secondary: #FF4500;
    --sb80-accent: #FA8072;
    --sb80-dark: #3C3C3C;
    --sb80-darker: #3A3A3A;
    --sb80-text: #FFFFFF;
    --sb80-text-secondary: #CCCCCC;
    --sb80-border: #444444;
    --sb80-shadow: rgba(0, 0, 0, 0.3);
    --sb80-gradient: linear-gradient(135deg, #B03060 0%, #FF4500 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: var(--sb80-darker);
    color: var(--sb80-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.sb80-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 15px;
}

.sb80-wrapper {
    min-height: 100vh;
    position: relative;
}

/* Header */
.sb80-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--sb80-gradient);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--sb80-shadow);
}

.sb80-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sb80-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--sb80-text);
    text-decoration: none;
}

.sb80-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.sb80-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sb80-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.sb80-btn-primary {
    background: var(--sb80-secondary);
    color: var(--sb80-text);
}

.sb80-btn-primary:hover {
    background: #E63900;
    transform: translateY(-2px);
}

.sb80-btn-outline {
    background: transparent;
    color: var(--sb80-text);
    border: 2px solid var(--sb80-text);
}

.sb80-btn-outline:hover {
    background: var(--sb80-text);
    color: var(--sb80-primary);
}

.sb80-menu-toggle {
    background: none;
    border: none;
    color: var(--sb80-text);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

/* Mobile Menu */
.sb80-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--sb80-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.sb80-mobile-menu.active {
    right: 0;
}

.sb80-menu-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;
}

.sb80-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sb80-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sb80-menu-close {
    background: none;
    border: none;
    color: var(--sb80-text);
    font-size: 24px;
    cursor: pointer;
}

.sb80-menu-nav {
    list-style: none;
}

.sb80-menu-nav li {
    margin-bottom: 20px;
}

.sb80-menu-nav a {
    color: var(--sb80-text);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sb80-border);
    transition: color 0.3s ease;
}

.sb80-menu-nav a:hover {
    color: var(--sb80-accent);
}

/* Main Content */
.sb80-main {
    padding-top: 70px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .sb80-main {
        padding-bottom: 80px;
    }
}

/* Hero Carousel */
.sb80-hero {
    position: relative;
    margin-bottom: 30px;
}

.sb80-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px var(--sb80-shadow);
}

.sb80-slide {
    position: relative;
    display: none;
    cursor: pointer;
}

.sb80-slide.active {
    display: block;
}

.sb80-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sb80-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
}

.sb80-slide-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.sb80-slide-desc {
    font-size: 14px;
    opacity: 0.9;
}

.sb80-indicators {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.sb80-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sb80-indicator.active {
    background: var(--sb80-secondary);
    width: 24px;
    border-radius: 4px;
}

/* Games Section */
.sb80-games {
    margin-bottom: 40px;
}

.sb80-section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    background: var(--sb80-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sb80-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.sb80-tab-btn {
    padding: 10px 20px;
    background: var(--sb80-dark);
    border: 2px solid var(--sb80-border);
    border-radius: 25px;
    color: var(--sb80-text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sb80-tab-btn.active {
    background: var(--sb80-primary);
    border-color: var(--sb80-primary);
    color: var(--sb80-text);
}

.sb80-tab-content {
    display: none;
}

.sb80-tab-content.active {
    display: block;
}

.sb80-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sb80-game-card {
    background: var(--sb80-dark);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sb80-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--sb80-shadow);
}

.sb80-game-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.sb80-game-info {
    padding: 12px;
}

.sb80-game-title {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Content Sections */
.sb80-content-section {
    background: var(--sb80-dark);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.sb80-content-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: var(--sb80-secondary);
}

.sb80-content-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--sb80-text-secondary);
    margin-bottom: 16px;
}

.sb80-content-list {
    list-style: none;
    margin: 16px 0;
}

.sb80-content-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--sb80-text-secondary);
}

.sb80-content-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--sb80-secondary);
    font-weight: bold;
}

/* Partners */
.sb80-partners {
    background: var(--sb80-dark);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.sb80-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.sb80-partner-logo {
    width: 100%;
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.sb80-partner-logo:hover {
    opacity: 1;
}

/* Footer */
.sb80-footer {
    background: var(--sb80-darker);
    padding: 40px 0 100px;
    text-align: center;
}

.sb80-footer-content {
    margin-bottom: 24px;
}

.sb80-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.sb80-footer-links a {
    color: var(--sb80-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sb80-footer-links a:hover {
    color: var(--sb80-accent);
}

.sb80-footer-text {
    font-size: 12px;
    color: var(--sb80-text-secondary);
    line-height: 1.6;
}

/* Bottom Navigation */
.sb80-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--sb80-gradient);
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px var(--sb80-shadow);
    display: none;
}

@media (max-width: 768px) {
    .sb80-bottom-nav {
        display: block;
    }
}

.sb80-bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 56px;
}

.sb80-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 60px;
    text-decoration: none;
    color: var(--sb80-text);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sb80-nav-item:hover {
    transform: translateY(-2px);
}

.sb80-nav-icon {
    font-size: 24px;
}

.sb80-nav-label {
    font-size: 10px;
    font-weight: 500;
}

/* Responsive */
@media (min-width: 769px) {
    .sb80-bottom-nav {
        display: none !important;
    }
}

/* Utility Classes */
.sb80-text-center {
    text-align: center;
}

.sb80-mt-20 {
    margin-top: 20px;
}

.sb80-mb-20 {
    margin-bottom: 20px;
}

.sb80-hidden {
    display: none !important;
}

/* Animations */
@keyframes sb80-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sb80-fade-in {
    animation: sb80-fadeIn 0.6s ease forwards;
}