.norse-name-generator {
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #c9a84c;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.name-display {
    background: #0f0f1a;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #c9a84c;
}

.generated-name {
    color: #ffd700;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    word-break: break-word;
}

.generate-norse-btn {
    background: #c9a84c;
    color: #1a1a2e;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    margin: 0 10px;
}

.generate-norse-btn:hover {
    background: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.copy-name-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.copy-name-btn:hover {
    background: #34495e;
}

.copy-message {
    margin-top: 10px;
    font-size: 14px;
    color: #ffd700;
    min-height: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.norse-name-generator {
    animation: fadeIn 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .norse-name-generator {
        margin: 10px;
        padding: 15px;
    }
    
    .generated-name {
        font-size: 22px;
    }
    
    .generate-norse-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}