* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff3333;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.subtitle {
    font-size: 1rem;
    color: #ccc;
    font-weight: 300;
}

main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Fire Button Wrapper */
.fire-button-wrapper {
    position: relative;
    margin-bottom: 10px;
}

#fireCanvas {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
}

/* Link Buttons */
.link-button {
    appearance: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.disabled-button {
    opacity: 1;
    cursor: not-allowed;
    color: #fff;
    -webkit-text-fill-color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.disabled-button:hover,
.disabled-button:active {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 51, 51, 0.5);
    transform: translateY(-1px);
}

.link-button:active {
    transform: translateY(0);
}

.action-button {
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    border: 2px solid rgba(255, 102, 102, 0.6);
    font-weight: 600;
    box-shadow: 
        0 4px 15px rgba(255, 51, 51, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.action-button:hover {
    background: linear-gradient(135deg, #d40000 0%, #ff4444 100%);
    border-color: rgba(255, 102, 102, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 51, 51, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.button-icon {
    font-size: 1.5rem;
}

.button-text {
    flex: 1;
}

/* Contact Section */
.contact-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 51, 51, 0.4);
    color: #fff;
}

.contact-icon {
    font-size: 1.3rem;
}

.contact-text {
    font-weight: 400;
}

/* Footer */
footer {
    margin-top: 50px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.6rem;
    }

    .logo {
        font-size: 60px;
    }

    .link-button {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .button-icon {
        font-size: 1.3rem;
    }

    #fireCanvas {
        top: -70px;
    }
}
