:root {
    --color-primary: #004466;
    --color-primary-dark: #002233;
    --color-secondary: #00CED1;
    --color-accent-gold: #FFD700;
    --color-accent-silver: #C0C0C0;
    --color-text-light: #f0f8ff;
    --color-bg-gradient-start: #001f3f;
    --color-bg-gradient-end: #000000;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    background: linear-gradient(135deg, var(--color-bg-gradient-start), var(--color-bg-gradient-end));
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { 
    font-size: 2rem; 
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}
h3 { font-size: 1.5rem; color: var(--color-secondary); }

p { margin-bottom: 1rem; text-align: justify; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.poseidon {
    position: relative;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0 100 C 20 0 50 0 100 100 Z" fill="%23004466" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 5px solid var(--color-accent-gold);
}

.poseidon::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.poseidon-content {
    position: relative;
    z-index: 2;
}

.game-logo {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.cta-button {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 20px;
    border: 2px solid var(--color-accent-gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--color-secondary);
    background: var(--color-accent-gold);
}

.layout {
    display: flex;
    margin-top: 40px;
    gap: 40px;
}

.sidebar {
    flex: 1;
    min-width: 250px;
}

.content {
    flex: 3;
}

.sticky-nav {
    background: rgba(0, 34, 51, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--color-secondary);
    position: sticky;
    top: 20px;
    backdrop-filter: blur(10px);
}

.sticky-nav ul {
    list-style: none;
}

.sticky-nav li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sticky-nav a {
    color: var(--color-text-light);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.sticky-nav a:hover {
    color: var(--color-accent-gold);
    padding-left: 5px;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(0, 34, 51, 0.6);
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid var(--color-secondary);
}

th {
    background-color: var(--color-primary);
    color: var(--color-accent-gold);
}

.faq-item {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid var(--color-accent-gold);
    border-radius: 0 5px 5px 0;
}

.faq-item strong {
    display: block;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

ol {
    margin-left: 20px;
    margin-top: 15px;
}

li {
    margin-bottom: 10px;
    padding-left: 10px;
}

footer {
    margin-top: 60px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--color-primary);
    background: rgba(0,0,0,0.3);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .layout {
        flex-direction: column;
    }
    
    .sticky-nav {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    h1 { font-size: 2rem; }
    .poseidon { height: 60vh; }
}
.language-container {
  margin-top: 15px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-family: Arial, sans-serif;
  transition: background-color 0.3s;
}

.language-container:hover {
  background-color: rgba(255, 255, 255, 1);
}

.language-selector {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.3s;
}

.language-selector:hover {
  border-color: #888;
}