/**
 * LakiWin Layout Stylesheet
 * Prefix: sea7-
 * Version: 1.0.0
 * Color Palette: #CED4DA | #FA8072 | #FFC0CB | #0000FF | #273746 | #E91E63
 */

/* CSS Variables */
:root {
    --sea7-primary: #E91E63;
    --sea7-secondary: #FA8072;
    --sea7-accent: #FFC0CB;
    --sea7-bg-dark: #273746;
    --sea7-bg-darker: #1a252f;
    --sea7-text-light: #CED4DA;
    --sea7-text-white: #ffffff;
    --sea7-link-blue: #0000FF;
    --sea7-gradient: linear-gradient(135deg, #E91E63 0%, #FA8072 100%);
    --sea7-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --sea7-radius: 12px;
    --sea7-radius-sm: 8px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--sea7-bg-dark);
    color: var(--sea7-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.sea7-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sea7-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.sea7-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--sea7-bg-darker);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--sea7-shadow);
}

.sea7-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sea7-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.sea7-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--sea7-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sea7-header-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.sea7-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: var(--sea7-radius-sm);
    font-weight: 600;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 44px;
    min-width: 44px;
}

.sea7-btn-primary {
    background: var(--sea7-gradient);
    color: var(--sea7-text-white);
}

.sea7-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.sea7-btn-outline {
    background: transparent;
    border: 2px solid var(--sea7-primary);
    color: var(--sea7-primary);
}

.sea7-btn-outline:hover {
    background: var(--sea7-primary);
    color: var(--sea7-text-white);
}

/* Hamburger Menu */
.sea7-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.sea7-hamburger span {
    width: 100%;
    height: 3px;
    background: var(--sea7-text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sea7-hamburger-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.sea7-hamburger-active span:nth-child(2) {
    opacity: 0;
}

.sea7-hamburger-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.sea7-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--sea7-bg-darker);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 8rem 2rem 2rem;
    overflow-y: auto;
}

.sea7-menu-active {
    right: 0;
}

.sea7-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;
}

.sea7-overlay-active {
    opacity: 1;
    visibility: visible;
}

.sea7-nav-list {
    list-style: none;
}

.sea7-nav-item {
    border-bottom: 1px solid rgba(206, 212, 218, 0.1);
}

.sea7-nav-link {
    display: block;
    padding: 1.4rem 1rem;
    color: var(--sea7-text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.sea7-nav-link:hover,
.sea7-nav-active {
    color: var(--sea7-primary);
    background: rgba(233, 30, 99, 0.1);
}

/* Main Content */
.sea7-main {
    flex: 1;
    padding-top: 70px;
}

@media (max-width: 768px) {
    .sea7-main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.sea7-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--sea7-radius);
    margin: 1.5rem 0;
}

.sea7-slide {
    display: none;
    width: 100%;
    cursor: pointer;
    border-radius: var(--sea7-radius);
    overflow: hidden;
}

.sea7-slide-active {
    display: block;
    animation: sea7-fadeIn 0.5s ease;
}

@keyframes sea7-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sea7-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Styles */
.sea7-section {
    padding: 2rem 1.5rem;
}

.sea7-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--sea7-text-white);
    text-align: center;
}

.sea7-section-subtitle {
    font-size: 1.5rem;
    color: var(--sea7-primary);
    margin-bottom: 1rem;
}

/* Game Grid */
.sea7-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sea7-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sea7-game-item:hover {
    transform: scale(1.05);
}

.sea7-game-icon {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--sea7-radius-sm);
    overflow: hidden;
    background: var(--sea7-bg-darker);
    margin-bottom: 0.5rem;
}

.sea7-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sea7-game-name {
    font-size: 1.1rem;
    color: var(--sea7-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Section */
.sea7-category {
    margin-bottom: 2.5rem;
}

.sea7-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--sea7-primary);
}

.sea7-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sea7-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sea7-category-title i {
    font-size: 2rem;
}

