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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-out;
}

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

.title-he {
    font-size: 4rem;
    font-weight: 300;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.title-en {
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-style: italic;
}

.description {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #d0d0d0;
}

.description p {
    margin-bottom: 1.5rem;
}

.description strong {
    color: #667eea;
    font-weight: 600;
}

.description ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding: 0;
}

.description li {
    margin-bottom: 1rem;
    position: relative;
    padding-right: 1.5rem;
}

.description li::before {
    content: "▪";
    position: absolute;
    right: 0;
    color: #667eea;
    font-size: 1.2rem;
}

.highlight {
    color: #e8e8e8;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-right: 3px solid #667eea;
    border-radius: 5px;
    margin: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }

    .title-he {
        font-size: 2.5rem;
    }

    .title-en {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .description ul {
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .title-he {
        font-size: 2rem;
    }

    .content {
        padding: 1.5rem 1rem;
    }
}
