/**
 * GG77 Layout Stylesheet
 * Website: gg77.click
 * Prefix: ged7-
 * Color Palette: #2C2C2C (bg), #808080 (text), #0000CD (accent)
 */

/* CSS Variables */
:root {
    --ged7-bg-dark: #1a1a2e;
    --ged7-bg-primary: #2C2C2C;
    --ged7-bg-secondary: #16213e;
    --ged7-text-light: #f0f0f0;
    --ged7-text-muted: #808080;
    --ged7-accent: #0000CD;
    --ged7-accent-hover: #1e3aff;
    --ged7-gold: #ffd700;
    --ged7-gradient: linear-gradient(135deg, #0000CD 0%, #4169E1 100%);
    --ged7-shadow: 0 4px 15px rgba(0, 0, 205, 0.3);
    --ged7-radius: 8px;
    --ged7-transition: all 0.3s ease;
}

/* Reset & 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: var(--ged7-bg-dark);
    color: var(--ged7-text-light);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--ged7-transition);
}

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

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

/* Header */
.ged7-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, var(--ged7-bg-primary) 0%, var(--ged7-bg-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 1000;
    box-shadow: var(--ged7-shadow);
    border-bottom: 2px solid var(--ged7-accent);
}

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

.ged7-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.ged7-logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: var(--ged7-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.ged7-btn {
    padding: 0.8rem 1.5rem;
    border-radius: var(--ged7-radius);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--ged7-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ged7-btn-primary {
    background: var(--ged7-gradient);
    color: #fff;
    box-shadow: var(--ged7-shadow);
}

.ged7-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 205, 0.4);
}

.ged7-btn-secondary {
    background: transparent;
    color: var(--ged7-text-light);
    border: 2px solid var(--ged7-accent);
}

.ged7-btn-secondary:hover {
    background: var(--ged7-accent);
}

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

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

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

.ged7-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: var(--ged7-transition);
}

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

.ged7-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--ged7-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.ged7-menu-links {
    list-style: none;
}

.ged7-menu-links li {
    margin-bottom: 1.5rem;
}

.ged7-menu-links a {
    display: block;
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
    color: var(--ged7-text-light);
    border-radius: var(--ged7-radius);
    transition: var(--ged7-transition);
}

.ged7-menu-links a:hover {
    background: var(--ged7-accent);
    padding-left: 2rem;
}

/* Main Content */
.ged7-main {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Carousel */
.ged7-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.ged7-slide {
    display: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.ged7-slide:first-child {
    display: block;
}

.ged7-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--ged7-radius);
}

.ged7-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.ged7-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--ged7-transition);
}

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

/* Section Titles */
.ged7-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--ged7-text-light);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.ged7-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--ged7-gradient);
    border-radius: 2px;
}

/* Game Grid */
.ged7-games-section {
    padding: 2rem 0;
}

.ged7-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--ged7-gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ged7-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ged7-game-card {
    background: var(--ged7-bg-secondary);
    border-radius: var(--ged7-radius);
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: var(--ged7-transition);
    border: 1px solid rgba(0, 0, 205, 0.2);
}

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

.ged7-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.ged7-game-name {
    font-size: 1.1rem;
    color: var(--ged7-text-light);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Info Sections */
.ged7-info-section {
    background: var(--ged7-bg-secondary);
    border-radius: var(--ged7-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 205, 0.2);
}

.ged7-info-section h2 {
    font-size: 1.8rem;
    color: var(--ged7-accent);
    margin-bottom: 1rem;
}

.ged7-info-section p {
    font-size: 1.4rem;
    color: var(--ged7-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ged7-info-section ul {
    list-style: none;
    padding-left: 0;
}

.ged7-info-section li {
    font-size: 1.4rem;
    color: var(--ged7-text-light);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ged7-info-section li:last-child {
    border-bottom: none;
}

/* Features Grid */
.ged7-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin: 2rem 0;
}

.ged7-feature-card {
    background: var(--ged7-bg-secondary);
    border-radius: var(--ged7-radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 205, 0.2);
    transition: var(--ged7-transition);
}

.ged7-feature-card:hover {
    border-color: var(--ged7-accent);
    transform: translateY(-2px);
}

.ged7-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--ged7-accent);
}

.ged7-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ged7-text-light);
    margin-bottom: 0.5rem;
}

.ged7-feature-desc {
    font-size: 1.2rem;
    color: var(--ged7-text-muted);
}

/* Promo Buttons */
.ged7-promo-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--ged7-bg-secondary) 0%, var(--ged7-bg-primary) 100%);
    border-radius: var(--ged7-radius);
    margin: 2rem 0;
    border: 2px solid var(--ged7-accent);
}

