body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000;
    font-family: 'Courier New', monospace;
    cursor: none;
    overflow: hidden;
    color: #fff;
}

#particleCanvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s ease-out forwards;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    opacity: 0.8;
    font-weight: normal;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.eye-container {
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    opacity: 1 !important;
    transform: none !important;
}

.info-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.discord-status, .music-player {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    min-width: 200px;
    max-width: 300px;
    width: calc(50% - 0.5rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    opacity: 1;
    transform: none;
}

.discord-status:hover, .music-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.discord-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.music-player {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.music-info {
    margin-bottom: 1rem;
}

.music-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.progress-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.progress {
    height: 100%;
    background-color: #1DB954;
    border-radius: 2px;
    width: 0;
}

.music-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#play {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

#volume {
    width: 100px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    border-radius: 10px;
}

#volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #1DB954;
    border-radius: 50%;
    cursor: pointer;
}

#volume::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #1DB954;
    border-radius: 50%;
    cursor: pointer;
}

.cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out, width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor.active {
    width: 15px;
    height: 15px;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: stretch;
    }

    .discord-status, .music-player {
        width: 100%;
        max-width: none;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

.animate-element {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-text {
    display: inline-block;
    transition: transform 0.05s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.parallax-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loadingCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loading-text {
    color: #fff;
    font-size: 1.5rem;
    z-index: 10000;
}

.fade-out {
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

.fade-in {
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Add this for component transitions */
.component-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.component-transition.visible {
    opacity: 1;
    transform: translateY(0);
}
