@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    perspective: 1000px;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    font-size:12px !important;
    background: #141524;
}

.inter{
    font-family: "Inter", sans-serif;
}

.hero {
    font-family: "Exo", sans-serif; 
    position: relative;
}

.heroBG {
    background-image: url('https://bloxforge.com/wp-content/uploads/2025/03/Delta-Exploits-backgroung-image.webp');
    width: 100%;
    opacity: .2;
    background-clip: padding-box;
    background-repeat: repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: fixed;
}



.hero .title{
    line-height: 130%;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.1)); }
    100% { filter: brightness(1.1) drop-shadow(0 0 30px rgba(255, 255, 255, 0.2)); }
}

.hero p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .grid {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero .browseBtn {
    animation: fadeInUp 1s ease-out 1.1s both;
}


.tool-card2{
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tool-card2:hover::before {
    left: 100%;
}



.tool-card{
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tool-card:hover::before{
    left: 100%;
}

.tool-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tool-card img {
    transition: transform 0.3s ease;
}

.tool-card:hover img {
    transform: scale(1.1);
}

.tool-card svg {
    transition: transform 0.3s ease;
}

.tool-card:hover svg {
    transform: translateX(3px);
}

.browseBtn{
  /*   background: linear-gradient(218deg, #6e28d9 56%, #ff426f);*/
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(110, 40, 217, 0.3);
}

.browseBtn::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 ease;
}

.browseBtn:hover::before {
    left: 100%;
}

.browseBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 52, 217, 0.5);
}

.browseBtn:active {
    transform: translateY(0);
}

.bookeh{
    background-image: url('https://shortswave.com/images/new_ellipse-1.svg');
    opacity: .20;
    width: 100%;
    background-clip: padding-box;
    background-repeat: repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: fixed;

}

@keyframes float {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero .title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
}

/* Navigation Bar Styles */
.navbar {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.nav-link {
    position: relative;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #68D594;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .navbar .max-w-7xl {
        padding: 0 1rem;
    }
}

/* Tutorial Section Styles */
.tutorial-section {
    position: relative;
    overflow: hidden;
}


.tutorial-content {
    position: relative;
    z-index: 1;
}

.tutorial-step {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.tutorial-step:nth-child(1) { animation-delay: 0.1s; }
.tutorial-step:nth-child(2) { animation-delay: 0.2s; }
.tutorial-step:nth-child(3) { animation-delay: 0.3s; }
.tutorial-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tutorial-step:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.tutorial-visual {
    position: relative;
    z-index: 1;
}

.device-mockup {
    position: relative;
    overflow: hidden;
}

.device-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.download-icon {
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-icon:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    transform: scale(1.1) translateY(-2px);
}

/* Responsive Tutorial */
@media (max-width: 1024px) {
    .tutorial-section .grid {
        grid-template-columns: 1fr;
        gap: 8rem;
    }
    
    .tutorial-visual {
        order: -1;
    }
    
    .device-mockup {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tutorial-section {
        padding: 4rem 1rem;
    }
    
    .tutorial-section h2 {
        font-size: 2rem;
    }
    
    .tutorial-step {
        margin-bottom: 2rem;
    }
}



#popup1 {
    display: none;
    position: fixed;
    inset: 0; /* top: 0; right: 0; bottom: 0; left: 0 */
    z-index: 1000;
    background: rgba(20, 21, 36, 0.1);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent background scroll */
}

#popup1.active {
    display: flex;
}

/* Make the popup scrollable if content exceeds height */
#popup1 .popup {
    background: #18192a;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 2.5rem 2rem 2rem;
    max-width: 720px;
    width: 92vw;

    max-height: 90vh;                  /* Limit height to allow scrolling */
    overflow-y: auto;                  /* Scroll inside popup */
    -webkit-overflow-scrolling: touch;/* Required for smooth scroll on iOS */

    color: #fff;
    position: relative;
    text-align: left;
    font-family: inherit;
    animation: bounceIn 0.5s;
}
