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

body {
    font-family: 'Arial', sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(to bottom, #300, #000);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 30, 0, 0.15) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: 0;
    opacity: 0.8; /* Fixed opacity instead of animation for better performance */
}

/* Removed hellPulse animation for better performance */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid rgba(255, 51, 0, 0.3);
    margin-bottom: 40px;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: #ff3300;
    margin-bottom: 10px;
    text-shadow: 
        0 0 10px #ff3300,
        0 0 20px #ff3300,
        0 0 30px #ff3300;
    /* Simplified animation with fewer properties for better performance */
    animation: hellGlow 3s ease-in-out infinite alternate;
    letter-spacing: 3px;
    text-transform: uppercase;
    will-change: text-shadow; /* Optimize for animation */
}

@keyframes hellGlow {
    from { 
        text-shadow: 
            0 0 10px #ff3300,
            0 0 20px #ff3300;
    }
    to { 
        text-shadow: 
            0 0 15px #ff0000,
            0 0 25px #ff0000,
            0 0 35px #ff0000;
    }
}

.subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.discord-btn {
    display: inline-block;
    background: linear-gradient(45deg, #aa0000, #660000);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(255, 30, 0, 0.4),
        0 0 20px rgba(255, 30, 0, 0.3);
    border: 1px solid #ff3300;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 0, 0.3), transparent);
    transition: left 0.5s;
    z-index: 0;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 30, 0, 0.6),
        0 0 30px rgba(255, 30, 0, 0.4);
    background: linear-gradient(45deg, #cc0000, #880000);
}

.discord-btn:hover::before {
    left: 100%;
}

.discord-btn i {
    margin-right: 8px;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 200, 0, 0.7);
}

.method-dropdown {
    margin: 40px 0;
    text-align: center;
}

.dropdown-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff3300;
    margin-bottom: 15px;
    text-shadow: 
        0 0 10px #ff3300,
        0 0 20px #ff3300;
    animation: hellGlow 2s ease-in-out infinite alternate;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dropdown-select {
    background: rgba(40, 10, 0, 0.8);
    border: 2px solid #ff3300;
    border-radius: 10px;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(255, 51, 0, 0.3),
        0 0 20px rgba(255, 51, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.dropdown-select::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 100, 0, 0.2), transparent);
    animation: fireGlow 3s infinite alternate;
    z-index: -1;
}

.dropdown-select:hover {
    border-color: #ff5500;
    box-shadow: 
        0 6px 20px rgba(255, 51, 0, 0.5),
        0 0 30px rgba(255, 51, 0, 0.3);
    transform: translateY(-2px);
}

.dropdown-select:focus {
    outline: none;
    border-color: #ff3300;
    box-shadow: 
        0 0 0 3px rgba(255, 51, 0, 0.3),
        0 6px 20px rgba(255, 51, 0, 0.5);
}

.dropdown-select option {
    background: #000000;
    color: #ffffff;
    padding: 10px;
    border: none;
    font-weight: bold;
}

.dropdown-select option:hover {
    background: rgba(255, 0, 0, 0.1);
}

.method-instructions {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    background: rgba(40, 10, 0, 0.8);
    border: 2px solid #ff3300;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(255, 51, 0, 0.3),
        0 0 30px rgba(255, 51, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.method-instructions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 50, 0, 0.1), transparent 70%);
    animation: lavaFlow 15s infinite linear;
    z-index: -1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.instructions-content {
    color: #ffffff;
    line-height: 1.6;
    font-size: 0.95rem;
}

.instructions-content h1,
.instructions-content h2,
.instructions-content h3 {
    color: #ff3300;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 50, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructions-content h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
}

.instructions-content h2 {
    font-size: 1.4rem;
    margin-top: 20px;
}

.instructions-content h3 {
    font-size: 1.2rem;
    margin-top: 15px;
}

.instructions-content p {
    margin-bottom: 15px;
    color: #cccccc;
}

.instructions-content strong {
    color: #ff5500;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 85, 0, 0.5);
}

.instructions-content code {
    background: rgba(255, 51, 0, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    color: #ff5500;
    font-family: 'Courier New', monospace;
    border-left: 2px solid #ff3300;
}

.instructions-content pre {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff0000;
    margin: 15px 0;
    overflow-x: auto;
    white-space: pre-wrap;
    color: #ffffff;
}

.instructions-content blockquote {
    border-left: 4px solid #ff0000;
    padding-left: 15px;
    margin: 15px 0;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 0 8px 8px 0;
}

.instructions-content ul,
.instructions-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.instructions-content li {
    margin-bottom: 8px;
    color: #cccccc;
}

.instructions-content a {
    color: #ff6666;
    text-decoration: none;
    border-bottom: 1px solid #ff6666;
    transition: all 0.3s ease;
}

.instructions-content a:hover {
    color: #ff0000;
    border-bottom-color: #ff0000;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.copy-section {
    position: relative;
    margin: 15px 0;
}

.copy-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.copy-btn:hover {
    background: linear-gradient(45deg, #ff3333, #ff0000);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

.copy-btn i {
    font-size: 0.8rem;
}

.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    font-size: 0.9rem;
}

.copy-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.card {
    background: rgba(40, 10, 10, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    /* Removed backdrop-filter for better performance */
    border: 1px solid rgba(255, 30, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 30, 0, 0.3);
    position: relative;
    /* Add will-change for better performance */
    will-change: transform, box-shadow;
}

/* Simplified pseudo-element with less intensive animation */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 50, 0, 0.1), transparent 70%);
    /* Removed animation for better performance */
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

/* Removed lavaFlow animation for better performance */

.card:hover::before {
    opacity: 0.8;
}

/* Removed card::after for better performance */

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 30, 0, 0.4);
    border-color: rgba(255, 50, 0, 0.6);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(to right, rgba(50, 10, 0, 0.9), rgba(80, 20, 0, 0.9));
    border-bottom: 1px solid rgba(255, 50, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 100, 0, 0.2), transparent);
    animation: fireGlow 3s infinite alternate;
    z-index: 0;
}

