/* Playverse Theme - Clean, Modern, Unique */

/* Color Palette */
:root {
    --primary: #5a4fff;
    --primary-dark: #3a36b6;
    --secondary: #ff6b81;
    --secondary-dark: #d94f5c;
    --bg-light: #f7f8fc;
    --bg-white: #fff;
    --text-main: #232946;
    --text-muted: #6c757d;
    --border-radius: 14px;
    --shadow: 0 4px 16px rgba(90, 79, 255, 0.07);
    --transition: all 0.2s cubic-bezier(.4,0,.2,1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 18px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    color: var(--primary);
    font-size: 2rem;
    letter-spacing: 1px;
}

.logo p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 2px;
}

.nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
}

.nav a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width 0.2s;
    position: absolute;
    left: 0;
    bottom: -4px;
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #e7e9fc 0%, #f7f8fc 100%);
    padding: 80px 0 60px 0;
}

.hero-centered {
    justify-content: center;
    text-align: center;
    padding: 60px 0 60px 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1 1 320px;
    min-width: 280px;
    margin: 0 auto;
    max-width: 600px;
}

.hero h2 {
    font-size: 2.6rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.hero .subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}

.btn-primary, .btn-secondary, .btn-game {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(90, 79, 255, 0.08);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px) scale(1.03);
}

.btn-secondary {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
}

.hero-image {
    flex: 1 1 320px;
    min-width: 240px;
    display: flex;
    justify-content: center;
}

.img-responsive {
    max-width: 340px;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Features Section */
.features-section {
    background: var(--bg-white);
    padding: 70px 0 60px 0;
}

.features-section h2 {
    text-align: center;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 36px;
}

.feature-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 32px 18px;
    text-align: center;
    transition: transform 0.18s;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
}

.feature-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Games Section */
.games-section {
    background: #f0f2fa;
    padding: 70px 0 60px 0;
}

.games-section h2 {
    text-align: center;
    color: var(--primary-dark);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 36px;
}

.game-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 0 0 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s;
    border: 1px solid #ececec;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.game-icon {
    background: #f7f8fc;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 28px 0;
    margin-bottom: 0;
}

.game-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.game-card h3 {
    margin: 18px 0 8px 0;
    color: var(--secondary-dark);
    font-size: 1.2rem;
}

.game-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0 18px 18px 18px;
    flex-grow: 1;
}

.btn-game {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
    margin: 0 18px 0 18px;
    font-size: 1rem;
    padding: 12px 0;
}

.btn-game:hover {
    background: linear-gradient(90deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    transform: translateY(-2px) scale(1.03);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0 50px 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 18px;
}

.cta-section .disclaimer {
    color: rgba(255,255,255,0.85);
    margin-top: 24px;
    font-size: 1rem;
}

/* Info Sections (Terms, Cookies, Privacy) */
.terms-section,
.cookies-section,
.privacy-section {
    background: var(--bg-white);
    padding: 60px 0 40px 0;
}

.terms-section h2,
.cookies-section h2,
.privacy-section h2 {
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.content-box {
    background: #f7f8fc;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 32px 24px;
    margin-top: 18px;
}

.last-updated {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 48px 0 18px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
}

.footer h3, .footer h4 {
    color: #fff;
    margin-bottom: 12px;
}

.footer-about p {
    opacity: 0.85;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #e0e0ff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-disclaimer p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 14px;
    font-size: 0.95rem;
    opacity: 0.8;
}
.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 0 0;
    gap: 24px;
}

.footer-logos img {
    height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1); /* optional: makes logos white on dark backgrounds */
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 32px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .features-section,
    .games-section,
    .cta-section,
    .terms-section,
    .cookies-section,
    .privacy-section {
        padding: 38px 0 28px 0;
    }
    .content-box {
        padding: 18px 8px;
    }
    .btn-primary, .btn-secondary, .btn-game {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}
/* ...existing code... */

@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 32px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-logos {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .features-section,
    .games-section,
    .cta-section,
    .terms-section,
    .cookies-section,
    .privacy-section {
        padding: 38px 0 28px 0;
    }
    .content-box {
        padding: 18px 8px;
    }
    .btn-primary, .btn-secondary, .btn-game {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 12px;
    }
    .footer-logos img {
        height: 32px;
        margin-right: 0 !important;
    }
    .footer-disclaimer p {
        font-size: 1rem;
        opacity: 1;
        padding: 10px 0;
    }
    .footer h3, .footer h4 {
        font-size: 1.1rem;
    }
}

/* ...existing code... *//* ...existing code... */

@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 32px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-logos {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .features-section,
    .games-section,
    .cta-section,
    .terms-section,
    .cookies-section,
    .privacy-section {
        padding: 38px 0 28px 0;
    }
    .content-box {
        padding: 18px 8px;
    }
    .btn-primary, .btn-secondary, .btn-game {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 12px;
    }
    .footer-logos img {
        height: 32px;
        margin-right: 0 !important;
    }
    .footer-disclaimer p {
        font-size: 1rem;
        opacity: 1;
        padding: 10px 0;
    }
    .footer h3, .footer h4 {
        font-size: 1.1rem;
    }
}

/* ...existing code... *//* ...existing code... */

@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 32px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-logos {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .features-section,
    .games-section,
    .cta-section,
    .terms-section,
    .cookies-section,
    .privacy-section {
        padding: 38px 0 28px 0;
    }
    .content-box {
        padding: 18px 8px;
    }
    .btn-primary, .btn-secondary, .btn-game {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 12px;
    }
    .footer-logos img {
        height: 32px;
        margin-right: 0 !important;
    }
    .footer-disclaimer p {
        font-size: 1rem;
        opacity: 1;
        padding: 10px 0;
    }
    .footer h3, .footer h4 {
        font-size: 1.1rem;
    }
}
/* ...existing code... */

@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 32px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-logos {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .features-section,
    .games-section,
    .cta-section,
    .terms-section,
    .cookies-section,
    .privacy-section {
        padding: 38px 0 28px 0;
    }
    .content-box {
        padding: 18px 8px;
    }
    .btn-primary, .btn-secondary, .btn-game {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 12px;
    }
    .footer-logos img {
        height: 32px;
        margin-right: 0 !important;
    }
    .footer-disclaimer p {
        font-size: 1rem;
        opacity: 1;
        padding: 10px 0;
    }
    .footer h3, .footer h4 {
        font-size: 1.1rem;
    }
}

/* ...existing code... */
