body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #FFD700; /* Gold */
}

.text-gold {
    color: #FFD700 !important;
}

.bg-dark-gold-gradient {
    background: linear-gradient(90deg, #000000 0%, #333333 50%, #000000 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.bg-dark-gold-gradient-light {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(50, 40, 0, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.bg-dark-gold-pattern {
    background-color: #000;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%231a1a1a" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.bg-danger-gradient {
    background: linear-gradient(90deg, #8B0000 0%, #CC0000 50%, #8B0000 100%); /* Dark Red Gradient */
}

.border-gold {
    border: 1px solid #FFD700 !important;
}

.border-gold-thick {
    border: 3px solid #FFD700 !important;
}

.border-bottom-gold {
    border-bottom: 1px solid #FFD700 !important;
}

.border-top-gold-light {
    border-top: 1px solid rgba(255, 215, 0, 0.3) !important;
}

.border-gold-light {
    border-color: rgba(255, 215, 0, 0.3) !important;
}

.btn-gold {
    background-color: #FFD700;
    color: #000;
    border: 1px solid #FFD700;
    padding: 10px 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-gold:hover {
    background-color: #e6c200;
    color: #000;
    border-color: #e6c200;
}

.btn-outline-gold {
    color: #FFD700;
    border: 1px solid #FFD700;
    background-color: transparent;
    padding: 10px 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #FFD700;
    color: #000;
}

.btn-secondary-gold {
    background-color: #555;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary-gold:hover {
    background-color: #666;
    color: #FFD700;
    border-color: #FFD700;
}

.form-control {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #FFD700;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #FFD700;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.form-check-input:checked {
    background-color: #FFD700;
    border-color: #FFD700;
}

.form-check-input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.top-warning-header {
    background-color: #FFD700;
    color: #000;
    font-size: 0.9rem;
}

.main-header .site-title {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.main-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav .nav-link.gold-hover:hover {
    color: #FFD700 !important;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.hero-section .container {
    z-index: 1;
}

.feature-box {
    border-radius: 10px;
    background-color: rgba(30, 30, 30, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
}

.platform-card {
    border-radius: 15px;
    background-color: rgba(30, 30, 30, 0.9);
}

.platform-card .platform-img {
    max-height: 250px;
    object-fit: contain;
    width: 100%;
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease;
}

.platform-card .platform-image-link:hover .platform-img {
    transform: scale(1.03);
}

.rating i {
    font-size: 1.2rem;
}

.payment-systems .payment-icon {
    height: 25px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0.8) sepia(1) hue-rotate(20deg) saturate(2);
}

.table-dark {
    --bs-table-bg: #1a1a1a;
    --bs-table-striped-bg: #2a2a2a;
    --bs-table-hover-bg: #3a3a3a;
    --bs-table-border-color: rgba(255, 215, 0, 0.3);
    color: #fff;
}

.table-dark th, .table-dark td {
    border-color: rgba(255, 215, 0, 0.3);
}

.table-dark th {
    font-weight: bold;
    color: #FFD700;
}

.disclaimer-block {
    border-top: 5px solid #FFD700;
    border-bottom: 5px solid #FFD700;
    padding: 3rem 0;
}

.disclaimer-block .text-warning {
    color: #FFD700 !important;
}

.contact-form-wrapper {
    background-color: rgba(30, 30, 30, 0.9);
}

.footer {
    background: linear-gradient(90deg, #000000 0%, #333333 50%, #000000 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

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

.footer .site-title-footer {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links li a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a.gold-hover:hover {
    color: #FFD700 !important;
}

.footer-logos .footer-logo {
    max-width: 120px !important;
    height: auto;
    object-fit: contain;
    margin: 0 10px;
    filter: brightness(0.9);
}

.footer-logos  .foote_nc {
    max-width: 50px !important;
}

.text-light-gold {
    color: rgba(255, 215, 0, 0.7);
}

/* Modal specific styles */
.modal-content {
    background-color: #1a1a1a;
    border-radius: 10px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.5);
}

.modal-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.5);
}

.modal-title {
    color: #FFD700;
}

.btn-close {
    filter: invert(1) brightness(2);
}

.btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.offcanvas {
    background-color: #1a1a1a;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.5);
}

.offcanvas-title {
    color: #FFD700;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Form validation styles */
.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-control:invalid:not(:placeholder-shown) + .invalid-feedback {
    display: block;
}

.invalid-feedback {
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .main-nav {
        display: none !important;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .main-header .logo {
        height: 35px;
    }

    .hero-section {
        min-height: 400px;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .feature-box {
        margin-bottom: 1rem;
    }

    .platform-card .row > div {
        text-align: center;
    }

    .platform-card .platform-img {
        margin-bottom: 1rem;
    }

    .payment-systems {
        flex-direction: column;
    }

    .payment-systems .payment-icon {
        margin-bottom: 10px;
    }

    .footer-links {
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 1.2rem;
    }

    .lead {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .main-header .logo {
        height: 30px;
    }

    .footer-logos .footer-logo {
        max-width: 90px;
    }
}
/*
 * New stock styles for headings, paragraphs, and lists within .rightsCloudWrap.
 * These styles are designed to be clean, readable, and not overly large.
 */

/* Parent container styling for overall content spacing */
.rightsCloudWrap {
    margin-top: 40px; /* Top margin for separation from preceding content */
    margin-left: 20px; /* Left margin for content area */
    margin-right: 20px; /* Right margin for content area */
    max-width: 960px; /* Limits content width for better readability on large screens */
    padding: 0 15px; /* Inner padding for content, preventing it from touching edges */
    box-sizing: border-box; /* Ensures padding is included in the element's total width */
    /* You might want to set a default font-family and line-height here if not already global */
    /* font-family: 'Arial', sans-serif; */
    /* line-height: 1.6; */
}

/* Heading 1 styles */
.rightsCloudWrap h1 {
    font-size: 28px; /* Moderate size for main headings */
    font-weight: 700; /* Bold */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 32px; /* Space above the heading */
    margin-bottom: 16px; /* Space below the heading */
}

/* Heading 2 styles */
.rightsCloudWrap h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 28px;
    margin-bottom: 14px;
}

/* Heading 3 styles */
.rightsCloudWrap h3 {
    font-size: 20px;
    font-weight: 600; /* Slightly less bold than H1/H2 */
    line-height: 1.4;
    margin-top: 24px;
    margin-bottom: 12px;
}

/* Heading 4 styles */
.rightsCloudWrap h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Heading 5 styles */
.rightsCloudWrap h5 {
    font-size: 16px; /* Similar to body text, but bold */
    font-weight: 600;
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 8px;
}

/* Paragraph styles */
.rightsCloudWrap p {
    font-size: 16px; /* Standard body text size for readability */
    line-height: 1.6; /* Optimal line height for paragraphs */
    margin-top: 0; /* Reset default browser margin-top */
    margin-bottom: 16px; /* Space between paragraphs */
}

/* Unordered list styles */
.rightsCloudWrap ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 16px; /* Space above the list */
    margin-bottom: 16px; /* Space below the list */
    padding-left: 24px; /* Indentation for bullet points */
}

/* List item styles */
.rightsCloudWrap li {
    font-size: 16px; /* Standard body text size for list items */
    line-height: 1.6; /* Consistent line height with paragraphs */
    margin-bottom: 8px; /* Space between individual list items */
}
