/* DNX-One Template - Modern Dark Green Design */

/* Dark Green Gradient Background */
.dnx-gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, 
        oklch(35% 0.08 166) 0%, 
        oklch(28% 0.10 170) 25%,
        oklch(32% 0.06 175) 50%,
        oklch(25% 0.08 165) 75%,
        oklch(20% 0.10 166) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Page Container */
.page-container {
    min-height: auto;
    display: flex;
    flex-direction: column;
    color: #1a1a1a;
    font-family: var(--font-poppins);
    position: relative;
    background: linear-gradient(135deg, 
        oklch(35% 0.08 166) 0%, 
        oklch(28% 0.10 170) 25%,
        oklch(32% 0.06 175) 50%,
        oklch(25% 0.08 165) 75%,
        oklch(20% 0.10 166) 100%);
}

/* Hero Wide Layout */
.hero-wide {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 70vh;
    position: relative;
    z-index: 2;
}

.hero-wide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    gap: 2rem;
    min-height: 70vh;
    text-align: center;
}

.hero-wide-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
    text-align: center;
    color: white;
}

.hero-wide-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    color: white;
}



/* Bottom Section (renamed from white-section) */
.bottom-section {
    background: #ffffff;
    color: #1a1a1a;
    width: 100vw;
    margin: 0;
    padding: 1rem 0 0.5rem 0;
    position: relative;
    z-index: 3;
    min-height: 200px;
}

/* Content Grid */
.content-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem 1.5rem;
    gap: 2rem; /* Reduce vertical gap between sections */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    min-height: 0;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: center;
    text-align: center;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* Domain Name and Tagline */
.domain-name {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f8fafc, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    letter-spacing: -0.03em;
    line-height: 1.1;
    min-height: 65px;
}

.domain-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

/* Price Section */
.price-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    margin-top: 2rem;
}

.price-label {
    font-size: 1.1rem;
    opacity: 0.85;