:root {
    --primary-color: #6C63FF;
    --secondary-color: #2A2A2A;
    --accent-color: #FF6B6B;
    --background-color: #121212;
    --text-color: #FFFFFF;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Privacy Policy Table */
.privacy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.privacy-table th,
.privacy-table td {
    padding: 1.5rem 2rem;
    text-align: left;
}

.privacy-table th {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.privacy-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-table tr:last-child td {
    border-bottom: none;
}

.privacy-table tr td:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-table tr:hover td {
    background: rgba(108, 99, 255, 0.1);
}

/* Header & Navigation */
header {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section and Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-color);
}

/* Sections */
section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: #888;
    line-height: 1.6;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.store-badge {
    display: inline-block;
    width: 300px;
    height: 100px;
}

.store-badge img {
    height: 100px;
    width: 300px;
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: center;
}

.store-badge:hover img {
    transform: scale(1.05);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text {
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .store-badges {
        flex-direction: column;
        align-items: center;
    }
}

h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

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

.contact-logo {
    width: 150px;
    height: auto;
    margin: 1rem 0;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    color: #888;
    text-align: center;
}

/* Legal Page Styles */
.legal-content {
    padding-top: 100px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.legal-section {
    background: rgba(42, 42, 42, 0.8);
    padding: 2rem;
    border-radius: 8px;
    margin: 0 1rem;
}

.legal-section h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    text-align: left;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-content {
    padding-top: 100px;
    padding-bottom: 4rem;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: #888;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-color);
}

.social-links {
    text-align: center;
}

.social-links h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.social-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-card i {
    font-size: 2.5rem;
}

.social-card span {
    font-size: 1.1rem;
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(var(--primary-color-rgb), 0.2);
}

/* Social Media Colors */
.fa-facebook { color: #1877f2; }
.fa-instagram { color: #e4405f; }
.fa-x-twitter { color: #1da1f2; }
.fa-discord { color: #7289da; }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Games Page Styles */
.games-content {
    padding-top: 100px;
    padding-bottom: 4rem;
}

.featured-game {
    background: rgba(42, 42, 42, 0.8);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.featured-game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.featured-game-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-game-description {
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.game-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.game-gallery-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.game-gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-gallery-image:hover img {
    transform: scale(1.05);
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-feature {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.game-feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.game-feature h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.game-feature p {
    color: #888;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .game-gallery {
        grid-template-columns: 1fr;
    }

    .featured-game {
        padding: 2rem 1rem;
    }

    .featured-game-title {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}
