/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.6;
}

/* Dark Mode */
body.dark-mode {
    background-color: #1a1a1a;
    color: #b3b3b3;
}

.dark-mode .navbar,
.dark-mode .hero-section,
.dark-mode footer {
    background-color: #000000;
    color: white;
}

.dark-mode .service-icon {
    color: #ff0080;
}

/* Header and Navigation */
nav.navbar {
    background-color: #1c1e1f !important;
    /* Add '!important' to force the change */
}

nav.navbar a.nav-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

nav.navbar a.nav-link:hover {
    color: #ff80ff;
}

nav.navbar .navbar-brand img {
    height: 50px;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero-background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-family: 'VCR OSD Mono', monospace;
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #ff80ff;
}

.hero-section .btn {
    margin-top: 20px;
}

/* Highlighted Text */
.highlighted-text {
    background-color: rgba(0, 0, 0, 0.0);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    color: #ff80ff;
}

/* Services Section */
#services {
    padding: 60px 0;
}

.service-box {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(139, 30, 90, 0.3), rgba(0, 0, 0, 0.4));
    background-size: 200% 200%;
    animation: gradientPulse 10s ease infinite;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #e9ecef;
}

.service-box::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(139, 30, 90, 0.3), transparent);
    transform: rotate(45deg);
    animation: floatLayer 15s ease-in-out infinite alternate;
    z-index: -1;
}

.service-box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 20, 70, 0.2), transparent);
    transform: rotate(-45deg);
    animation: floatLayer2 20s ease-in-out infinite alternate-reverse;
    z-index: -2;
}

.click-indicator {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #ff69b4;
    font-size: 0.9em;
    opacity: 0.8;
}

.service-box:hover .click-indicator {
    opacity: 1;
}

.modal-xl {
    max-width: 90%;
}

.modal-content {
    border-radius: 15px;
}

.modal-body {
    padding: 2rem;
}

.service-icon {
    font-size: 2.5em;
    margin-bottom: 1rem;
    color: #ff69b4;
    animation: gentleRotate 15s linear infinite;
    transition: transform 0.3s ease;
    z-index: 1;
}

.service-icon:hover {
    transform: scale(1.1);
}

@keyframes gentleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradientPulse {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatLayer {
    0% {
        transform: translateX(0) translateY(0) rotate(45deg);
    }
    100% {
        transform: translateX(10px) translateY(10px) rotate(45deg);
    }
}

@keyframes floatLayer2 {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateX(-10px) translateY(-10px) rotate(-45deg);
    }
}

/* Contact Section */
#contact {
    padding: 60px 0;
}

#contact a {
    color: #ff80ff;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.5s;
    opacity: 0;
}

#back-to-top:hover {
    background-color: #ff80ff;
}

#back-to-top.show {
    opacity: 1;
}

/* Footer */
footer {
    background-color: #1c1e1f !important;
    color: #b3b3b3;
    padding: 20px;
    margin-top: 20px;
}

.social-media a {
    margin: 0 15px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

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

    nav.navbar ul {
        flex-direction: column;
        text-align: center;
    }
}

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

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    text-align: center;
    margin: 20px;
}

.coming-soon img {
    max-width: 80%;
    max-height: 60vh;
    height: auto;
    width: auto;
    border: 2px solid #ccc;
    border-radius: 10px;
}

.social-media a i {
    margin: 0 5px;
    /* Add spacing between icons */
    transition: transform 0.3s ease-in-out;
    /* Smooth transition for scaling */
}

.social-media a:hover i {
    transform: scale(1.3);
    /* Slight zoom effect on hover */
}

footer .social-media {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
}

footer .social-media a:hover {
    color: #f000;
}

footer .social-media a {
    margin: 0 15px;
    /* Add spacing between icons */
    transition: transform 0.3s ease;
    /* Smooth transition for scaling */
}

footer .social-media a:hover {
    transform: scale(1.2);
    /* Slight zoom effect on hover */
}

/* Remove any explicit color setting so Font Awesome's default can take effect */
footer .social-media a i {
    color: inherit;
    /* This prevents overriding Font Awesome's default colors */
}

.social-media .linktree-brand {
    color: #43e660;
}

.social-media .youtube-brand {
    color: #FF0000 !important;
    /* Force YouTube red */
}

.social-media .tiktok-brand {
    color: #E1D9D1 !important;
    /* Force TikTok black */
}

.social-media .instagram-brand {
    color: #E1306C !important;
    /* Force Instagram pink */
}

