/* --- Hero Container --- */
.dz-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(10,10,15,0.95) 0%, rgba(15,15,20,0.98) 100%);
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dz-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This ensures the image covers the area without distortion */
    object-fit: cover; 
    /* Ensures the image stays behind your text */
    z-index: -1; 
    /* Optional: helps with transparency visibility if the section has a background color */
    display: block;
}


/* --- The Bigger, Responsive Title --- */
.dz-hero-title {
    font-family: 'Oswald', sans-serif;
    /* Scales between 40px and 100px based on screen size */
    font-size: clamp(40px, 9vw, 100px); 
    font-weight: 900;
    line-height: 1.1; /* Tighter line height for that "Hero" look */
    background: linear-gradient(45deg, #60a5fa, #a78bfa, #60a5fa);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    margin-bottom: 15px;
    letter-spacing: 0.05em; /* Proportional spacing prevents clipping */
    text-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
    text-transform: uppercase;
}

/* --- Subtitle --- */
.dz-hero-subtitle {
    font-size: clamp(16px, 2vw, 24px);
    color: #e5e7eb;
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
}

/* --- Smaller Description --- */
.dz-hero-description {
    font-size: 16px; /* Reduced for hierarchy */
    color: #9ca3af; /* Dimmer grey to stay secondary */
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Necessary Animation --- */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.dz-btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
    border-radius: 0.5rem;
}

.dz-btn-primary:hover {
    background: linear-gradient(45deg, #60a5fa, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.dz-section {
    padding: 80px 0;
}

.dz-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.dz-feature-card {
    background: linear-gradient(135deg, #1f2937 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dz-feature-card:hover {
    transform: translateY(-10px);
    border-color: #60a5fa;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.dz-feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dz-feature-content {
    padding: 30px;
}

.dz-feature-title {
    font-size: 28px;
    color: #60a5fa;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 2px;
}

.dz-feature-description {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
}

.dz-section-title {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    color: #f9fafb;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.dz-section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dz-faq-item {
    background: linear-gradient(135deg, #1f2937 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    margin-bottom: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.dz-faq-item:hover {
    border-color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.dz-faq-question {
    font-size: 20px;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 15px;
}

.dz-faq-answer {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.8;
}

.dz-entity-item {
    background: linear-gradient(135deg, #1f2937 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-left: 4px solid #3b82f6;
    border-radius: 1rem;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.dz-entity-item:hover {
    background: linear-gradient(135deg, #374151 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: #60a5fa;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.dz-entity-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.dz-entity-name {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    color: #60a5fa;
}

.dz-entity-type-badge {
    background: rgba(220, 20, 60, 0.3);
    color: #fca5a5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ef4444;
}

.dz-entity-description {
    color: #d1d5db;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.dz-entity-properties {
    background: #111827;
    padding: 15px;
    border-left: 3px solid #3b82f6;
    border-radius: 4px;
}

.dz-entity-properties strong {
    color: #60a5fa;
    margin-right: 8px;
}

.dz-entity-properties-text {
    color: #9ca3af;
}

.dz-tips-container {
    max-width: 900px;
    margin: 0 auto;
    background: #1f2937;
    border: 2px solid #374151;
    border-radius: 0.75rem;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dz-tips-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #374151;
}

.dz-tips-icon {
    font-size: 28px;
}

.dz-tips-title {
    font-size: 24px;
    font-weight: 700;
    color: #60a5fa;
    letter-spacing: 1px;
}

.dz-tips-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.dz-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #111827;
    border-left: 3px solid #3b82f6;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.dz-tips-list li:hover {
    background: #1e3a5f;
    border-left-color: #60a5fa;
    transform: translateX(3px);
}

.dz-tips-list li::before {
    content: "•";
    color: #60a5fa;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1.2;
}

.dz-tip-text {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
}

/* Ensure body doesn't cause horizontal scroll */
body {
    overflow-x: hidden;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.floating-nav-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: 2px solid #60a5fa;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-nav-toggle:hover {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.7);
}

.floating-nav-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: #1f2937;
    border: 2px solid #374151;
    border-radius: 12px;
    padding: 12px;
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-nav-item {
    display: block;
    padding: 12px 16px;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

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

.floating-nav-item:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .floating-nav {
        right: 15px;
        bottom: 15px;
    }

    .floating-nav-toggle {
        width: 55px;
        height: 55px;
    }

    .floating-nav-menu {
        min-width: 180px;
        bottom: 70px;
    }

    .floating-nav-item {
        font-size: 14px;
        padding: 10px 14px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .dz-hero {
        height: 70vh;
        min-height: 450px;
    }

    .dz-hero-video {
        object-fit: cover;
    }

    .dz-hero-content {
        padding: 30px 15px;
        margin: 0 0.5rem;
    }

    .dz-hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .dz-hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .dz-hero-description {
        font-size: 16px;
    }

    .dz-section {
        padding: 60px 0;
    }

    .dz-section-title {
        font-size: 36px;
    }

    .dz-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dz-entity-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dz-tips-container {
        padding: 20px;
    }

    .dz-tips-list {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .dz-hero {
        height: 75vh;
        min-height: 400px;
    }

    .dz-hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .dz-hero-subtitle {
        font-size: 16px;
    }

    .dz-hero-description {
        font-size: 14px;
    }

    .dz-btn-primary {
        padding: 12px 30px;
        font-size: 16px;
    }

    .dz-section-title {
        font-size: 28px;
    }

    .dz-feature-content {
        padding: 20px;
    }

    .dz-faq-item,
    .dz-entity-item {
        padding: 20px;
    }
}