/* ====================== */
/* === GLOBAL STYLES === */
/* ====================== */
:root {
    --primary-color: #6e45e2;
    --secondary-color: #88d3ce;
    --purple: #9d50bb;
    --cyan: #4776e6;
    --steam: #1b2838;
    --dark-color: #121212;
    --light-color: rgba(255, 255, 255, 0.9);
    --gray-color: #b0b0b0;
    --white-color: #ffffff;
    --black-color: #000000;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Ubuntu Mono', monospace;
    color: var(--light-color);
    background-color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(15, 15, 26, 0.9);
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */ /* use this if you want a blur effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--card-shadow);
    border-radius: 10px;
    padding: 40px;
}

.glass-card-inner {
    background: rgba(30, 30, 45, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.glass-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--light-color) !important;
}

.glass-input::placeholder {
    color: var(--gray-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #5d38c9;
    border-color: #5d38c9;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--light-color);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Badges */
.badge {
    font-family: 'Ubuntu Mono', monospace;
    letter-spacing: 1px;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

.badge.bg-purple {
    background-color: var(--purple) !important;
}

.badge.bg-cyan {
    background-color: var(--cyan) !important;
}

.badge.bg-steam {
    background-color: var(--steam) !important;
}

.badge.bg-console {
    background-color: #107c10 !important;
}

.badge.bg-mobile {
    background-color: #68217a !important;
}

/* ====================== */
/* === NAVIGATION === */
/* ====================== */
.navbar {
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: rgba(15, 15, 26, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(110, 69, 226, 0.5);
}

.nav-link {
    font-family: 'Ubuntu Mono', monospace;
    letter-spacing: 1px;
    margin: 0 6px; 
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 1rem; 
}


.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(110, 69, 226, 0.1);
    text-shadow: 0 0 8px rgba(110, 69, 226, 0.5);
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.avatar-img {
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.avatar-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-color);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
}

/* ====================== */
/* === HERO SECTION === */
/* ====================== */
.hero {
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Press Start 2P', cursive;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.hero-image-container {
    position: relative;
    text-align: center;
    margin-top: 40px;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-image {
    width: 300px;
    height: 300px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(110, 69, 226, 0.5);
    border-radius: 50%;
    object-fit: cover;
}

.experience-badge,
.projects-badge {
    position: absolute;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    top: -20px;
    left: -20px;
}

.projects-badge {
    bottom: -20px;
    right: -20px;
}

.hero-social {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Responsive */
@media (max-width: 991.98px) {
    .hero {
        padding: 100px 0;
        margin-top: 80px;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .hero-image-container {
        margin-top: 30px;
    }
    
    .hero-social {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 80px 0;
        margin-top: 70px;
    }
    
    .hero-card {
        padding: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .hero-content {
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        margin-bottom: 25px;
    }
    
    .hero-image-container {
        margin-top: 25px;
    }
    
    .hero-social {
        margin-top: 25px;
    }
    
    .social-icons {
        margin-top: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 60px 0;
        margin-top: 60px;
    }
    
    .hero-card {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .hero-content {
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-bottom: 20px;
    }
    
    .hero-image-container {
        margin-top: 20px;
    }
    
    .hero-social {
        margin-top: 20px;
    }
    
    .social-icons {
        gap: 12px;
        margin-top: 12px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .experience-badge,
    .projects-badge {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}

/* ====================== */
/* === ABOUT SECTION === */
/* ====================== */
.about-info {
    padding: 20px;
    margin-top: 30px;
}

.info-item i {
    font-size: 1.5rem;
}

.info-label h5 {
    color: var(--primary-color);
    font-size: 1rem;
}

.info-label p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.skills-section {
    padding: 30px;
    color: var(--gray-color);
}

.skill-item {
    margin-bottom: 20px;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: var(--primary-color);
    transition: width 1s ease-in-out;
}

/* About Responsive */
@media (max-width: 767.98px) {
    .about .row {
        flex-direction: column-reverse;
    }
    
    .about-content {
        margin-top: 30px;
    }
}

/* ====================== */
/* === GAMES SECTION === */
/* ====================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(110, 69, 226, 0.3);
}

.game-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.05);
}

.game-platforms {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.game-content {
    padding: 20px;
}

.game-meta {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.game-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Games Responsive */
@media (max-width: 991.98px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* ====================== */
/* === SKILLS SECTION === */
/* ====================== */
.skill-category {
    padding: 20px;
    height: 100%;
}

.skill-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.skill-list li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--light-color);
}

.skill-list li:last-child {
    border-bottom: none;
}

/* ====================== */
/* === EXPERIENCE SECTION === */
/* ====================== */
.experience-timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    color: var(--primary-color);
    font-family: 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    background: rgba(110, 69, 226, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.timeline-header {
    margin-bottom: 15px;
}

.timeline-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.company {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.timeline-body p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.skills-used {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-badge {
    background: rgba(110, 69, 226, 0.2);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Experience Responsive */
@media (max-width: 991.98px) {
    .timeline-date {
        position: static;
        margin-bottom: 10px;
    }
}

/* ====================== */
/* === CLIENTS SECTION === */
/* ====================== */
.clients-logos {
    padding: 30px 0;
}

.client-carousel {
    margin: 0 auto;
    max-width: 900px;
}

.client-logo-item {
    padding: 0 15px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.05);
}

.client-logo img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.client-logo:hover img {
    filter: grayscale(0) brightness(1);
}

/* Clients Carousel Navigation */
.client-carousel .slick-prev,
.client-carousel .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.client-carousel .slick-prev {
    left: -45px;
}

.client-carousel .slick-next {
    right: -45px;
}

.client-carousel .slick-prev:before,
.client-carousel .slick-next:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    opacity: 1;
}

.client-carousel .slick-prev:before {
    transform: rotate(-135deg);
    margin-right: -4px;
}

.client-carousel .slick-next:before {
    transform: rotate(45deg);
    margin-left: -4px;
}

/* ====================== */
/* === TESTIMONIALS SECTION === */
/* ====================== */
.testimonials-carousel {
    margin-top: 50px;
    padding: 0 15px;
}

.testimonial-item {
    padding: 25px;
    margin: 0 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(30, 30, 45, 0.5);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    position: relative;
    padding: 0 15px 15px;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-text i:first-child {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 1.5rem;
    opacity: 0.3;
}

.testimonial-text i:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.5rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    margin-right: 15px;
}

.author-info h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.author-info .position {
    font-size: 0.8rem;
    color: var(--gray-color);
    display: block;
    margin-bottom: 5px;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Testimonials Carousel Navigation */
.testimonials-carousel .slick-prev,
.testimonials-carousel .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.testimonials-carousel .slick-prev {
    left: -35px;
}

.testimonials-carousel .slick-next {
    right: -35px;
}

.testimonials-carousel .slick-prev:before,
.testimonials-carousel .slick-next:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    opacity: 1;
}

.testimonials-carousel .slick-prev:before {
    transform: rotate(-135deg);
    margin-right: -4px;
}

.testimonials-carousel .slick-next:before {
    transform: rotate(45deg);
    margin-left: -4px;
}

.testimonials-carousel .slick-dots {
    bottom: -35px;
}

.testimonials-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
}

.testimonials-carousel .slick-dots li button:before {
    font-size: 12px;
    line-height: 12px;
    width: 12px;
    height: 12px;
    color: var(--primary-color);
    opacity: 0.5;
    content: '•'; 
}

.testimonials-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .client-logo {
        height: 100px;
        padding: 15px;
    }
    
    .client-logo img {
        max-height: 50px;
    }
}

@media (max-width: 991.98px) {
    .testimonials-carousel {
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        padding: 0 10px 10px;
    }
    
    .client-logo {
        height: 90px;
        padding: 12px;
    }
    
    .client-logo img {
        max-height: 45px;
    }
}

@media (max-width: 767.98px) {
    .testimonials-carousel {
        margin-top: 30px;
        padding: 0;
    }
    
    .testimonial-item {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .author-info h5 {
        font-size: 0.9rem;
    }
    
    .client-logo {
        height: 80px;
        padding: 10px;
    }
    
    .client-logo img {
        max-height: 40px;
    }
    
    /* Adjust carousel arrows for mobile */
    .client-carousel .slick-prev {
        left: -25px;
    }
    
    .client-carousel .slick-next {
        right: -25px;
    }
    
    .testimonials-carousel .slick-prev {
        left: -20px;
    }
    
    .testimonials-carousel .slick-next {
        right: -20px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-item {
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        padding: 0 5px 5px;
    }
    
    .testimonial-text i:first-child,
    .testimonial-text i:last-child {
        font-size: 1.2rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-info h5 {
        font-size: 0.85rem;
    }
    
    .client-logo {
        height: 70px;
        padding: 8px;
    }
    
    .client-logo img {
        max-height: 35px;
    }
}

/* ====================== */
/* === BLOG SECTION === */
/* ====================== */
.blog-post {
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(110, 69, 226, 0.3);
}

.blog-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    line-height: 1.2;
}

.date-day {
    font-size: 1.1rem;
}

.date-month {
    font-size: 0.6rem;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--gray-color);
}

/* ====================== */
/* === CONTACT SECTION === */
/* ====================== */
.contact-form .form-label {
    color: var(--light-color);
    margin-bottom: 8px;
}

.contact-info {
    padding: 30px;
    height: 100%;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-links .social-icons {
    justify-content: flex-start;
}

/* ====================== */
/* === FOOTER SECTION === */
/* ====================== */
.footer {
    padding: 60px 0 0;
    margin-bottom: 50px;
}

.footer-card {
    border-radius: 10px 10px 0 0;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

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

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

.footer-links a {
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
}

.footer-contact a {
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Footer Responsive */
@media (max-width: 767.98px) {
    .footer .row > div {
        margin-bottom: 30px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}


/* ====================== */
/* === PRELOADER === */
/* ====================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7); 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader {
  text-align: center;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--gray-color);
  border-top: 5px solid var(--black-color); 
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

.loader-text {
  margin-top: 15px;
  color: #333;
  font-size: 30px;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
}

/* Animated dots */
.loader-text::after {
  content: '...';
  display: inline-block;
  width: 50px; 
  animation: blinkDots 1.5s infinite steps(1);
  color: var(--black-color);
  font-size: 44px;
  vertical-align: middle;
  margin-left: 5px; 
}

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

@keyframes blinkDots {
  0%, 33% { content: '.'; }
  34%, 66% { content: '..'; }
  67%, 100% { content: '...'; }
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ====================== */
/* === CAROUSEL STYLES === */
/* ====================== */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    color: var(--light-color);
    opacity: 0.5;
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

.slick-prev:before, 
.slick-next:before {
    color: var(--primary-color);
    font-size: 30px;
}

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -40px;
}

/* Space Background */
.space-background {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}