:root {
    --bg-color: #000000;
    --text-color: #e0e0e0;
    --accent-color: #ffffff;

    /* Pride Colors */
    --c-red: #E84C3D;
    --c-orange: #E67E22;
    --c-yellow: #F1C40F;
    --c-green: #2ECC71;
    --c-blue: #3498DB;
    --c-purple: #9B59B6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* "Normalna" czcionka */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* --- Tribute Visuals --- */
.tribute-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* OLED Vignette: Ensures corners are deep black and focuses attention */
.tribute-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, black 120%);
    pointer-events: none;
    z-index: 2;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.debug-stats {
    position: fixed;
    top: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', monospace;
    font-size: 12px;
    pointer-events: none;
    z-index: 100;
}

/* Custom Cursor */
body {
    cursor: none;
    /* Ukryj domyślny kursor */
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: white;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

@media (hover: none) and (pointer: coarse) {

    /* Hide custom cursor on touch devices */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    /* Restoration of default interaction if needed, but we use canvas */
}

/* Remove mobile tap highlight */
* {
    -webkit-tap-highlight-color: transparent;
}

/* --- Floating Contact (OLED Protection) --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    z-index: 10;
    opacity: 0;
    transition: opacity 1s ease, left 0.5s ease, right 0.5s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Subtelny wygląd */
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 10px;
}

.floating-contact:hover {
    color: rgba(255, 255, 255, 0.9);
}

.floating-contact.visible {
    opacity: 0.7;
    pointer-events: auto;
}

/* Corner positions */
.floating-contact.corner-right {
    right: 30px;
    left: auto;
}

.floating-contact.corner-left {
    left: 30px;
    right: auto;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-text {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    display: none;
    /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-contact.expanded .email-text {
    display: block;
    opacity: 1;
}

@media (max-width: 600px) {
    .prism {
        height: 150px;
        transform: rotate(45deg) scale(0.8);
    }
}