.social-media .spotify-brand {
    color: #1DB954 !important;
    /* Force Spotify green */
}

.social-media .soundcloud-brand {
    color: #FF8800 !important;
    /* Force SoundCloud orange */
}

.social-media .apple-brand {
    color: #A2AAAD !important;
    /* Force Apple grey */
}

.social-media .bandcamp-brand {
    color: #629AA9 !important;
    /* Force Bandcamp blue */
}

.social-media .patreon-brand {
    color: #F96854 !important;
    /* Force Patreon orange */
}

.social-media .facebook-brand {
    color: #1877F2 !important;
    /* Force Facebook blue */
}

.social-media .threads-brand {
    color: #E1D9D1 !important;
    /* Force Threads white */
}

.social-media .twitter-brand {
    color: #1DA1F2 !important;
    /* Force Twitter blue */
}

.social-media .linkedin-brand {
    color: #0077B5 !important;
    /* Force LinkedIn blue */
}

.social-media .reddit-brand {
    color: #FF4500 !important;
    /* Force Reddit orange */
}

.social-media .pinterest-brand {
    color: #E60023 !important;
    /* Force Pinterest red */
}

.social-media .snapchat-brand {
    color: #FFFC00 !important;
    /* Force Snapchat yellow */
}

.social-media .tumblr-brand {
    color: #35465C !important;
    /* Force Tumblr blue */
}

.social-media .twitch-brand {
    color: #6441A4 !important;
    /* Force Twitch purple */
}

.social-media .steam-brand {
    color: #171a21 !important;
    /* Force Steam dark blue */
}

.social-media .discord-brand {
    color: #5865F2 !important;
    /* Force Discord blue */
}

/* Particle Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    /* Place behind other elements */
}

.particle {
    position: absolute;
    width: 8px;
    /* Slightly larger to make them more noticeable */
    height: 8px;
    background: rgba(0, 255, 255, 0.6);
    /* Bright cyan with more opacity */
    border-radius: 50%;
    animation: particleMove 10s linear infinite;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    /* Add a glowing effect */
}

@keyframes particleMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-200%);
    }
}

/* Scroll Animations */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation directions */
.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-down {
    transform: translateY(-30px);
}

/* Animation delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Gradient Button with Perfect Loop Effect (Right to Left) */
.btn-primary,
header .gradient-btn,
form .gradient-btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff, #00ffff);
    /* Define the gradient */
    background-size: 300% 300%;
    /* Increased size to create a smoother loop */
    animation: gradientMoveRightToLeft 4s linear infinite !important;
    /* Faster, continuous loop */
    transition: transform 0.3s ease-in-out;
}

.btn-primary:hover,
.gradient-btn:hover {
    transform: scale(1.05);
    /* Slight zoom-in effect on hover */
}

.btn-primary:focus,
.gradient-btn:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

/* Keyframes for Moving Gradient with a Perfect Loop (Right to Left) */
@keyframes gradientMoveRightToLeft {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@-webkit-keyframes gradientMoveRightToLeft {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ff80ff;
    font-weight: 700;
}

/* Portfolio Item Styles */
.portfolio-item {
    margin-bottom: 30px;
    text-align: center;
    /* Center align text */
}

.portfolio-item img {
    width: 100%;
    /* Ensure images fit the grid */
    border-radius: 5px;
    /* Optional for rounded corners */
}

/* Portfolio Filters */
.portfolio-filters button {
    margin-right: 10px;
}

/* Client Logo Styles */
.client-logo {
    max-height: 100px;
    object-fit: contain;
}

.client-logo:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.filter-button.active {
    background-color: #007bff;
    color: #fff;
}

#portfolio-grid {
    margin-top: 20px;
    /* Optional spacing above the grid */
}

/* Light Mode Styles */
.form-control {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 95%;
    max-width: 800000px;
    margin: 20px auto;
    display: block;
    padding: 10px;
    box-sizing: border-box;
}

.form-control:focus {
    background-color: #f0f0f0;
    color: #000;
    border-color: #ff80ff;
    box-shadow: 0 0 10px #ff80ff;
}

/* Dark Mode Styles */
body.dark-mode .form-control {
    background-color: hsl(200, 5%, 12%);
    color: #ff80ff;
    border: 1px solid #ff80ff;
    border-radius: 5px;
}

