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

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    background: #000000;
    overflow-x: hidden;
}

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

.image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(108, 212, 255, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 60px rgba(108, 212, 255, 0.5));
}

.title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    color: #f9f9f9;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .image-container {
        max-width: 90vw;
    }

    .title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}

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