body {
    font-family: 'Inter', Arial, sans-serif;
    min-height: 100vh;
    color: #e0e6ed;
    background: #181c24;
    position: relative;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

header, footer, main section, .bg-white, .shadow, .shadow-lg, .rounded {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

h1, h2, h3 {
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0 0 1.2em 0;
}

a, button {
    background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
    color: #fff !important;
    border: none;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
a:hover, button:hover {
    background: linear-gradient(90deg, #0ea5e9 0%, #6366f1 100%);
    transform: translateY(-2px) scale(1.04);
}

input, textarea {
    border: 1px solid #232946;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    background: #232946;
    color: #e0e6ed;
    transition: box-shadow 0.2s;
}
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #6366f1;
}

.text-blue-700 {
    background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header, footer {
    background: rgba(24,28,36,0.92);
    box-shadow: 0 4px 32px 0 rgba(35,41,70,0.18);
    backdrop-filter: blur(6px);
    border-radius: 1.5rem;
}

main section, .bg-white {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    transition: none !important;
}
.bg-white:hover {
    box-shadow: none !important;
}

h1, h2, h3 {
    color: #fff;
    letter-spacing: -0.01em;
}

a, button {
    background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
    color: #fff !important;
    border: none;
    border-radius: 0.75rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(99,102,241,0.22);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
a:hover, button:hover {
    background: linear-gradient(90deg, #0ea5e9 0%, #6366f1 100%);
    transform: translateY(-2px) scale(1.04);
}

input, textarea {
    border: 1px solid #232946;
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(24,28,36,0.95);
    color: #e0e6ed;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.10);
    transition: box-shadow 0.2s;
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #6366f1;
}

.text-blue-700 {
    background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header, footer {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 32px 0 rgba(35,41,70,0.07);
    backdrop-filter: blur(6px);
    border-radius: 1.5rem;
}

main section, .bg-white {
    background: rgba(255,255,255,0.85) !important;
    box-shadow: 0 8px 48px 0 rgba(99,102,241,0.13);
    border-radius: 1.5rem !important;
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s;
}
.bg-white:hover {
    box-shadow: 0 16px 64px 0 rgba(99,102,241,0.18);
}

h1, h2, h3 {
    color: #232946;
    letter-spacing: -0.01em;
}

a, button {
    background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
    color: #fff !important;
    border: none;
    border-radius: 0.75rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(99,102,241,0.12);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
a:hover, button:hover {
    background: linear-gradient(90deg, #0ea5e9 0%, #6366f1 100%);
    transform: translateY(-2px) scale(1.04);
}

input, textarea {
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #6366f1;
}

.text-blue-700 {
    background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header, footer {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    backdrop-filter: blur(4px);
}

main {
    animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) both;
}

@keyframes fadeInUp {
    0% {opacity:0; transform:translateY(40px);}
    100% {opacity:1; transform:translateY(0);}
}

input, textarea {
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #6366f1;
}

button {
    background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(99,102,241,0.12);
    transition: background 0.2s, transform 0.2s;
}
button:hover {
    background: linear-gradient(90deg, #0ea5e9 0%, #6366f1 100%);
    transform: translateY(-2px) scale(1.04);
}

.bg-white {
    background: rgba(255,255,255,0.92) !important;
    box-shadow: 0 4px 32px 0 rgba(99,102,241,0.07);
    border-radius: 1.25rem !important;
    backdrop-filter: blur(2px);
    transition: box-shadow 0.3s;
}
.bg-white:hover {
    box-shadow: 0 8px 48px 0 rgba(99,102,241,0.13);
}

.text-blue-700 {
    background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