@keyframes fireGlow {
    0% { opacity: 0.3; transform: translateX(-100%); }
    100% { opacity: 0.7; transform: translateX(100%); }
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 50, 0, 0.8);
    position: relative;
    z-index: 1;
}

.card-header i {
    font-size: 1.5rem;
    color: #ff5000;
    text-shadow: 0 0 10px rgba(255, 50, 0, 0.8);
    position: relative;
    z-index: 1;
}

.card-body {
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.description {
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    will-change: transform, box-shadow;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 0, 0.3), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.action-btn:hover::before {
    left: 100%;
}

/* Removed ::after element with animation for better performance */

/* Removed burningEmber animation for better performance */

.action-btn.primary {
    background: linear-gradient(135deg, #ff3300, #aa0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 51, 0, 0.4);
}

.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 0, 0.6), 0 0 10px rgba(255, 150, 0, 0.4);
    background: linear-gradient(135deg, #ff4400, #cc0000);
}

.action-btn.secondary {
    background: linear-gradient(135deg, #aa0000, #660000);
    color: white;
    box-shadow: 0 4px 15px rgba(170, 0, 0, 0.4);
}

.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 0, 0, 0.6), 0 0 10px rgba(255, 100, 0, 0.4);
    background: linear-gradient(135deg, #cc0000, #880000);
}

.action-btn.tertiary {
    background: linear-gradient(45deg, #660000, #330000);
}

.tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 30, 0, 0.5);
    background: linear-gradient(45deg, #880000, #440000);
}

.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 51, 0, 0.3);
    color: #aaa;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 5px rgba(255, 30, 0, 0.3);
    background: linear-gradient(to top, rgba(40, 10, 0, 0.6), transparent);
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #ff6600;
    border-radius: 50%;
    animation: float 7s linear infinite; /* Slowed down animation */
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.5); /* Simplified shadow */
    will-change: transform, opacity; /* Optimize for animation */
}

.star {
    position: absolute;
    background-color: #ff3300;
    border-radius: 50%;
    animation: ember 4s ease-in-out infinite alternate; /* Slowed down animation */
    will-change: opacity, box-shadow; /* Optimize for animation */
}

@keyframes ember {
    0% {
        opacity: 0.2;
        box-shadow: 0 0 2px rgba(255, 51, 0, 0.1);
    }
    100% {
        opacity: 0.6; /* Reduced maximum opacity */
        box-shadow: 0 0 5px rgba(255, 51, 0, 0.4); /* Simplified shadow */
    }
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 51, 0, 0), #ff3300 50%, rgba(255, 153, 0, 0));
    animation: lavaStream 6s linear infinite; /* Slowed down animation */
    opacity: 0;
    will-change: transform, width, opacity; /* Optimize for animation */
}

@keyframes lavaStream {
    0% {
        transform: translateX(-100px) translateY(100px) rotate(45deg);
        width: 0;
        opacity: 0;
    }
    10% {
        width: 100px;
        opacity: 0.8; /* Reduced opacity */
    }
    20%, 100% {
        transform: translateX(100px) translateY(-100px) rotate(45deg);
        width: 0;
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px);
        opacity: 0.5; /* Reduced maximum opacity */
    }
}

.ripple {
    position: absolute;
    background: rgba(255, 100, 0, 0.3); /* Reduced opacity */
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.8s linear; /* Slowed down animation */
    pointer-events: none;
    box-shadow: 0 0 20px rgba(255, 50, 0, 0.6), 0 0 40px rgba(255, 50, 0, 0.3);
    will-change: transform, opacity; /* Optimize for animation */
}

@keyframes ripple {
    to {
        transform: scale(3); /* Reduced scale for better performance */
        opacity: 0;
    }
}

/* Media Queries - Optimized for performance */
@media (max-width: 1200px) {
    .dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reduce animations on medium screens */
    .card::before {
        display: none; /* Remove animated background */
    }
    
    .particle, .shooting-star {
        display: none; /* Hide some particle effects */
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        animation: none; /* Remove animation on small screens */
    }
    
    .dashboard {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 15px;
    }
    
    .card {
        padding: 20px;
        transform: none !important; /* Prevent transform animations */
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }
    
    /* Disable most animations on mobile for better performance */
    .star {
        display: none;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .action-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        transform: none !important; /* Prevent hover animations */
    }
}