.ged7-promo-section h3 {
    font-size: 1.8rem;
    color: var(--ged7-gold);
    margin-bottom: 1rem;
}

.ged7-promo-section p {
    font-size: 1.4rem;
    color: var(--ged7-text-muted);
    margin-bottom: 1.5rem;
}

/* Footer */
.ged7-footer {
    background: var(--ged7-bg-primary);
    padding: 3rem 1.5rem 2rem;
    border-top: 2px solid var(--ged7-accent);
}

.ged7-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.ged7-footer-brand p {
    font-size: 1.3rem;
    color: var(--ged7-text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

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

.ged7-footer-link {
    padding: 0.8rem 1.5rem;
    background: var(--ged7-bg-secondary);
    border-radius: var(--ged7-radius);
    font-size: 1.2rem;
    color: var(--ged7-text-light);
    border: 1px solid rgba(0, 0, 205, 0.3);
    transition: var(--ged7-transition);
}

.ged7-footer-link:hover {
    background: var(--ged7-accent);
    border-color: var(--ged7-accent);
}

.ged7-footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
}

.ged7-footer-copyright p {
    font-size: 1.2rem;
    color: var(--ged7-text-muted);
}

/* Bottom Navigation */
.ged7-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, var(--ged7-bg-secondary) 0%, var(--ged7-bg-primary) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 2px solid var(--ged7-accent);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.ged7-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: var(--ged7-transition);
    border-radius: 12px;
    padding: 0.5rem;
}

.ged7-nav-item:hover {
    background: rgba(0, 0, 205, 0.2);
    transform: scale(1.05);
}

.ged7-nav-item.active {
    background: rgba(0, 0, 205, 0.3);
}

.ged7-nav-item i,
.ged7-nav-item .material-icons {
    font-size: 24px;
    color: var(--ged7-text-light);
    margin-bottom: 0.3rem;
    transition: var(--ged7-transition);
}

.ged7-nav-item:hover i,
.ged7-nav-item:hover .material-icons {
    color: var(--ged7-accent);
}

.ged7-nav-item span {
    font-size: 1rem;
    color: var(--ged7-text-muted);
    font-weight: 500;
}

.ged7-nav-item:hover span {
    color: var(--ged7-text-light);
}

/* Testimonials */
.ged7-testimonials {
    margin: 2rem 0;
}

.ged7-testimonial-card {
    background: var(--ged7-bg-secondary);
    border-radius: var(--ged7-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--ged7-accent);
}

.ged7-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ged7-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ged7-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

.ged7-testimonial-name {
    font-size: 1.4rem;
    color: var(--ged7-text-light);
    font-weight: 600;
}

.ged7-testimonial-text {
    font-size: 1.3rem;
    color: var(--ged7-text-muted);
    line-height: 1.5;
}

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

.ged7-payment-item {
    background: var(--ged7-bg-secondary);
    border-radius: var(--ged7-radius);
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 205, 0.2);
}

.ged7-payment-item i {
    font-size: 2.5rem;
    color: var(--ged7-accent);
    margin-bottom: 0.5rem;
}

.ged7-payment-item span {
    font-size: 1.2rem;
    color: var(--ged7-text-light);
    display: block;
}

/* Winners Showcase */
.ged7-winners-list {
    background: var(--ged7-bg-secondary);
    border-radius: var(--ged7-radius);
    padding: 1.5rem;
}

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

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

.ged7-winner-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.ged7-winner-game {
    font-size: 1.1rem;
    color: var(--ged7-text-muted);
}

.ged7-winner-amount {
    font-size: 1.4rem;
    color: var(--ged7-gold);
    font-weight: 700;
}

/* FAQ Section */
.ged7-faq-item {
    background: var(--ged7-bg-secondary);
    border-radius: var(--ged7-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.ged7-faq-question {
    padding: 1.5rem;
    font-size: 1.4rem;
    color: var(--ged7-text-light);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ged7-faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    color: var(--ged7-text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .ged7-menu-toggle {
        display: block;
    }

    .ged7-header-actions .ged7-btn {
        display: none;
    }

    .ged7-main {
        padding-bottom: 80px;
    }

    .ged7-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
}

@media (min-width: 769px) {
    .ged7-bottom-nav {
        display: none;
    }

    .ged7-main {
        padding-bottom: 20px;
    }

    .ged7-container {
        max-width: 768px;
    }

    .ged7-header-actions .ged7-btn {
        display: inline-flex;
    }
}

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

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

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

.ged7-highlight {
    color: var(--ged7-accent);
    font-weight: 600;
}

.ged7-gold-text {
    color: var(--ged7-gold);
}

/* Promo Link Styles */
.ged7-text-link {
    color: var(--ged7-accent);
    font-weight: 600;
    cursor: pointer;
    transition: var(--ged7-transition);
}

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