:root {
    --primary-color: #ff6b6b;
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --card-background: rgba(255, 255, 255, 0.1);
    --border-radius: 12px;
    --spacing: 1rem;
}

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

html {
    cursor: none;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: "Doto", sans-serif;
    line-height: 1.6;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing);
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    padding-top: 100px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-image {
    width: 256px;
    height: 256px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.info-section {
    padding: 2rem 0;
    position: relative;
    z-index: 3;
}

.info-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff4444;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
}

.info-card h3 {
    color: #ff4444;
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warning-message {
    background: rgba(255, 68, 68, 0.1);
    border-left: 4px solid #ff4444;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.warning-message p {
    color: #ff8888;
    font-size: 16px;
    line-height: 1.5;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.info-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-item:active {
    transform: translateY(0);
    background: rgba(255, 68, 68, 0.1);
}

.copy-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
}

.info-item:hover .copy-indicator {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.info-item.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.info-item.critical:hover {
    background: rgba(255, 68, 68, 0.2);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2);
}

.info-item .label {
    display: block;
    color: #ff8888;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item .value {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.info-item .description {
    display: block;
    color: #aaa;
    font-size: 12px;
    line-height: 1.4;
}

.privacy-warning {
    background: rgba(255, 68, 68, 0.1);
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.privacy-warning p {
    color: #ff4444;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.privacy-warning ul {
    list-style-type: none;
    padding-left: 0;
}

.privacy-warning li {
    color: #ff8888;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.privacy-warning li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
}

/* Add a dramatic entrance animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: fadeIn 0.5s ease-out, pulse 2s infinite;
}

.quote-card {
    background: var(--card-background);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    color: var(--primary-color);
    font-weight: 500;
}

.error {
    color: #ff6b6b;
    text-align: center;
}

#custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    background-image: url('/assets/fire.gif');
    background-size: cover;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.fire-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: url('/assets/fire.gif') repeat-x;
    background-size: 64px 64px;
    pointer-events: none;
    animation: slow-fire-to-right 2s linear infinite;
    z-index: 1;
}

.fire-bottom-2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 128px;
    background: url('/assets/fire.gif') repeat-x;
    filter: brightness(0.3) opacity(0.8);
    background-size: 128px 128px;
    animation: slow-fire-to-left 2s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes slow-fire-to-left {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -128px 0;
    }
}

@keyframes slow-fire-to-right {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 64px 0;
    }
}

@media (max-width: 768px) {
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-card, .info-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .info-grid {
        gap: 0.5rem;
    }
}