/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #FFF; /* Standard text color */
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

body::-webkit-scrollbar-thumb {
    background-color: #FF4500; /* Orange */
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: #FF4500; /* Orange for headings */
    font-weight: 700;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-orange {
    color: #FF4500 !important;
}

.text-orange-gradient {
    background: linear-gradient(90deg, #FF4500, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.bg-dark-gradient {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.bg-dark-alt {
    background-color: #1a1a1a !important;
}

.bg-dark-fact {
    background-color: rgba(255, 69, 0, 0.1) !important;
}

/* Neon Effects */
.logo-glow {
    text-shadow: 0 0 5px #FF4500, 0 0 10px #FF4500, 0 0 15px #FF4500;
    filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.8));
}

.text-shadow-orange {
    text-shadow: 0 0 8px rgba(255, 69, 0, 0.7), 0 0 15px rgba(255, 69, 0, 0.5);
}

.text-shadow-white {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.shadow-orange-glow {
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
    transition: box-shadow 0.3s ease-in-out;
}

.shadow-orange-glow:hover {
    box-shadow: 0 0 15px rgba(255, 69, 0, 1), 0 0 25px rgba(255, 69, 0, 0.7);
}

.neon-border-orange {
    border: 1px solid rgba(255, 69, 0, 0.5);
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.5);
}

.neon-border-orange-subtle {
    border: 1px solid rgba(255, 69, 0, 0.2);
    box-shadow: 0 0 5px rgba(255, 69, 0, 0.2);
}

.neon-border-orange-subtle:hover {
    border-color: rgba(255, 69, 0, 0.5);
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.5);
    transition: all 0.3s ease;
}

.neon-input-focus:focus {
    border-color: #FF4500 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.25) !important;
}

.team-avatar-glow {
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.review-avatar-glow {
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.4);
}

/* Hero Section */
.hero-section {
    background-color: #000;
    position: relative;
}

.hero-bg-image {
    z-index: 0;
    opacity: 0.3;
}

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

.hero-bg-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 69, 0, 0.1) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.8));
}

.navbar-nav .nav-link {
    color: #FFF !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #FF4500;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-outline-orange {
    color: #FF4500;
    border-color: #FF4500;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    color: #000;
    background-color: #FF4500;
    border-color: #FF4500;
}

/* Sections Padding */
section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    section {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

@media (min-width: 992px) {
    section {
        padding-top: 9rem;
        padding-bottom: 9rem;
    }
}

/* About Us Section */
#about img {
    max-width: 100%;
    height: auto;
}

/* Our Services / Games Section */
.nav-pills .nav-link {
    color: #FF4500;
    border: 1px solid rgba(255, 69, 0, 0.3);
    background-color: rgba(255, 69, 0, 0.05);
    margin: 0 5px;
    padding: 10px 20px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: rgba(255, 69, 0, 0.15);
    border-color: rgba(255, 69, 0, 0.6);
    color: #FFA500;
}

.nav-pills .nav-link.active {
    color: #000;
    background-color: #FF4500;
    border-color: #FF4500;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
}

.tab-content .tab-pane {
    background-color: #1a1a1a;
}

/* Portfolio / Our Games Section */
.portfolio-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 69, 0, 0.4);
}

.portfolio-card img {
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.portfolio-card:hover img {
    filter: brightness(1);
}

.modal-content {
    background-color: #1a1a1a;
}

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

/* Statistics Section */
.stat-block {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.stat-block i {
    opacity: 0.7;
}

/* How It Works Section */
.process-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 69, 0, 0.3);
    transform: translateX(-50%);
    z-index: 0;
}

.process-step {
    position: relative;
    width: 100%;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
    background-color: #1a1a1a;
    border-radius: 0.75rem;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.2);
    border: 1px solid rgba(255, 69, 0, 0.3);
    z-index: 1;
}

.process-step:nth-child(even) {
    left: -25%; /* Shift even steps left for visual flow */
}

.process-step:nth-child(odd) {
    left: 25%; /* Shift odd steps right */
}

@media (max-width: 767.98px) {
    .process-step:nth-child(even),
    .process-step:nth-child(odd) {
        left: 0; /* No shifting on small screens */
    }
}

.process-step .icon-wrapper {
    background-color: #FF4500;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: -50px auto 20px auto; /* Position icon above the card */
    border: 3px solid #000;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.8);
}

/* Our Team Section */
.team-card {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #FF4500;
}

.team-fact {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 69, 0, 0.15);
    color: #FFF;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.team-card:hover .team-fact {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonial-card {
    background-color: #1a1a1a;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.8));
}

/* FAQ Section */
.accordion-item {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 69, 0, 0.2);
    box-shadow: 0 0 5px rgba(255, 69, 0, 0.2);
}

.accordion-button {
    background-color: #1a1a1a !important;
    color: #FFF !important;
    border: none;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 69, 0, 0.1) !important;
    color: #FF4500 !important;
    box-shadow: inset 0 -1px 0 rgba(255, 69, 0, 0.3);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #FF4500;
}

.accordion-button::after {
    filter: invert(1) brightness(2);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) brightness(2) sepia(1) hue-rotate(10deg) saturate(5);
}

.accordion-body {
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 69, 0, 0.1);
}

/* Contact Form */
#contactForm .form-control {
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF;
}