body.dark-mode .form-control:focus {
    background-color: #1c1e1f;
    color: #ff80ff;
    border-color: #ff80ff;
    box-shadow: 0 0 10px rgba(255, 128, 255, 0.5);
}

.form-label {
    color: #ff80ff;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin: 0 auto;
    width: 95%;
    max-width: 60000px;
    padding-left: 0px;
    box-sizing: border-box;
    margin-bottom: -15px;
}

/* Higher specificity styles for services.html */
#services .service-box {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

#services .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #e9ecef;
}

#services .click-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #ff69b4;
    font-size: 0.9em;
    opacity: 0.8;
}

#services .service-box:hover .click-indicator {
    opacity: 1;
}

#services .modal-xl {
    max-width: 90%;
}

#services .modal-content {
    border-radius: 15px;
}

#services .modal-body {
    padding: 2rem;
}

#services .service-icon {
    font-size: 2.5em;
    margin-bottom: 1rem;
    color: #ff69b4;
}

.service-box a {
    color: #ff69b4;
    transition: all 0.3s ease;
}

.service-box a:hover {
    color: #ff80ff;
    transform: translateX(5px);
}

.service-box a i {
    margin-right: 5px;
}

.modal .btn-outline-primary {
    color: #ff69b4;
    border-color: #ff69b4;
    transition: all 0.3s ease;
}

.modal .btn-outline-primary:hover {
    background-color: #ff69b4;
    border-color: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
}

.modal .btn-outline-primary i {
    margin-right: 5px;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(139, 30, 90, 0.1), rgba(0, 0, 0, 0.2));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-background.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: -1;
}

