html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    font-family: 'Verdana', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #00A1D6, #A1D6FF, #00FF99, #FF66CC);
    background-size: 600% 600%;
    animation: gradientShift 6s ease infinite;
    color: #333;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(161,214,255,0.7));
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 0 80px rgba(255,255,255,0.7);
    border: 3px solid #00FF99;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s infinite alternate;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 0 80px rgba(255,255,255,0.7); }
    100% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 100px rgba(0,255,153,0.9); }
}
header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.7), transparent);
    animation: lensFlare 2s infinite alternate;
}
@keyframes lensFlare {
    0% { transform: translate(0, 0); opacity: 0.5; }
    100% { transform: translate(30%, 30%); opacity: 0.7; }
}
h1 {
    font-family: 'Impact', sans-serif;
    font-size: 3em;
    color: #A100A1;
    text-shadow: 0 5px 10px #00FF99, 0 0 30px #A100A1;
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
h2 {
    font-size: 2em;
    color: #005566;
    margin-top: 25px;
    text-transform: uppercase;
    background: linear-gradient(to right, #00FF99, #FF66CC);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    animation: slideIn 1s ease-out;
    font-family: 'Comic Sans MS', cursive;
}
@keyframes slideIn {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
a {
    color: #A100A1;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, text-shadow 0.3s;
}
a:hover {
    color: #00FF99;
    text-shadow: 0 0 15px #00FF99;
    transform: scale(1.2) rotate(5deg);
}
nav {
    margin: 20px 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(161,214,255,0.7));
    padding: 10px;
    border-radius: 12px;
    border: 3px solid #00FF99;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3), inset 0 0 30px rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 10;
}
nav a {
    background: linear-gradient(#A100A1, #690069);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 1em;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s, background 0.3s;
    pointer-events: auto;
}
nav a:hover {
    background: linear-gradient(#00FF99, #00CC77);
    color: #333;
    transform: scale(1.1);
}
nav a.current {
    background: linear-gradient(#00FF99, #00CC77);
    color: #333;
    animation: neonGlow 1s infinite alternate;
}
@keyframes neonGlow {
    0% { box-shadow: 0 0 8px #A100A1; }
    100% { box-shadow: 0 0 12px #00FF99; }
}
.content {
    margin: 20px 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(161,214,255,0.7));
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 0 40px rgba(255,255,255,0.6);
}
.blog-post {
    background: linear-gradient(to right, #A1D6FF, #FFFFFF);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #A100A1;
    margin-bottom: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    animation: slideIn 1s ease-out;
}
.blog-post h3 {
    font-family: 'Comic Sans MS', cursive;
    color: #005566;
    margin: 0 0 10px;
    font-size: 1.5em;
    text-shadow: 0 2px 4px #00FF99;
}
.contact-info {
    background: linear-gradient(to right, #A1D6FF, #FFFFFF);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #A100A1;
    margin-bottom: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    animation: slideIn 1s ease-out;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
li::before {
    content: "🌟 ";
    color: #00FF99;
    animation: spin 1.2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
footer {
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(161,214,255,0.7));
    border-radius: 12px;
    text-align: center;
    font-size: 1em;
    color: #333;
    border: 3px solid #A100A1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.webring {
    background: linear-gradient(to bottom, #00A1D6, #A1D6FF);
    padding: 15px;
    border: 3px solid #00FF99;
    border-radius: 12px;
    margin: 10px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 0 50px rgba(255,255,255,0.5);
}
.webring a {
    margin: 0 15px;
    background: #A100A1;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.webring a:hover {
    background: #00FF99;
    color: #333;
    transform: rotate(10deg) scale(1.2);
}
.button-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    gap: 8px;
    margin-top: 10px;
}
.button-collection img {
    width: 88px;
    height: 31px;
    border: 2px solid #00FF99;
    border-radius: 5px;
    filter: drop-shadow(0 0 8px #A100A1);
    transition: transform 0.3s;
}
.button-collection img:hover {
    transform: scale(1.2) rotate(5deg) translateY(-5px);
    animation: wobble 0.5s infinite;
}
@keyframes wobble {
    0% { transform: scale(1.2) rotate(5deg) translateY(-5px); }
    50% { transform: scale(1.2) rotate(-5deg) translateY(-5px); }
    100% { transform: scale(1.2) rotate(5deg) translateY(-5px); }
}
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}
.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateZ(-2px) scale(3);
    background: url('https://via.placeholder.com/1920x1080/00A1D6/FF66CC?text=Aero+Gloss') center/cover;
    opacity: 0.3;
}