/* General Styles */
:root {
    --primary-color: #1A0F0F;
    --secondary-color: #8B0000;
    --accent-color: #FF3333;
    --text-color: #333333;
    --light-bg: #1A0F0F;
    --card-bg: #2A1F1F;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
}

/* Topbar */
.topbar {
    background-color: var(--card-bg);
    color: #ffffff;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
    background-color: rgba(231, 76, 60, 0.1);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Features Row */
.features-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.features-row::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.3), transparent);
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-item h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* Listing Section */
.listing-section {
    background-color: var(--primary-color);
    padding: 4rem 0;
    position: relative;
}

.listing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 51, 51, 0.05), 
        rgba(255, 51, 51, 0.2), 
        rgba(255, 51, 51, 0.05), 
        transparent
    );
}

.offer-row {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(42, 31, 31, 0.9) 100%);
    border-radius: 20px;
    margin-bottom: 2rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.offer-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 51, 51, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-row:hover {
    transform: translateX(10px) translateY(-5px);
    border-color: rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.2);
}

.offer-row:hover::before {
    opacity: 1;
}

.offer-image {
    width: 150px;
    height: 75px;
    margin-right: 3rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.offer-row:hover .offer-image {
    border-color: rgba(255, 51, 51, 0.2);
    transform: scale(1.05);
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.offer-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.offer-name {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.offer-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.offer-row:hover .offer-name::after {
    width: 100%;
}

.offer-score {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.score-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.visit-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.visit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.visit-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.visit-btn:hover::before {
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--card-bg);
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Links */
.footer-links {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-pages {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-pages li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-pages li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-pages li a:hover {
    color: #ffffff;
}

.footer-pages li a:hover::after {
    width: 100%;
}

/* Footer Disclaimer */
.footer-disclaimer {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.disclaimer-box {
    max-width: 800px;
    margin: 0 auto;
}

.age-disclaimer {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.certifications-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Certification Images */
.footer-certifications {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.certification-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-image {
    width: 120px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

a.cert-image:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 51, 51, 0.2);
    transform: translateY(-3px);
}

a.cert-image:hover img {
    filter: grayscale(0%) brightness(1.2);
}

/* Footer Copyright */
.footer-copyright {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Text Sections */
.text-section {
    padding: 5rem 0;
    position: relative;
}

.text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 51, 51, 0.05), 
        rgba(255, 51, 51, 0.2), 
        rgba(255, 51, 51, 0.05), 
        transparent
    );
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.content-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(42, 31, 31, 0.9) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-card ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.content-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Reason Grid */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.reason-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 51, 51, 0.2);
}

.reason-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.reason-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reason-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* Disclaimer Section */
.disclaimer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.responsible-gaming {
    grid-column: 1 / -1;
}

.help-resources, 
.responsible-gaming {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.help-resources h3, 
.responsible-gaming h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.help-resources h3::before, 
.responsible-gaming h3::before {
    content: '\f05a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.legal-disclaimer {
    grid-column: 1 / -1;
    margin-top: 2rem;
    text-align: center;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
    padding: 1rem;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 8px;
}

/* Policy Pages */
.policy-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    min-height: calc(100vh - 400px);
}

.policy-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.policy-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.policy-content {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(42, 31, 31, 0.9) 100%);
    border-radius: 20px;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-block {
    margin-bottom: 2.5rem;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.policy-block h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.policy-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.policy-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.policy-block ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.policy-block ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Help Resources Grid */
.help-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.help-resource-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.help-resource-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 51, 51, 0.2);
}

.help-resource-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.help-resource-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.help-resource-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .offer-content {
        gap: 2rem;
    }

    .offer-name {
        font-size: 1.3rem;
    }

    .offer-image {
        width: 120px;
        height: 60px;
        margin-right: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }

    .features-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .feature-item {
        padding: 1.2rem;
        width: 80%;
        margin: 0 auto;
    }

    .feature-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .feature-item h3 {
        font-size: 0.9rem;
    }

    .offer-row {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .offer-image {
        margin: 0 auto 1.5rem;
    }

    .offer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .offer-name::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .offer-score {
        margin: 0 auto;
    }

    .visit-btn {
        width: 100%;
        margin-top: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-brand img {
        height: 30px;
    }

    .feature-item {
        width: 90%;
    }

    .offer-name {
        font-size: 1.2rem;
    }

    .stars {
        font-size: 1rem;
    }

    .score-text {
        font-size: 1.1rem;
    }

    .offer-score {
        padding: 0.5rem 1rem;
    }
} 

/* Responsive Design for Text Sections */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .content-card {
        padding: 2rem;
    }

    .reason-grid {
        gap: 1.5rem;
    }

    .reason-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .text-section {
        padding: 4rem 0;
    }

    .reason-grid {
        grid-template-columns: 1fr;
    }

    .disclaimer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-card p,
    .content-card ul li {
        font-size: 1rem;
    }

    .reason-item i {
        font-size: 2rem;
    }

    .reason-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .help-resources, 
    .responsible-gaming {
        padding: 1.5rem;
    }
} 

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        padding: 2rem 0;
    }

    .footer-pages {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .certification-images {
        gap: 1rem;
    }

    .cert-image {
        width: 100px;
        height: 50px;
    }

    .age-disclaimer {
        font-size: 1rem;
    }

    .certifications-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-links {
        padding: 1.5rem 0;
    }

    .footer-pages li a {
        font-size: 0.95rem;
    }

    .cert-image {
        width: 90px;
        height: 45px;
    }

    .footer-disclaimer {
        padding: 1.5rem 0;
    }

    .footer-certifications {
        padding: 1.5rem 0;
    }

    .footer-copyright {
        padding: 1rem 0;
        font-size: 0.85rem;
    }
} 

/* Responsive Design for Policy Pages */
@media (max-width: 992px) {
    .policy-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-block h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 3rem 0;
    }

    .help-resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .help-resource-item {
        padding: 1.5rem;
    }

    .help-resource-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .policy-block p,
    .policy-block ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .policy-title {
        font-size: 1.75rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-block h2 {
        font-size: 1.4rem;
    }

    .help-resource-item {
        padding: 1.2rem;
    }
} 