/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #0a0a0a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Modern Glassmorphism */
.navbar {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 14px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    border: 1px solid rgba(255, 255, 255, 0.25);
    top: 15px;
}

.navbar.navbar-light-text .nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar.navbar-light-text .nav-link:hover {
    color: #ff4444;
    background: rgba(220, 38, 38, 0.2);
    transform: translateY(-1px);
}

.navbar.navbar-light-text .dropdown-arrow {
    color: rgba(255, 255, 255, 0.95);
}

.navbar.navbar-dark-text .dropdown-arrow {
    color: rgba(26, 26, 26, 0.95);
}

.nav-container {
    max-width: auto;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background: transparent;
    border-radius: 0;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.nav-logo a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc2626;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
}

.nav-logo a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #ff4444;
    background: rgba(220, 38, 38, 0.2);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #ff4444;
    background: rgba(220, 38, 38, 0.25);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.navbar.navbar-dark-text .nav-link {
    color: rgba(26, 26, 26, 0.95) !important;
}

.navbar.navbar-dark-text .nav-link:hover {
    color: #dc2626 !important;
    background: rgba(220, 38, 38, 0.15) !important;
}

.navbar.navbar-dark-text .nav-link.active {
    color: #dc2626 !important;
    background: rgba(220, 38, 38, 0.2) !important;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1001;
    margin-top: 0.8rem;
    padding: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin: 4px;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: rgba(220, 38, 38, 0.3);
    color: #ff4444;
    transform: translateX(4px);
}

.navbar.navbar-light-text .dropdown-menu {
    background: rgba(255, 255, 255, 0.08);
}

.navbar.navbar-dark-text .dropdown-menu a {
    color: rgba(26, 26, 26, 0.95) !important;
}

.navbar.navbar-dark-text .dropdown-menu a:hover {
    background: rgba(220, 38, 38, 0.15) !important;
    color: #dc2626 !important;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1003;
    padding: 0.5rem;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.95);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar.navbar-dark-text .bar {
    background-color: rgba(26, 26, 26, 0.95) !important;
}

/* Hero Section - Modern with Parallax */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 50px;
    background: #0a0a0a;
    color: white;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #ffcccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #ff1f1f 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-squares {
    position: relative;
    width: 300px;
    height: 300px;
}

.square {
    position: absolute;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

.square-1 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.square-2 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    top: 50px;
    right: 30px;
    animation-delay: 1s;
}

.square-3 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    bottom: 40px;
    left: 40px;
    animation-delay: 2s;
}

.square-4 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    bottom: 20px;
    right: 20px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Features Section - Modern Cards */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #1a1a1a 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ff1f1f);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(220, 38, 38, 0.1) inset;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.feature-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.feature-link:hover::after {
    width: 100%;
}

.feature-link:hover {
    color: #b91c1c;
}

/* Latest Projects Section - Modern Grid */
.latest-projects {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.latest-projects h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #1a1a1a 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(220, 38, 38, 0.1) inset;
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 700;
}

.project-content p {
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1rem;
}

.project-tag {
    background: linear-gradient(135deg, #dc2626, #ff1f1f);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Footer - Modern Dark */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #ff4444;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 40px);
        left: 50%;
        transform: translateX(-50%);
        border-radius: 30px;
        padding: 10px 16px;
    }

    .nav-container {
        padding: 0 12px;
        max-width: 100%;
    }

    .nav-logo img {
        height: 12px !important;
        margin-right: 0.75rem !important;
    }

    .nav-menu {
        position: fixed;
        left: 50%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: calc(100vw - 40px);
        max-width: calc(100% - 40px);
        margin: 0;
        padding: 0 20px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        padding: 1.5rem 20px;
        gap: 0;
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-10px);
    }

    .nav-menu.active {
        left: 50%;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block !important;
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-align: center;
        color: #000 !important;
    }

    .dropdown-only {
        cursor: pointer;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-align: center;
        flex-direction: row;
        gap: 0.5rem;
        color: #000 !important;
    }

    .dropdown-only .dropdown-arrow {
        color: #000 !important;
    }

    .hamburger {
        display: flex !important;
        z-index: 1003 !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.03) !important;
        margin-top: 0 !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: 0 !important;
    }

    .dropdown-menu li {
        border-bottom: none !important;
        padding: 0 !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }

    .dropdown.mobile-open .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown-menu a {
        color: #000 !important;
        padding: 0.75rem 1.5rem !important;
        margin: 0 !important;
        display: block !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
        transition: background-color 0.3s ease !important;
        border-radius: 0 !important;
    }

    .dropdown-menu a:hover {
        background-color: rgba(220, 38, 38, 0.15) !important;
        color: #000 !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-visual {
        order: -1;
    }

    .hero-squares {
        width: 200px;
        height: 200px;
    }

    .features-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features h2,
    .latest-projects h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary {
        font-size: 0.85rem !important;
        padding: 0.9rem 1.8rem !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
    }

    .hero-icon {
        width: 180px !important;
        height: 54px !important;
    }

    .hero-main-image {
        width: 300px !important;
        height: auto !important;
    }

    .hero p {
        font-size: 0.95rem !important;
    }

    .hero h2 {
        font-size: 1.8rem !important;
        margin-top: 3rem !important;
    }

    .hero img[alt="Steam"],
    .hero img[alt="Epic Games Store"],
    .hero img[alt="GOG"] {
        height: 24px !important;
    }

    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 15px 30px;
    }

    .features,
    .latest-projects {
        padding: 60px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 0.8rem !important;
        padding: 0.8rem 1.5rem !important;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
    }

    .features h2,
    .latest-projects h2 {
        font-size: 1.75rem;
    }
}

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

/* Dropdown-only nav items (non-clickable) */
.dropdown-only {
    cursor: default;
    display: flex;
    align-items: center;
    color: #f8f8f8;
    text-decoration: none;
    transition: color 0.3s;
}

.dropdown-only:hover {
    color: #ff4444;
}

/* Skeleton Loader Animation */
@keyframes skeleton-loading {
    0% {
        background: linear-gradient(90deg, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
        background-position: -200% 0;
    }
    100% {
        background: linear-gradient(90deg, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
        background-position: 200% 0;
    }
}

.skeleton-loader {
    background: linear-gradient(90deg, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 2s infinite;
    border-radius: 8px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 16px;
    font-size: 18px;
    background: rgba(220, 38, 38, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#myBtn:hover {
    background: rgba(220, 38, 38, 1);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5);
}

#myBtn.light-bg {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#myBtn.light-bg:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Additional Modern Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Smooth transitions for all interactive elements */
a, button, .btn {
    -webkit-tap-highlight-color: transparent;
}

/* Selection styling */
::selection {
    background: rgba(220, 38, 38, 0.3);
    color: #1a1a1a;
}

::-moz-selection {
    background: rgba(220, 38, 38, 0.3);
    color: #1a1a1a;
}
