/* mgmbet casino - Stone Ocean Theme 2026 */
/* Cores inspiradas em Stone Free - Azul oceano, teal, dourado */

:root {
    --ocean-deep: #0a1628;
    --ocean-blue: #0d3b66;
    --teal-primary: #14919b;
    --teal-light: #45b7c5;
    --gold-accent: #d4af37;
    --gold-light: #f4d03f;
    --text-light: #e8f4f8;
    --text-muted: #8ba3b5;
    --string-glow: rgba(69, 183, 197, 0.3);
    --card-bg: rgba(13, 59, 102, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-blue) 50%, var(--ocean-deep) 100%);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

/* String Pattern Background */
.string-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: 
        linear-gradient(45deg, transparent 45%, var(--string-glow) 45%, var(--string-glow) 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, var(--string-glow) 45%, var(--string-glow) 55%, transparent 55%);
    background-size: 60px 60px;
    opacity: 0.15;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation */
header {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(13, 59, 102, 0.95) 100%);
    padding: 15px 0;
    border-bottom: 2px solid var(--teal-primary);
    box-shadow: 0 4px 30px rgba(20, 145, 155, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    height: 50px;
    width: auto;
}

.logo-area h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
}

nav ul li a:hover {
    background: var(--teal-primary);
    color: white;
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    color: var(--ocean-deep) !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease !important;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6) !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-accent)) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light), var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(20, 145, 155, 0.3);
    border: 2px solid var(--teal-primary);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--gold-accent);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Game Cards Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(69, 183, 197, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 145, 155, 0.3);
    border-color: var(--teal-light);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card-content {
    padding: 20px;
}

.game-card h3 {
    color: var(--gold-accent);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.game-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.game-card .play-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-card .play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(20, 145, 155, 0.5);
}

/* Info Boxes */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(69, 183, 197, 0.2);
    backdrop-filter: blur(10px);
}

.info-box h3 {
    color: var(--gold-accent);
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    color: var(--text-muted);
    line-height: 1.8;
}

.info-box ul {
    list-style: none;
    margin-top: 15px;
}

.info-box ul li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(69, 183, 197, 0.1);
}

.info-box ul li:last-child {
    border-bottom: none;
}

/* Author Section */
.author-section {
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.8), rgba(20, 145, 155, 0.2));
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    display: flex;
    gap: 30px;
    align-items: center;
    border: 1px solid var(--teal-primary);
}

.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-accent);
}

.author-info h3 {
    color: var(--gold-accent);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.author-info .author-title {
    color: var(--teal-light);
    font-size: 1rem;
    margin-bottom: 15px;
}

.author-info p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(69, 183, 197, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    color: var(--text-light);
    font-weight: 600;
}

.reviewer-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-stars {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 10px;
}

.review-date {
    color: var(--teal-light);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(69, 183, 197, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--teal-light);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Payment Methods */
.payment-section img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
}

/* License Section */
.license-section {
    text-align: center;
}

.license-badge {
    max-width: 200px;
    margin: 20px auto;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--ocean-blue), var(--ocean-deep));
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 2px solid var(--teal-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold-accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--teal-light);
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(69, 183, 197, 0.2);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.age-restriction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #c0392b;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--teal-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-accent);
    transform: translateY(-3px);
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: rgba(10, 22, 40, 0.5);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb li {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb li a {
    color: var(--teal-light);
    text-decoration: none;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-muted);
}

.breadcrumb li:last-child::after {
    content: '';
}

/* Content Page Styles */
.content-page {
    padding: 40px 0;
}

.content-page article {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(69, 183, 197, 0.2);
}

.content-page h1 {
    color: var(--gold-accent);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.content-page h2 {
    color: var(--teal-light);
    font-size: 1.6rem;
    margin: 30px 0 15px;
}

.content-page h3 {
    color: var(--gold-accent);
    font-size: 1.3rem;
    margin: 25px 0 12px;
}

.content-page p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-page ul, .content-page ol {
    margin: 15px 0 15px 25px;
    color: var(--text-muted);
}

.content-page li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-page img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.content-page .game-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-page .game-info-table th,
.content-page .game-info-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(69, 183, 197, 0.2);
}

.content-page .game-info-table th {
    background: rgba(20, 145, 155, 0.2);
    color: var(--gold-accent);
}

.content-page .game-info-table td {
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .content-page article {
        padding: 25px;
    }
    
    .content-page h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    nav ul li a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 10px 20px !important;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Preload optimization */
.preload-hint {
    display: none;
}