.about-hero h1 {
    color: #ff80ff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-hero .lead {
    color: #666;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ff80ff;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-item h3 {
    color: #ff80ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Dark Mode Styles */
body.dark-mode .about-hero {
    background: linear-gradient(135deg, rgba(139, 30, 90, 0.2), rgba(0, 0, 0, 0.4));
}

body.dark-mode .about-hero .lead {
    color: #b3b3b3;
}

body.dark-mode .stat-item {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .stat-item p {
    color: #b3b3b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .lead {
        font-size: 1.4rem;
    }

    .stat-item {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }
}

/* Team Section Styles */
.team-card {
    perspective: 1000px;
    height: 450px;
    margin-bottom: 2rem;
    border-radius: 15px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-card-front {
    background: linear-gradient(135deg, rgba(139, 30, 90, 0.1), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-card-back {
    background: linear-gradient(135deg, #8b1e5a, #ff80ff);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 2rem;
    overflow-y: auto;
}

.team-card-back p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.team-card-back .btn {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    margin-bottom: 1rem;
}

.team-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.team-card h3 {
    color: #ff80ff;
    margin-bottom: 0.5rem;
}

.team-card .role {
    color: #00ffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    color: #ff80ff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ff80ff;
    transform: translateY(-3px);
}

/* Values Section Styles */
.values-section {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

body.dark-mode .values-section {
    background-color: #1a1a1a !important;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.value-icon {
    font-size: 3rem;
    color: #ff80ff;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #ff80ff;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Dark Mode Values Section */
body.dark-mode .value-card {
    background: #1c1e1f;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .value-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

body.dark-mode .value-card p {
    color: #b3b3b3;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #8b1e5a, #ff80ff);
    color: white;
    border: none;
}

.modal-body {
    padding: 2rem;
}

.modal-body img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-body h3 {
    color: #ff80ff;
    margin-bottom: 1rem;
}

.modal-body p {
    color: #666;
    line-height: 1.8;
}

/* Dark Mode Modal Styles */
body.dark-mode .modal-content {
    background-color: #1c1e1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .modal-body {
    background-color: #1c1e1f;
}

body.dark-mode .modal-body p {
    color: #b3b3b3;
}

body.dark-mode .modal-body h3 {
    color: #ff80ff;
}

body.dark-mode .modal-body img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

body.dark-mode .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Dark Mode Styles */
body.dark-mode .team-card .role {
    color: #00ffff;
}

/* Social Media Groups */
.social-group {
    margin-bottom: 2rem;
}

.social-group-title {
    color: #ff80ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-links-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links-group a {
    transition: all 0.3s ease;
    position: relative;
}

.social-links-group a:hover {
    transform: translateY(-5px);
}

.social-links-group a::after {
    content: attr(title);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.social-links-group a:hover::after {
    opacity: 1;
}

.bbb-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Dark Mode Social Media */
body.dark-mode .social-group-title {
    color: #ff80ff;
}

body.dark-mode .social-links-group a::after {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
}

/* BBB Badges Section */
.bbb-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 800px;
}

.bbb-section h5 {
    color: #ff80ff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 128, 255, 0.3);
}

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

.bbb-badge-item {
    transition: transform 0.3s ease;
}

.bbb-badge-item:hover {
    transform: translateY(-5px);
}

.bbb-badge-item img {
    max-height: 60px;
    width: auto;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dark Mode BBB Section */
body.dark-mode .bbb-section {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .bbb-section h5 {
    color: #ff80ff;
    text-shadow: 0 2px 4px rgba(255, 128, 255, 0.5);
}

body.dark-mode .bbb-badge-item img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Responsive BBB Badges */
@media (max-width: 768px) {
    .bbb-badges {
        gap: 1rem;
    }

    .bbb-badge-item img {
        max-height: 50px;
    }
}

/* Forge Text Animation */
.forge-text {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    text-shadow: 0 0 10px rgba(255, 128, 255, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
    color: #ff80ff;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.forge-text:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #ff80ff;
}

.forge-text:focus {
    outline: none;
    text-decoration: none;
    color: #ff80ff;
}

.forge-highlight {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    animation: gradientMove 3s ease infinite;
    text-shadow: 0 0 15px rgba(255, 128, 255, 0.5);
    position: relative;
    display: inline-block;
}

.forge-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff, #00ffff, #ff00ff, transparent);
    background-size: 200% 100%;
    animation: lineGlow 2s linear infinite;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 128, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 128, 255, 0.6);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes lineGlow {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Dark Mode Forge Text */
body.dark-mode .forge-text {
    text-shadow: 0 0 10px rgba(255, 128, 255, 0.5);
}

body.dark-mode .forge-highlight {
    text-shadow: 0 0 20px rgba(255, 128, 255, 0.7);
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    flex-grow: 1;
}

.feature-card .btn {
    align-self: center;
    transition: all 0.3s ease;
}

.feature-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Adjustments */
body.dark-mode .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Gradient Button Styles */
.gradient-btn {
    background: linear-gradient(45deg, #ff80ff, #914291);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8b1e5a, #ff80ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 128, 255, 0.3);
}

.gradient-btn:hover::before {
    opacity: 1;
}

/* Enhanced section transitions */
section {
    position: relative;
    overflow: hidden;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

section:hover::after {
    opacity: 1;
}

/* FAQ Section Styles */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-weight: 500;
    padding: 1.25rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 128, 255, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff80ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    padding: 1.25rem;
    line-height: 1.6;
}

/* Dark Mode Adjustments */
body.dark-mode .accordion-item {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .accordion-button {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .accordion-button:not(.collapsed) {
    background: rgba(255, 128, 255, 0.15);
}

body.dark-mode .accordion-body {
    background: rgba(255, 255, 255, 0.02);
}

/* FAQ Section Specific Styles */
#faq {
    opacity: 1;
}

#faq .accordion-item:first-child {
    opacity: 1;
    transform: none;
}

#faq .accordion-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

#faq .accordion-item.active {
    opacity: 1;
    transform: translateY(0);
}

#faq .accordion-item.reveal-left {
    transform: translateX(-30px);
}

#faq .accordion-item.reveal-right {
    transform: translateX(30px);
}

#faq .accordion-button {
    color: #00ffff;
    border: none;
    background-color: transparent;
}

#faq .accordion-button:not(.collapsed) {
    color: #00ffff;
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

#faq .accordion-body {
    color: #ff80ff;
    background-color: rgba(255, 20, 147, 0.05);
    border-top: 1px solid rgba(255, 20, 147, 0.2);
}

body.dark-mode #faq .accordion-button {
    color: #ff80ff;
}

body.dark-mode #faq .accordion-button:not(.collapsed) {
    color: #00ffff;
    background-color: rgba(255, 20, 147, 0.1);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
}

body.dark-mode #faq .accordion-body {
    color: #00ffff;
    background-color: rgba(255, 20, 147, 0.05);
    border-top: 1px solid rgba(255, 20, 147, 0.2);
}

/* Welcome Title Styles */
.welcome-title {
    font-family: 'VCR OSD Mono', monospace;
    font-size: 3.5rem;
    color: #ff80ff;
    text-shadow: 0 0 10px rgba(255, 128, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Font Face Declaration */
@font-face {
    font-family: 'VCR OSD Mono';
    src: url('/fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
