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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Remove any conflicting styles */
.old-styles {
    display: none !important;
}

/* Ensure proper section spacing */
section {
    position: relative;
    width: 100%;
    clear: both;
}

/* Demo specific fixes */
#demo {
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
}

/* Navigation fixes */
nav {
    z-index: 9999;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .text-6xl { font-size: 3rem; }
    .text-8xl { font-size: 4rem; }
    .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
}