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

:root {
    --navy-primary: #001f3f;
    --navy-secondary: #003d7a;
    --navy-dark: #001529;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --gold-accent: #ffd700;
    --silver: #c0c0c0;
    --text-dark: #333333;
    --text-light: #666666;
    --success: #28a745;
    --danger: #dc3545;
}

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

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

.primary-navigation {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.9) 0%, rgba(0, 61, 122, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: var(--gold-accent);
    color: var(--navy-primary);
}

.cta-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--navy-primary);
}

.article-overview,
.features-showcase,
.testimonials-section,
.about-preview,
.benefits-section,
.faq-section,
.provably-fair-badge {
    padding: 4rem 0;
}

.article-overview {
    background: var(--light-gray);
}

.article-overview h2,
.features-showcase h2,
.testimonials-section h2,
.about-preview h2,
.benefits-section h2,
.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy-primary);
    margin-bottom: 2rem;
}

.overview-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.overview-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border-left: 4px solid var(--gold-accent);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overview-list i {
    color: var(--success);
    font-size: 1.2rem;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 61, 122, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--gold-accent);
}

.feature-card h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    color: var(--white);
}

.testimonials-section h2 {
    color: var(--white);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-author strong {
    display: block;
    color: var(--gold-accent);
}

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

.about-text h2 {
    text-align: left;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.read-more-btn,
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--navy-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.read-more-btn:hover,
.cta-button:hover {
    background: var(--navy-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.3);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: var(--light-gray);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.provably-fair-badge {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: var(--white);
}

.badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.badge-icon i {
    font-size: 4rem;
    color: var(--gold-accent);
}

.badge-text h3 {
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.verify-link {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--white);
    transition: color 0.3s ease;
}

.verify-link:hover {
    color: var(--gold-accent);
}

.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--gold-accent);
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--gold-accent);
}

.registration-info {
    font-size: 0.9rem;
    color: var(--silver);
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.trust-signals a,
.trust-signals span {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

.trust-signals a:hover {
    color: var(--gold-accent);
}

.age-notice,
.helpline {
    background: var(--danger);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: bold;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--silver);
    margin: 1rem 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.cookie-text a {
    color: var(--gold-accent);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--success);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: #218838;
}

.cookie-btn.reject {
    background: var(--light-gray);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background: #d0d0d0;
}

.page-header {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
}

.header-overlay {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.header-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-story,
.mission-values,
.team-section,
.why-choose,
.cta-section {
    padding: 4rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.story-content h2 {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-values {
    background: var(--light-gray);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 3rem;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.team-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-member h3 {
    color: var(--navy-primary);
    margin: 1.5rem 0 0.5rem;
    padding: 0 1rem;
}

.member-role {
    color: var(--gold-accent);
    font-weight: bold;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.member-bio {
    color: var(--text-light);
    padding: 0 1rem 1.5rem;
}

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

.reason-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reason-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.reason-item h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.blog-posts-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-10px);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-content h2 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.read-more {
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.read-more:hover {
    color: var(--gold-accent);
}

.newsletter-section {
    background: var(--light-gray);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--navy-primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--navy-secondary);
}

.contact-section {
    padding: 4rem 0;
}

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

.contact-info h2 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.contact-text h3 {
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.availability {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.registration-badge {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.registration-badge i {
    font-size: 2rem;
    color: var(--gold-accent);
}

.contact-form-container h2 {
    color: var(--navy-primary);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-primary);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--navy-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--navy-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.3);
}

.map-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    display: block;
}

.faq-preview {
    padding: 3rem 0;
    text-align: center;
    background: var(--navy-primary);
    color: var(--white);
}

.faq-preview h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.faq-preview a {
    color: var(--gold-accent);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.modal-icon i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.modal-content h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.modal-btn {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background: var(--navy-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}

.modal-btn:hover {
    background: var(--navy-secondary);
}

.blog-post {
    background: var(--white);
}

.post-header {
    position: relative;
    margin-bottom: 3rem;
}

.post-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 3rem 2rem 2rem;
    color: var(--white);
}

.post-meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    font-size: 1.2rem;
    opacity: 0.9;
}

.post-header img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.post-content-wrapper {
    padding: 3rem 0;
}

.post-content-wrapper .container-fluid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.post-body h2 {
    color: var(--navy-primary);
    margin: 2rem 0 1rem;
    font-size: 2rem;
}

.post-body h3 {
    color: var(--navy-secondary);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.post-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.recent-posts,
.categories-list {
    list-style: none;
}

.recent-posts li,
.categories-list li {
    margin-bottom: 1rem;
}

.recent-posts a,
.categories-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-posts a:hover,
.categories-list a:hover {
    color: var(--navy-primary);
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .about-content-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .post-content-wrapper .container-fluid {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}