/* Info Cards */
.sea7-card {
    background: var(--sea7-bg-darker);
    border-radius: var(--sea7-radius);
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(206, 212, 218, 0.1);
}

.sea7-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sea7-primary);
    margin-bottom: 1rem;
}

.sea7-card-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--sea7-text-light);
}

.sea7-card-text a {
    color: var(--sea7-primary);
    font-weight: 600;
}

.sea7-card-text a:hover {
    text-decoration: underline;
}

/* Promo Link */
.sea7-promo-link {
    color: var(--sea7-primary);
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sea7-promo-link:hover {
    color: var(--sea7-secondary);
    text-decoration: underline;
}

.sea7-promo-btn {
    display: inline-block;
    background: var(--sea7-gradient);
    color: var(--sea7-text-white);
    padding: 1.2rem 2.5rem;
    border-radius: var(--sea7-radius);
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.sea7-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
}

/* FAQ Section */
.sea7-faq-item {
    background: var(--sea7-bg-darker);
    border-radius: var(--sea7-radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.sea7-faq-question {
    padding: 1.4rem;
    font-weight: 600;
    color: var(--sea7-text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sea7-faq-answer {
    padding: 0 1.4rem 1.4rem;
    color: var(--sea7-text-light);
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Features List */
.sea7-features-list {
    list-style: none;
}

.sea7-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(206, 212, 218, 0.1);
}

.sea7-feature-icon {
    color: var(--sea7-primary);
    font-size: 2rem;
    flex-shrink: 0;
}

.sea7-feature-text {
    font-size: 1.4rem;
    color: var(--sea7-text-light);
}

/* Footer */
.sea7-footer {
    background: var(--sea7-bg-darker);
    padding: 2.5rem 1.5rem;
    margin-top: auto;
}

.sea7-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sea7-footer-link {
    color: var(--sea7-text-light);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.sea7-footer-link:hover {
    color: var(--sea7-primary);
}

.sea7-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sea7-partner-logo {
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

.sea7-partner-logo:hover {
    opacity: 1;
}

.sea7-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--sea7-text-light);
    opacity: 0.7;
}

/* Bottom Navigation */
.sea7-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--sea7-bg-darker);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(233, 30, 99, 0.3);
}

@media (min-width: 769px) {
    .sea7-bottom-nav {
        display: none;
    }
}

.sea7-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    color: var(--sea7-text-light);
}

.sea7-nav-btn:hover,
.sea7-nav-btn-active {
    color: var(--sea7-primary);
    transform: scale(1.1);
}

.sea7-nav-btn i {
    font-size: 24px;
    margin-bottom: 4px;
}

.sea7-nav-btn span {
    font-size: 11px;
    font-weight: 500;
}

/* Responsive Grid */
@media (max-width: 360px) {
    .sea7-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Utility Classes */
.sea7-text-center { text-align: center; }
.sea7-text-bold { font-weight: 700; }
.sea7-mt-1 { margin-top: 1rem; }
.sea7-mt-2 { margin-top: 2rem; }
.sea7-mb-1 { margin-bottom: 1rem; }
.sea7-mb-2 { margin-bottom: 2rem; }
.sea7-py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.sea7-py-2 { padding-top: 2rem; padding-bottom: 2rem; }

/* H1 Title */
.sea7-h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--sea7-text-white);
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.3;
}

/* Highlight Text */
.sea7-highlight {
    color: var(--sea7-primary);
    font-weight: 600;
}

/* Internal Links */
.sea7-internal-link {
    color: var(--sea7-link-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.sea7-internal-link:hover {
    color: var(--sea7-primary);
}

/* RTP Stats */
.sea7-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sea7-rtp-item {
    background: rgba(233, 30, 99, 0.1);
    border-radius: var(--sea7-radius-sm);
    padding: 1.2rem;
    text-align: center;
}

.sea7-rtp-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sea7-primary);
}

.sea7-rtp-label {
    font-size: 1.2rem;
    color: var(--sea7-text-light);
}
