@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #0c0c0c;
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background-color: rgba(12, 12, 12, 0.8);
    padding: 1rem 2rem;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8A2BE2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2.5rem;
}

nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8A2BE2;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #8A2BE2;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, rgba(45, 10, 75, 0.9), rgba(12, 12, 12, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero-content .disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    color: #aaa;
    max-width: 500px;
    margin: 1.5rem auto 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #8A2BE2, #A020F0);
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
}

.features {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 3rem;
    background: -webkit-linear-gradient(#8A2BE2, #A020F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact {
    text-align: center;
    padding: 6rem 2rem;
    background-color: #1a1a1a;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #222;
    background-color: #0c0c0c;
}

/* Policy page specific styles */
.policy {
    max-width: 900px;
    margin: 6rem auto;
    padding: 3rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #222;
}

.policy h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #8A2BE2; /* Changed from #00aaff */
}

.policy h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #8A2BE2; /* Changed from #00aaff */
    padding-bottom: 0.5rem;
    color: #fff;
}

.policy p, .policy ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.policy p strong {
    color: #fff;
}

.policy ul {
    padding-left: 20px;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.lang-button {
    background-color: #8A2BE2; /* Primary color */
    color: #fff;
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.lang-button:hover {
    background-color: #A020F0; /* Slightly darker/different shade on hover */
}

.lang-button.active {
    background-color: #6a1aae; /* A more distinct color for the active language */
    border: 1px solid #A020F0;
}

/* 404 Page Specific Styles */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh; /* Adjust as needed */
    text-align: center;
    padding: 4rem 2rem;
}

.error-content h1 {
    font-size: 8rem;
    color: #8A2BE2; /* Using the new accent color */
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.error-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    max-width: 600px;
}