* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'JetBrains Mono', 'Courier New', monospace;

}

/* Data Center Background Styles */
body {
    background: #000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

canvas {
    display: block;
    background: transparent;
}

.ui-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.data-stream {
    position: absolute;
    font-size: 12px;
    color: #fcfcfc;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-weight: bold;
}

.rack-label {
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    opacity: 0.9;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 0 0 5px #fafffa;
}

/* Mobile-Optimized Box Layout Overlay */
.content-overlay {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    min-height: 100vh;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-container {
    background-color: rgba(0, 20, 0, 0.3);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgb(255, 255, 255);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
}

/* Main Heading with Border */
.main-heading-container {
    padding: 25px;
    border: 2px solid #ffffff;
    border-bottom: none;
    background: rgba(0, 40, 0, 0.2);
    text-align: center;
}

.main-heading {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.514);
    transition: all 0.3s ease;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'JetBrains Mono', monospace;
    animation: fadeIn 1s ease-out 0.2s both;
}

.subheading {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    letter-spacing: 0.5px;
    animation: fadeIn 1s ease-out 0.4s both;
}

/* Description Box with 3:1 ratio */
.description-box {
    display: flex;
    border: 2px solid #ffffff;
    border-bottom: none;
    min-height: 300px;
    overflow: hidden;
    background: rgba(0, 30, 0, 0.100);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.6s both;
}

.description-content {
    flex: 3;
    padding: 25px;
    background-color: rgba(0, 25, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.description-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    transition: all 0.3s ease;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.description-text {
    font-size: 1.2rem;
    color: #ffffffcc;
    line-height: 1.8;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.description-image {
    flex: 1;
    background-color: rgba(0, 40, 0, 0.100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-left: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    max-width: 280px;
    background: rgba(0, 60, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    text-align: center;
    padding: 20px;
    aspect-ratio: 1 / 1;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

/* Detail Boxes */
.details-container {
    border: 2px solid #ffffff;
    background: rgba(0, 20, 0, 0.2);
}

.detail-box {
    display: flex;
    border-bottom: 2px solid #ffffff;
    min-height: 200px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 30, 0, 0.2);
    animation: slideIn 0.8s ease-out both;
}

.detail-box:last-child {
    border-bottom: none;
}

.detail-image {
    flex: 0 0 220px;
    background-color: rgba(0, 40, 0, 0.100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-right: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.detail-img-placeholder {
    width: 100%;
    height: 100%;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
    padding: 15px;
    border-radius: 2px;
    aspect-ratio: 1 / 1;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    border-radius: 50px;
}

.detail-img-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.detail-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.detail-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.detail-text {
    font-size: 1.1rem;
    color: #c0ffc0;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    line-height: 1.6;
}

.feature-list {
    margin-top: 10px;
    padding-left: 20px;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.feature-list li {
    margin-bottom: 5px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 600;
}

/* Enhanced Pricing Section */
.pricing-container {
    position: relative;
    border-bottom: none;
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.005);
    text-align: center;
    animation: fadeIn 1s ease-out 0.5s both;
    border: 1px solid white;
    margin: 0 auto;
    overflow: hidden;
}

.pricing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
}

.pricing-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 100, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.pricing-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #b0ffd9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.price-display {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 30, 0, 0.4);
    padding: 35px 60px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 100, 0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.price-display::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(0, 255, 100, 0) 0%,
        rgba(0, 255, 100, 0.3) 50%,
        rgba(0, 255, 100, 0) 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-display:hover::before {
    opacity: 1;
}

.original-price {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-right: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.discounted-price {
    font-size: 5rem;
    color: #ffffff;
    font-weight: 900;
    margin-right: 30px;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -1px;
    position: relative;
    background: linear-gradient(135deg, #00ff88 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.discounted-price::after {
    content: 'USD';
    position: absolute;
    bottom: -15px;
    right: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.discount-badge {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #001a00;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.3),
        0 0 0 1px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.discount-badge::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;
}

.discount-badge:hover::before {
    left: 100%;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #001a00;
    padding: 22px 55px;
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.3),
        0 0 0 1px rgba(0, 255, 136, 0.2);
    margin-top: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.4),
        0 0 0 1px rgba(0, 255, 136, 0.3);
    color: #001a00;
}

.contact-button:active {
    transform: translateY(-2px);
}

.button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.button-text i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.contact-button:hover .button-text i {
    transform: translateX(5px);
}

/* Add animation for the price display */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.price-display {
    animation: float 6s ease-in-out infinite;
}

/* Add responsive design */
@media (max-width: 768px) {
    .pricing-container {
        padding: 40px 20px;
    }
    
    .pricing-title {
        font-size: 2.2rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .price-display {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }
    
    .original-price, .discounted-price {
        margin-right: 0;
        text-align: center;
    }
    
    .discounted-price {
        font-size: 4rem;
    }
    
    .original-price {
        font-size: 2.2rem;
    }
}

/* Optional: Add this to your global styles for better font rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animation delays for detail boxes */
.detail-box:nth-child(1) { animation-delay: 0.8s; }
.detail-box:nth-child(2) { animation-delay: 1s; }
.detail-box:nth-child(3) { animation-delay: 1.2s; }
.detail-box:nth-child(4) { animation-delay: 1.4s; }
.detail-box:nth-child(5) { animation-delay: 1.6s; }

/* Smooth animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-overlay {
        padding: 10px;
        zoom: 0.7;
        transform-origin: top center;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .subheading {
        font-size: 0.9rem;
    }
    
    .description-box {
        flex-direction: row;
        min-height: 200px;
    }
    
    .description-content {
        padding: 15px;
    }
    
    .description-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .description-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .description-image {
        border-left: 2px solid #ffffff;
        border-top: none;
        padding: 10px;
    }
    
    .image-placeholder {
        max-width: 120px;
        aspect-ratio: 1 / 1;
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .detail-box {
        flex-direction: row;
        min-height: 140px;
    }
    
    .detail-image {
        flex: 0 0 120px;
        border-right: 2px solid #ffffff;
        border-bottom: none;
        padding: 10px;
    }
    
    .detail-img-placeholder {
        max-width: 80px;
        aspect-ratio: 1 / 1;
        font-size: 0.8rem;
        padding: 8px;
    }
    
    .detail-img-placeholder i {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .detail-content {
        padding: 15px;
    }
    
    .detail-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .detail-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .feature-list {
        margin-top: 5px;
        padding-left: 15px;
    }
    
    .feature-list li {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }
    
    .pricing-container {
        padding: 25px 20px;
    }
    
    .pricing-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .pricing-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .price-display {
        flex-direction: row;
        padding: 15px 25px;
        gap: 15px;
    }
    
    .original-price {
        font-size: 1.5rem;
        margin-right: 15px;
    }
    
    .discounted-price {
        font-size: 2.2rem;
        margin-right: 15px;
    }
    
    .discount-badge {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .contact-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: auto;
        max-width: none;
    }
    
    .section-footer {
        padding: 15px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .content-overlay {
        zoom: 0.6;
    }
    
    .main-heading {
        font-size: 1.5rem;
    }
    
    .subheading {
        font-size: 0.8rem;
    }
    
    .description-box {
        min-height: 160px;
    }
    
    .description-content {
        padding: 12px;
    }
    
    .description-title {
        font-size: 1rem;
    }
    
    .description-text {
        font-size: 0.75rem;
    }
    
    .image-placeholder {
        max-width: 90px;
        font-size: 0.8rem;
        padding: 8px;
    }
    
    .image-placeholder i {
        font-size: 2rem;
    }
    
    .detail-box {
        min-height: 110px;
    }
    
    .detail-image {
        flex: 0 0 90px;
        padding: 8px;
    }
    
    .detail-img-placeholder {
        max-width: 60px;
        font-size: 0.7rem;
        padding: 6px;
    }
    
    .detail-img-placeholder i {
        font-size: 1.5rem;
    }
    
    .detail-content {
        padding: 12px;
    }
    
    .detail-title {
        font-size: 0.9rem;
    }
    
    .detail-text {
        font-size: 0.75rem;
    }
    
    .feature-list li {
        font-size: 0.7rem;
    }
    
    .pricing-container {
        padding: 20px 15px;
    }
    
    .pricing-title {
        font-size: 1.1rem;
    }
    
    .pricing-subtitle {
        font-size: 0.8rem;
    }
    
    .price-display {
        padding: 12px 20px;
    }
    
    .original-price {
        font-size: 1.2rem;
    }
    
    .discounted-price {
        font-size: 1.8rem;
    }
    
    .discount-badge {
        font-size: 0.8rem;
    }
    
    .contact-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-footer {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .content-overlay {
        zoom: 0.6;
    }
    
    .description-box {
        min-height: 140px;
    }
    
    .detail-box {
        min-height: 100px;
    }
    
    .image-placeholder {
        max-width: 100px;
    }
    
    .detail-img-placeholder {
        max-width: 70px;
    }
}

/* Prevent horizontal scrolling */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .content-overlay {
        width: 100%;
        max-width: 100%;
    }
}