* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.top-banner {
    width: 100%;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: #0a0a0a;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.container {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.3rem;
    margin-bottom: 1rem;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch-skew 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00de;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    20% { clip: rect(70px, 9999px, 71px, 0); }
    40% { clip: rect(12px, 9999px, 90px, 0); }
    60% { clip: rect(85px, 9999px, 40px, 0); }
    80% { clip: rect(50px, 9999px, 20px, 0); }
    100% { clip: rect(60px, 9999px, 80px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(25px, 9999px, 33px, 0); }
    40% { clip: rect(95px, 9999px, 15px, 0); }
    60% { clip: rect(5px, 9999px, 80px, 0); }
    80% { clip: rect(75px, 9999px, 50px, 0); }
    100% { clip: rect(30px, 9999px, 65px, 0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(-2deg); }
    20% { transform: skew(2deg); }
    30% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

/* Sense Sections */
.sense-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
}

.sense-content {
    text-align: center;
    max-width: 1200px;
    z-index: 10;
}

.sense-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.sense-section h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
}

.sense-section p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Vision Section */
.vision {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.color-orbs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.orb {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite, colorShift 5s linear infinite;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
}

.orb-1 {
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #ee5a6f);
    animation-delay: 0s;
}

.orb-2 {
    background: radial-gradient(circle at 30% 30%, #4ecdc4, #44a08d);
    animation-delay: 0.4s;
}

.orb-3 {
    background: radial-gradient(circle at 30% 30%, #ffe66d, #ffd93d);
    animation-delay: 0.8s;
}

.orb-4 {
    background: radial-gradient(circle at 30% 30%, #a8e6cf, #56ab91);
    animation-delay: 1.2s;
}

.orb-5 {
    background: radial-gradient(circle at 30% 30%, #c56cf0, #9b59b6);
    animation-delay: 1.6s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes colorShift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Hearing Section */
.hearing {
    background: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
}

.sound-waves {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.wave {
    width: 10px;
    background: linear-gradient(180deg, #00d2ff, #3a7bd5);
    border-radius: 10px;
    animation: wave-animation 1s ease-in-out infinite;
}

.wave-1 { height: 60px; animation-delay: 0s; }
.wave-2 { height: 100px; animation-delay: 0.1s; }
.wave-3 { height: 140px; animation-delay: 0.2s; }
.wave-4 { height: 100px; animation-delay: 0.3s; }

@keyframes wave-animation {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Touch Section */
.touch {
    background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
}

.texture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.texture-box {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.texture-box:hover {
    transform: scale(1.1) rotate(5deg);
}

.texture-1 {
    background: repeating-linear-gradient(45deg, #ff6b6b, #ff6b6b 10px, #ee5a6f 10px, #ee5a6f 20px);
    animation: texture-move 3s linear infinite;
}

.texture-2 {
    background: radial-gradient(circle, #4ecdc4 20%, transparent 20%),
                radial-gradient(circle, #4ecdc4 20%, transparent 20%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

.texture-3 {
    background: linear-gradient(135deg, #667eea 25%, transparent 25%),
                linear-gradient(225deg, #667eea 25%, transparent 25%),
                linear-gradient(45deg, #667eea 25%, transparent 25%),
                linear-gradient(315deg, #667eea 25%, #764ba2 25%);
    background-size: 40px 40px;
    animation: texture-rotate 5s linear infinite;
}

.texture-4 {
    background: repeating-conic-gradient(from 0deg, #f093fb 0deg 30deg, #f5576c 30deg 60deg);
}

@keyframes texture-move {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

@keyframes texture-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Taste Section */
.taste {
    background: linear-gradient(135deg, #f2709c 0%, #ff9472 100%);
}

.flavor-bubbles {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bubble {
    padding: 2rem 3rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bubble-float 4s ease-in-out infinite;
}

.bubble:hover {
    transform: scale(1.2) rotate(10deg);
}

.sweet {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    animation-delay: 0s;
}

.salty {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    animation-delay: 0.5s;
}

.sour {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    animation-delay: 1s;
}

.bitter {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    animation-delay: 1.5s;
}

.umami {
    background: linear-gradient(135deg, #55efc4, #00b894);
    animation-delay: 2s;
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

/* Smell Section */
.smell {
    background: linear-gradient(135deg, #48c6ef 0%, #6f86d6 100%);
}

.scent-waves {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scent {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: scent-expand 3s ease-out infinite;
}

.scent-1 { animation-delay: 0s; }
.scent-2 { animation-delay: 1s; }
.scent-3 { animation-delay: 2s; }

@keyframes scent-expand {
    0% {
        transform: scale(0.3);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Integration Section */
.integration-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 4rem 2rem;
}

.integration-content {
    text-align: center;
    max-width: 1200px;
}

.pulse-text {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
                     0 0 40px rgba(102, 126, 234, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.8),
                     0 0 80px rgba(102, 126, 234, 0.8);
    }
}

.integration-content > p {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.sensory-circle {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    animation: rotate 20s linear infinite;
}

.circle-element {
    position: absolute;
    width: 80px;
    height: 80px;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: element-pulse 2s ease-in-out infinite;
}

.ce-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ce-2 {
    top: 25%;
    right: 0;
    animation-delay: 0.4s;
}

.ce-3 {
    bottom: 25%;
    right: 10%;
    animation-delay: 0.8s;
}

.ce-4 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1.2s;
}

.ce-5 {
    top: 25%;
    left: 0;
    animation-delay: 1.6s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes element-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .sense-section h2 {
        font-size: 2.5rem;
    }
    
    .sense-icon {
        font-size: 4rem;
    }
    
    .orb {
        width: 100px;
        height: 100px;
    }
    
    .texture-box {
        width: 120px;
        height: 120px;
    }
    
    .sensory-circle {
        width: 300px;
        height: 300px;
    }
    
    .circle-element {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}