#contactForm .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#contactForm .form-control:focus {
    background-color: #0d0d0d;
    color: #FFF;
}

#contactForm .form-label {
    font-weight: 500;
}

.invalid-feedback {
    color: #FF6347; /* Tomato red for error messages */
    font-size: 0.875em;
}

/* Footer */
.footer-cta {
    background-image: url('uploads/pics/footer-cta-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.footer-cta .btn {
    margin-top: 1.5rem;
}

footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

footer .list-unstyled a.hover-orange:hover {
    color: #FF4500 !important;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: 90%;
    z-index: 1050;
    background-color: #1a1a1a;
    border-color: rgba(255, 69, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.4);
}

.cookie-banner .card-body {
    padding: 1.5rem;
}

#cookieSettingsModal .modal-content {
    background-color: #1a1a1a;
}

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

#cookieSettingsModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.25);
}
/* Styles for the .rightsFieldUnit container */
.rightsFieldUnit {
    padding-top: 4rem;    /* Top padding for the content unit */
    padding-left: 1.5rem; /* Left padding for the content unit */
    padding-right: 1.5rem;/* Right padding for the content unit */
    /* Add background-color or border here if this unit needs its own distinct visual container */
    /* Example: background-color: #0d0d0d; border-radius: 0.75rem; */
}

/* Heading styles within .rightsFieldUnit */
.rightsFieldUnit h1 {
    font-family: 'Orbitron', sans-serif; /* Consistent with general heading font */
    color: #FF4500; /* Consistent with general heading color (Orange) */
    font-size: 2.5rem; /* H1 font size, scaled for readability without being excessively large */
    margin-top: 0; /* Remove default top margin for the first element */
    margin-bottom: 1.5rem; /* Spacing below H1 */
    line-height: 1.2; /* Line height for better readability */
    font-weight: 700; /* Bold font weight */
    text-shadow: 0 0 8px rgba(255, 69, 0, 0.7); /* Subtle neon glow effect */
}

.rightsFieldUnit h2 {
    font-family: 'Orbitron', sans-serif;
    color: #FF4500;
    font-size: 2rem; /* H2 font size */
    margin-top: 1.5rem; /* Spacing above H2 */
    margin-bottom: 1.25rem; /* Spacing below H2 */
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(255, 69, 0, 0.6);
}

.rightsFieldUnit h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FF4500;
    font-size: 1.75rem; /* H3 font size */
    margin-top: 1.25rem; /* Spacing above H3 */
    margin-bottom: 1rem; /* Spacing below H3 */
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 0 0 4px rgba(255, 69, 0, 0.5);
}

.rightsFieldUnit h4 {
    font-family: 'Orbitron', sans-serif;
    color: #FF4500;
    font-size: 1.5rem; /* H4 font size */
    margin-top: 1rem; /* Spacing above H4 */
    margin-bottom: 0.75rem; /* Spacing below H4 */
    line-height: 1.5;
    font-weight: 600;
}

.rightsFieldUnit h5 {
    font-family: 'Orbitron', sans-serif;
    color: #FF4500;
    font-size: 1.25rem; /* H5 font size */
    margin-top: 0.75rem; /* Spacing above H5 */
    margin-bottom: 0.5rem; /* Spacing below H5 */
    line-height: 1.5;
    font-weight: 500;
}

/* Paragraph styles within .rightsFieldUnit */
.rightsFieldUnit p {
    font-family: 'Roboto', sans-serif; /* Consistent with general body font */
    color: #FFF; /* Standard text color (White) */
    font-size: 1rem; /* Base paragraph font size */
    margin-top: 0; /* Remove default top margin for the first element */
    margin-bottom: 1rem; /* Spacing below paragraph */
    line-height: 1.7; /* Enhanced line height for better readability */
}

/* List styles within .rightsFieldUnit */
.rightsFieldUnit ul {
    font-family: 'Roboto', sans-serif;
    color: #FFF;
    list-style-type: disc; /* Standard disc bullet points */
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 1rem; /* Spacing below the list */
    padding-left: 1.5rem; /* Indentation for list items */
}

.rightsFieldUnit ol { /* Styles for ordered lists as well */
    font-family: 'Roboto', sans-serif;
    color: #FFF;
    list-style-type: decimal; /* Standard decimal numbering */
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.rightsFieldUnit li {
    font-family: 'Roboto', sans-serif;
    color: #FFF;
    font-size: 1rem; /* List item font size */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6; /* Line height for list items */
}

.lead {
    padding: 0 20px;
}    

.carousel-control-next {
    justify-content: flex-end;
}

.carousel-control-prev {
    justify-content: flex-start;
}

/* Media queries for responsiveness for .rightsFieldUnit padding and heading sizes */
@media (min-width: 768px) {
    .rightsFieldUnit {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .rightsFieldUnit h1 {
        font-size: 2.8rem; /* Slightly larger H1 for medium screens */
    }
    .rightsFieldUnit h2 {
        font-size: 2.2rem; /* Slightly larger H2 for medium screens */
    }
}

@media (min-width: 992px) {
    .rightsFieldUnit {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .rightsFieldUnit h1 {
        font-size: 3rem; /* Further scaled H1 for large screens */
    }
    .rightsFieldUnit h2 {
        font-size: 2.5rem; /* Further scaled H2 for large screens */
    }
}
