* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Teachers';
    src: url('../font/Teachers-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  
body {
    font-family: 'Teachers', sans-serif;
    background-color: #1A1A2E;
    color: #FFFFFF;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #1A1A2E;
    padding: 20px 0;
    border-bottom: 1px solid #2A2A3E;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    text-decoration: underline;
    text-decoration-color: #4169E1;
    text-underline-offset: 5px;
}

.btn-18 {
    background-color: #FFA500;
    color: #FFFFFF;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-18:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background-image: url('images/PHOTO1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border: 1px solid #3A3A4E;
    border-radius: 20px;
    background-color: #2A2A3E;
}

.badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
    flex-shrink: 0;
}

.ukgc-icon {
    background-color: #DC143C;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
}

.check-icon {
    background-color: #32CD32;
    color: #FFFFFF;
}

.search-icon {
    background-color: transparent;
    color: #FFFFFF;
    font-size: 24px;
}

.scale-icon {
    background-color: transparent;
    color: #FFFFFF;
    font-size: 24px;
}

.badge-text {
    color: #FFFFFF;
    font-size: 14px;
}

/* Casino Reviews Section */
.casino-reviews {
    background-color: #1A1A2E;
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-align: center;
    font-weight: normal;
}

.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.casino-card {
    background-color: #2A2A3E;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.casino-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to right, #A855F7, #7C3AED);
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}

.casino-logo {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}

.pub-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.pub-main {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.pub-sub {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: normal;
    letter-spacing: 1px;
}

.betmgm-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lion-icon {
    font-size: 36px;
    filter: sepia(100%) saturate(200%) hue-rotate(15deg) brightness(1.1);
    display: inline-block;
}

.betmgm-text {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.bet-text {
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
}

.mgm-text {
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF;
}

.rating {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1;
}

.rating-label {
    font-size: 12px;
    color: #FFFFFF;
    font-weight: normal;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.star {
    color: #FFD700;
    font-size: 20px;
}

.star.half {
    opacity: 0.5;
}

.review-count {
    font-size: 12px;
    color: #AAAAAA;
    margin-bottom: 20px;
}

.bonus-offer {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}

.btn-bonus {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-bonus:hover {
    opacity: 0.9;
}

.btn-bonus.purple {
    background: linear-gradient(to right, #A855F7, #7C3AED);
}

.btn-bonus.blue {
    background-color: #42A5F5;
}

/* Services Section */
.services-section {
    background-color: #1A1A2E;
    padding: 60px 0;
}

.intro-text {
    font-size: 16px;
    color: #CCCCCC;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.info-box {
    background-color: #2A2A3E;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #3A3A4E;
}

.info-box-title {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.info-box-text {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.7;
}

/* Detailed Info Section */
.detailed-info {
    background-color: #1A1A2E;
    padding: 60px 0;
}

.info-section {
    margin-bottom: 50px;
}

.info-section-title {
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.info-section-text {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.8;
}

.gaming-list {
    list-style: none;
    padding: 0;
}

.gaming-list li {
    font-size: 16px;
    color: #CCCCCC;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.gaming-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #00CED1;
    border-radius: 50%;
}

.gaming-list li strong {
    color: #FFFFFF;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #1A1A2E;
    padding: 60px 0 30px;
    border-top: 1px solid #2A2A3E;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

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

.footer-logo .logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-description {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ukgc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #32CD32;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.ukgc-link:hover {
    opacity: 0.8;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #DC143C;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

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

.footer-list li {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.footer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #DC143C;
    border-radius: 50%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3A3A4E;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-18-icon {
    height: 50px;
    width: auto;
}

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

.gamcare-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gamcare-icon {
    height: 50px;
    width: auto;
}

.gamcare-text {
    display: flex;
    flex-direction: column;
}

.gamcare-name {
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.2;
}

.gamcare-tagline {
    font-size: 11px;
    color: #CCCCCC;
    line-height: 1.2;
}

.when-fun-stops {
    display: flex;
    align-items: center;
    gap: 10px;
}

.when-fun-text {
    font-size: 14px;
    color: #CCCCCC;
    font-weight: 600;
}

.stop-icon {
    height: 30px;
    width: auto;
}

.copyright {
    font-size: 12px;
    color: #AAAAAA;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #AAAAAA;
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
}

.platform-purpose {
    background-color: #1A1A2E;
    padding: 60px 0;
}

.purpose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.purpose-image {
    width: 100%;
}

.purpose-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 500px;
}

.purpose-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.purpose-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.8;
    font-weight: normal;
    margin-bottom: 0;
}

.purpose-paragraph {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.8;
}

.assessment-methodology {
    background-color: #1A1A2E;
    padding: 60px 0;
}

.methodology-subtitle {
    font-size: 18px;
    color: #CCCCCC;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: normal;
}

.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.methodology-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: #2A2A3E;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #3A3A4E;
}

.methodology-number {
    font-size: 48px;
    font-weight: bold;
    color: #42A5F5;
    min-width: 80px;
    flex-shrink: 0;
}

.methodology-content {
    flex: 1;
}

.methodology-title {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.methodology-text {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.8;
}

.information-standards {
    background-color: #1A1A2E;
    padding: 60px 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.standard-card {
    background-color: #2A2A3E;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #3A3A4E;
    text-align: center;
}

.standard-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.standard-title {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.standard-text {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0;
}

.contact-section {
    background-color: #1A1A2E;
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-intro {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: #2A2A3E;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #3A3A4E;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-item-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.contact-item-text {
    font-size: 16px;
    color: #CCCCCC;
}

.important-notice {
    background-color: #2A2A3E;
    border-left: 4px solid #FFD700;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.notice-text {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.7;
    margin-bottom: 10px;
}

.notice-text:last-child {
    margin-bottom: 0;
}

.notice-link {
    color: #42A5F5;
    text-decoration: none;
    transition: opacity 0.3s;
}

.notice-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: #2A2A3E;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #3A3A4E;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.required {
    color: #DC143C;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #1A1A2E;
    border: 1px solid #3A3A4E;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #42A5F5;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888888;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-disclaimer {
    font-size: 12px;
    color: #AAAAAA;
    line-height: 1.6;
}

.form-link {
    color: #42A5F5;
    text-decoration: none;
    transition: opacity 0.3s;
}

.form-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.btn-submit {
    background-color: #42A5F5;
    color: #FFFFFF;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
    width: 100%;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Privacy Policy Page Styles */
.privacy-header {
    background-color: #1A1A2E;
    padding: 60px 0;
    text-align: center;
}

.privacy-title {
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.privacy-subtitle {
    font-size: 18px;
    color: #CCCCCC;
    font-weight: normal;
}

.privacy-content {
    background-color: #1A1A2E;
    padding: 60px 0;
}

.privacy-section {
    background-color: #2A2A3E;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #3A3A4E;
}

.privacy-section-title {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.privacy-section-text {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section-text:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-list li {
    font-size: 16px;
    color: #CCCCCC;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #42A5F5;
    border-radius: 50%;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-list li strong {
    color: #FFFFFF;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .casino-cards {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .purpose-content {
        grid-template-columns: 1fr;
    }

    .methodology-item {
        flex-direction: column;
        gap: 20px;
    }

    .methodology-number {
        min-width: auto;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .privacy-title {
        font-size: 36px;
    }

    .privacy-section {
        padding: 20px;
    }
}

