:root {
    --color-primary: #4F46E5;
    --color-secondary: #EC4899;
    --color-accent: #A7F3D0;
    --color-text: #E0E0E0;
    --color-background: #111827;
    --font-heading: 'Oswald', sans-serif;
    --font-subheading: 'Inter', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.compliance-notice-top {
    background-color: #000;
    color: #FFCC00;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.main-header {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--color-secondary);
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem;
    min-height: 80vh;
    overflow: hidden;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-content p {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-background);
}

.hero-background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 40%;
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.content-section, .content-section-alt {
    padding: 4rem 2rem;
}

.content-section-alt {
    background-color: #1a2436;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.content-container h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #a0aec0;
    font-style: italic;
    margin-top: 1rem;
}

.main-footer {
    background-color: #000;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

.footer-nav a {
    color: var(--color-text);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-nav a:hover {
    text-decoration: underline;
}